:root {
  --ink: #08111d;
  --ink-soft: #111c2b;
  --paper: #ffffff;
  --paper-soft: #f5f7fb;
  --text: #172033;
  --muted: #5b6475;
  --line: rgba(8, 17, 29, 0.14);
  --red: #d12638;
  --red-dark: #8d1725;
  --pink: #ed2f82;
  --green: #22c96b;
  --blue: #1667dd;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(4, 11, 22, 0.16);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.plan-container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.plan-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 9, 18, 0.96);
  color: #fff;
  backdrop-filter: blur(16px);
}

.plan-topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.plan-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.plan-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.plan-brand strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.05;
}

.plan-brand span {
  display: block;
  margin-top: 4px;
  color: #aeb8ca;
  font-size: 0.82rem;
}

.plan-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-nav a,
.plan-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.plan-nav a:hover,
.plan-button:hover {
  transform: translateY(-2px);
}

.plan-nav .is-primary,
.plan-button.is-primary {
  border-color: var(--green);
  background: var(--green);
  color: #05130b;
}

.plan-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 78px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink);
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
}

.plan-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 8, 16, 0.7);
}

.plan-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 48%;
  background: rgba(3, 8, 16, 0.35);
}

.hero-flora {
  position: absolute;
  top: 0;
  right: -120px;
  z-index: -1;
  width: min(44vw, 600px);
  opacity: 0.58;
  pointer-events: none;
}

.plan-hero-content {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 70px;
}

.plan-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #dce5f5;
  font-weight: 800;
}

.plan-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ff7eb7;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-hero h1 {
  max-width: 820px;
  margin: 16px 0 18px;
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 4.3rem;
  line-height: 1.02;
  font-weight: 700;
}

.plan-lead {
  max-width: 730px;
  margin: 0;
  color: #e2e8f2;
  font-size: 1.22rem;
  line-height: 1.68;
}

.plan-hero-bottom {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
}

.plan-price strong {
  font-size: 2.5rem;
}

.plan-price span {
  color: #cbd5e5;
  font-weight: 700;
}

.photo-credit {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.snapshot-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.snapshot-item {
  min-height: 152px;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}

.snapshot-item:last-child {
  border-right: 0;
}

.snapshot-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.snapshot-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  font-weight: 700;
}

.plan-section {
  position: relative;
  padding: 94px 0;
  overflow: hidden;
}

.plan-section.is-soft {
  background: var(--paper-soft);
}

.plan-section.is-dark {
  background: var(--ink);
  color: #fff;
}

.plan-section.is-red {
  background: var(--red-dark);
  color: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 12px 0 16px;
  color: inherit;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.65rem;
  line-height: 1.12;
}

.section-heading p,
.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.is-dark .section-heading p,
.is-red .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-statement {
  padding-left: 25px;
  border-left: 5px solid var(--pink);
}

.intro-statement strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
  line-height: 1.25;
}

.intro-copy h2 {
  margin: 0 0 18px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.55rem;
  line-height: 1.16;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.58;
}

.deliverables i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 201, 107, 0.14);
  color: #0c9b4b;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step {
  min-height: 220px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: block;
  color: #ff7eb7;
  font-size: 1.4rem;
  font-weight: 900;
}

.process-step h3 {
  margin: 24px 0 12px;
  font-size: 1.14rem;
}

.process-step p {
  margin: 0;
  color: #bdc8d9;
  line-height: 1.62;
}

.example-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.example-photo {
  min-height: 520px;
}

.example-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(36px, calc((100vw - 1160px) / 2));
  background: #f3e7ec;
}

.example-copy h2 {
  margin: 12px 0 18px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1.15;
}

.example-copy p {
  margin: 0;
  color: #5a3846;
  line-height: 1.75;
}

.example-credit {
  align-self: flex-start;
  margin-top: 24px;
  color: #81314f;
  font-size: 0.78rem;
  font-weight: 800;
}

.scope-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.scope-grid h2 {
  margin: 12px 0 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.55rem;
  line-height: 1.14;
}

.scope-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.next-band {
  padding: 72px 0;
  background: #fff;
}

.next-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.next-inner h2 {
  margin: 0 0 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2rem;
}

.next-inner p {
  margin: 0;
  color: var(--muted);
}

.next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.next-actions .plan-button {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.next-actions .plan-button.is-primary {
  border-color: var(--green);
  background: var(--green);
  color: #05130b;
}

.plan-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #050912;
  color: #aeb8ca;
}

.plan-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.84rem;
}

.plan-footer a {
  color: #fff;
}

@media (max-width: 900px) {
  .plan-nav a:not(.is-primary) {
    display: none;
  }

  .plan-hero {
    min-height: 720px;
    background-position: var(--hero-position-mobile, var(--hero-position, center));
  }

  .plan-hero h1 {
    font-size: 3.2rem;
  }

  .snapshot-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .snapshot-item:nth-child(2),
  .process-step:nth-child(2) {
    border-right: 0;
  }

  .snapshot-item:nth-child(-n+2),
  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(-n+2) {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .intro-layout,
  .scope-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .example-layout {
    grid-template-columns: 1fr;
  }

  .example-photo,
  .example-layout {
    min-height: 0;
  }

  .example-photo {
    aspect-ratio: 16 / 10;
  }

  .example-copy {
    padding: 56px 36px;
  }
}

@media (max-width: 640px) {
  .plan-container {
    width: min(100% - 30px, 1160px);
  }

  .plan-topbar,
  .plan-topbar-inner {
    min-height: 68px;
  }

  .plan-brand img {
    width: 40px;
    height: 40px;
  }

  .plan-brand strong {
    font-size: 1.04rem;
  }

  .plan-brand span {
    font-size: 0.72rem;
  }

  .plan-nav .is-primary {
    min-height: 40px;
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .plan-nav .is-primary i {
    font-size: 1.1rem;
  }

  .plan-hero {
    min-height: 0;
    align-items: flex-start;
  }

  .plan-hero-content {
    width: min(100% - 30px, 1160px);
    padding: 56px 0 58px;
  }

  .hero-flora {
    right: -95px;
    width: 310px;
    opacity: 0.5;
  }

  .plan-hero h1 {
    font-size: 2.42rem;
    line-height: 1.06;
  }

  .plan-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .plan-hero-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .plan-hero-bottom .plan-button {
    width: 100%;
  }

  .photo-credit {
    display: none;
  }

  .snapshot-grid,
  .process-grid,
  .deliverables {
    grid-template-columns: 1fr;
  }

  .snapshot-item,
  .snapshot-item:nth-child(2),
  .process-step,
  .process-step:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step,
  .process-step:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .snapshot-item:last-child,
  .process-step:last-child {
    border-bottom: 0;
  }

  .plan-section {
    padding: 70px 0;
  }

  .section-heading h2,
  .intro-copy h2,
  .scope-grid h2 {
    font-size: 2rem;
  }

  .intro-statement strong {
    font-size: 1.62rem;
  }

  .example-photo {
    aspect-ratio: 4 / 3;
  }

  .example-copy {
    padding: 48px 22px;
  }

  .example-copy h2 {
    font-size: 1.9rem;
  }

  .next-inner,
  .plan-footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .next-actions .plan-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Branded channel heroes for Inbox plans. */
.plan-hero.has-channel-showcase {
  background-position: center;
}

.plan-hero.has-channel-showcase::before {
  background: linear-gradient(90deg, rgba(3, 8, 16, 0.96) 0 45%, rgba(3, 8, 16, 0.68) 68%, rgba(3, 8, 16, 0.42));
}

.has-channel-showcase .plan-hero-content {
  position: relative;
  z-index: 2;
}

.has-channel-showcase .plan-hero-content h1,
.has-channel-showcase .plan-lead {
  max-width: 660px;
}

.plan-channel-showcase {
  position: absolute;
  top: 50%;
  right: clamp(42px, 8vw, 150px);
  z-index: 1;
  width: clamp(300px, 31vw, 470px);
  aspect-ratio: 1;
  transform: translateY(-48%);
  pointer-events: none;
}

.plan-channel-showcase::before,
.plan-channel-showcase::after,
.channel-orbit {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(72, 223, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 54px rgba(72, 223, 255, 0.14), inset 0 0 45px rgba(255, 47, 145, 0.08);
}

.plan-channel-showcase::after {
  inset: 3%;
  border-color: rgba(255, 47, 145, 0.2);
}

.channel-orbit {
  inset: 26%;
  border-color: rgba(66, 233, 121, 0.4);
  animation: channel-orbit-pulse 4.5s ease-in-out infinite;
}

.channel-icon {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(4, 10, 25, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), 0 0 38px currentColor;
  backdrop-filter: blur(10px);
}

.channel-icon i {
  font-size: 5rem;
}

.channel-icon small {
  position: absolute;
  top: calc(100% + 10px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 800;
}

.channel-count-1 .channel-icon {
  inset: 18%;
  color: #42e979;
  background: radial-gradient(circle, rgba(16, 122, 58, 0.96), rgba(2, 36, 23, 0.98));
}

.channel-count-1 .channel-icon i {
  font-size: 9rem;
}

.channel-count-3 .channel-icon {
  width: 42%;
  aspect-ratio: 1;
}

.channel-count-3 .channel-whatsapp {
  left: 29%;
  top: 6%;
  color: #42e979;
}

.channel-count-3 .channel-instagram {
  left: 4%;
  bottom: 10%;
  color: #ff58b0;
}

.channel-count-3 .channel-messenger {
  right: 4%;
  bottom: 10%;
  color: #58b8ff;
}

@keyframes channel-orbit-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.04); }
}

@media (max-width: 980px) {
  .plan-channel-showcase {
    right: -60px;
    width: 390px;
    opacity: 0.5;
  }

  .plan-hero.has-channel-showcase::before {
    background: linear-gradient(90deg, rgba(3, 8, 16, 0.95), rgba(3, 8, 16, 0.75));
  }
}

@media (max-width: 640px) {
  .plan-channel-showcase {
    top: 34%;
    right: -110px;
    width: 330px;
    opacity: 0.32;
  }

  .channel-icon small {
    display: none;
  }

  .channel-icon i {
    font-size: 3.8rem;
  }

  .channel-count-1 .channel-icon i {
    font-size: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .channel-orbit {
    animation: none;
  }
}
