:root {
  --ink: #0c0d10;
  --ink-soft: #2a2c33;
  --muted: #6e6e73;
  --line: #e5e5ea;
  --paper: #ffffff;
  --soft: #f5f5f7;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);

  /* Brand vibrant palette */
  --indigo: #5e5ce6;
  --blue: #0a84ff;
  --cobalt: #1d3fff;
  --cyan: #32ade6;
  --teal: #30d5c8;
  --green: #1ed760;       /* Spotify lime */
  --green-deep: #0d4f2c;
  --amber: #ff9f0a;
  --orange: #ff6b35;
  --pink: #ff2d92;
  --magenta: #c2185b;
  --purple: #bf5af2;

  --grad-primary: linear-gradient(135deg, #5e5ce6 0%, #0a84ff 50%, #32ade6 100%);
  --grad-warm: linear-gradient(135deg, #ff9f0a 0%, #ff6b35 35%, #ff2d92 70%, #bf5af2 100%);
  --grad-aurora: linear-gradient(135deg, #5e5ce6 0%, #bf5af2 45%, #ff2d92 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p, blockquote { margin-top: 0; }

/* ----- HEADER ----- */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(20px, 5vw, 64px);
  background: #050510;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brand img {
  width: 280px;
  max-height: 90px;
  height: auto;
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 26px; font-size: 0.92rem; font-weight: 700; }
.site-nav a { text-decoration: none; color: rgba(255, 255, 255, 0.78); transition: color 0.18s ease; }
.site-nav a:hover { color: white; }
.nav-cta {
  color: var(--ink) !important;
  background: white;
  padding: 9px 18px;
  border-radius: 999px;
  transition: transform 0.18s ease, background 0.18s ease;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--green); color: var(--ink) !important; }
.currency-switcher {
  display: inline-flex;
  gap: 2px;
  background: rgba(12, 13, 16, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: clamp(20px, 2.4vw, 32px) auto clamp(28px, 3vw, 40px);
}
.currency-switcher button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.currency-switcher button:hover { color: var(--ink); }
.currency-switcher button.is-active {
  background: var(--ink);
  color: white;
  box-shadow: 0 6px 14px rgba(12, 13, 16, 0.18);
}
@media (max-width: 600px) {
  .currency-switcher button { padding: 6px 11px; font-size: 0.72rem; }
}
.menu-button {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.menu-button span { display: block; width: 20px; height: 2px; background: white; margin: 5px auto; }

/* ----- BUTTONS ----- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease, color 0.18s ease;
}
.button.primary {
  background: white;
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.18);
}
.button.primary:hover { transform: translateY(-2px); background: var(--green); }
.button.secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.24);
  backdrop-filter: blur(8px);
}
.button.secondary:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.button.full { width: 100%; }

/* ----- HERO ----- */
.hero-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(620px, 95vh, 980px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(40px, 6vw, 100px) clamp(20px, 6vw, 80px) clamp(120px, 14vw, 200px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    url('images/hero.jpg') center/cover no-repeat;
  background-color: white;
  color: var(--ink);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 520px at 12% 18%, rgba(10, 132, 255, 0.42), transparent 55%),
    radial-gradient(580px 480px at 88% 22%, rgba(48, 213, 200, 0.45), transparent 55%),
    radial-gradient(560px 460px at 80% 88%, rgba(30, 215, 96, 0.40), transparent 55%),
    radial-gradient(500px 420px at 14% 92%, rgba(255, 159, 10, 0.32), transparent 55%);
  animation: hero-drift 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}
@keyframes hero-drift {
  0%   { transform: translate3d(-2%, -2%, 0) scale(1); }
  50%  { transform: translate3d( 2%,  1%, 0) scale(1.04); }
  100% { transform: translate3d(-1%,  2%, 0) scale(1.02); }
}

.hero-copy { max-width: 1200px; position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  margin: 0 0 28px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-section h1 {
  color: var(--ink);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 30px;
  max-width: 1200px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.15rem, 1.85vw, 1.55rem);
  max-width: 760px;
  margin: 10px auto 0;
  line-height: 1.45;
}
.hero-tagline {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 500;
  max-width: 1200px;
  margin: 18px auto 0;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.hero-tagline strong {
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.hero-tagline .nowrap { white-space: nowrap; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; justify-content: center; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid rgba(12, 13, 16, 0.45);
  border-radius: 999px;
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--ink);
  border-radius: 999px;
  margin-left: -2px;
  animation: scroll-bob 1.6s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0.2; }
}

/* ----- MARQUEE ----- */
.marquee {
  background: #050510;
  color: white;
  padding: 36px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #050510, transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, #050510, transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.marquee-content i {
  color: var(--green);
  font-style: normal;
  font-size: 0.55em;
  position: relative;
  top: -0.12em;
}
.marquee-content span:nth-of-type(2n) i,
.marquee-content span:nth-of-type(2n+1) + i { color: var(--green); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- SCENES (full-bleed colour blocks) ----- */
.scene {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(620px, 95vh, 920px);
  padding: clamp(100px, 12vw, 160px) clamp(20px, 6vw, 80px);
  display: grid;
  align-content: center;
  color: white;
}
.scene-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.scene-num {
  font-size: clamp(7rem, 18vw, 17rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.82;
  margin: 0;
  white-space: nowrap;
  opacity: 0.94;
  font-feature-settings: "tnum";
}
.scene-num small {
  display: block;
  font-size: 0.085em;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1;
  margin-top: 24px;
  opacity: 0.78;
  text-transform: uppercase;
}
.scene-content h2 {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 760px;
}
.scene-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.5;
  opacity: 0.88;
}
.scene-howto {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding: 7px 13px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.scene-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.scene-tags li {
  padding: 11px 18px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}
.scene-cta {
  display: inline-flex;
  align-items: center;
  padding: 17px 30px;
  background: white;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.scene-cta:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28); }
.scene-cta-dark { background: var(--ink); color: var(--green); }
.scene-cta-dark:hover { background: #000; }

/* Scene 01 — Marketing — dark mesh, cool palette, photo whisper */
.scene-marketing {
  background:
    linear-gradient(rgba(5, 5, 16, 0.86), rgba(5, 5, 16, 0.94)),
    url('images/marketing.jpg') center/cover no-repeat;
  background-color: #050510;
}
.scene-marketing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 600px at 18% 25%, rgba(94, 92, 230, 0.55), transparent 60%),
    radial-gradient(560px 480px at 82% 75%, rgba(48, 213, 200, 0.36), transparent 65%),
    radial-gradient(560px 480px at 60% 35%, rgba(10, 132, 255, 0.40), transparent 60%);
  filter: blur(22px);
  z-index: -1;
  animation: hero-drift 26s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Spotlight variant — Apple-style: light bg, big black headline, gradient text accent */
.scene-spotlight {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 80vh, 820px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(80px, 10vw, 160px) clamp(20px, 6vw, 80px);
  color: var(--ink);
  background: white;
}
.scene-spotlight.scene-marketing {
  background: var(--soft);
}
.scene-spotlight.scene-sales {
  background: white;
}
.scene-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  animation: hero-drift 26s ease-in-out infinite alternate;
}
.scene-spotlight.scene-marketing::before {
  background:
    radial-gradient(560px 460px at 10% 84%, rgba(10, 132, 255, 0.40), transparent 55%),
    radial-gradient(540px 440px at 90% 16%, rgba(48, 213, 200, 0.45), transparent 55%);
  display: block;
}
.scene-spotlight.scene-sales::before {
  background:
    radial-gradient(560px 460px at 10% 18%, rgba(30, 215, 96, 0.40), transparent 55%),
    radial-gradient(540px 440px at 90% 82%, rgba(255, 159, 10, 0.42), transparent 55%);
  display: block;
}
.spotlight-inner {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.spotlight-line {
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
}


/* Scene 02 — Sales — dark mesh, warm palette, relay photo whisper, flipped */
.scene-sales {
  background:
    linear-gradient(rgba(5, 5, 16, 0.86), rgba(5, 5, 16, 0.94)),
    url('images/sales-relay.jpg') center/cover no-repeat;
  background-color: #050510;
}
.scene-sales::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 600px at 82% 25%, rgba(255, 45, 146, 0.55), transparent 60%),
    radial-gradient(560px 480px at 18% 75%, rgba(255, 159, 10, 0.36), transparent 65%),
    radial-gradient(560px 480px at 50% 45%, rgba(191, 90, 242, 0.36), transparent 60%);
  filter: blur(22px);
  z-index: -1;
  animation: hero-drift 28s ease-in-out infinite alternate;
  pointer-events: none;
}
.scene-sales .scene-inner { grid-template-columns: 1.4fr 0.85fr; }
.scene-sales .scene-num { order: 2; text-align: right; justify-self: end; }
.scene-sales .scene-content { order: 1; }

/* Scene 03 — Business (Spotify lime) — dark text on green */
.scene-business {
  background:
    radial-gradient(1100px 700px at 50% 0%, rgba(255,255,255,0.20), transparent 60%),
    linear-gradient(135deg, #0d4f2c 0%, #1ed760 60%, #5cf788 100%);
  color: var(--ink);
}
.scene-business .scene-inner { grid-template-columns: 1fr; text-align: center; }
.scene-business .scene-num {
  text-align: center;
  font-size: clamp(9rem, 24vw, 22rem);
  margin: 0 auto;
  opacity: 1;
}
.scene-business .scene-num small { color: var(--green-deep); }
.scene-business .scene-content { max-width: 1100px; margin: 24px auto 0; display: grid; justify-items: center; }
.scene-business .scene-content h2 { color: var(--ink); margin-left: auto; margin-right: auto; }
.scene-business .scene-sub { margin-left: auto; margin-right: auto; color: rgba(12, 13, 16, 0.78); }
.scene-business .scene-tags li {
  background: rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.16);
  color: var(--ink);
}

.scene-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 980px;
  width: 100%;
}
.scene-stats div {
  padding: 28px 22px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 22px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.scene-stats strong {
  display: block;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.scene-stats span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ----- ALWAYS-ON minimalist moment — dark for visual rhythm, vibrant mesh ----- */
.always-on {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(110px, 14vw, 180px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(rgba(5, 5, 16, 0.86), rgba(5, 5, 16, 0.94)),
    url('images/always-on.jpg') center/cover no-repeat;
  background-color: #050510;
  color: white;
  text-align: center;
  display: grid;
  align-content: center;
  min-height: clamp(520px, 75vh, 760px);
}
.always-on::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 520px at 18% 28%, rgba(10, 132, 255, 0.65), transparent 55%),
    radial-gradient(580px 480px at 82% 72%, rgba(48, 213, 200, 0.55), transparent 55%),
    radial-gradient(520px 440px at 50% 95%, rgba(30, 215, 96, 0.50), transparent 55%),
    radial-gradient(480px 400px at 92% 8%, rgba(255, 159, 10, 0.40), transparent 55%);
  z-index: -1;
  animation: hero-drift 24s ease-in-out infinite alternate;
  pointer-events: none;
}
.always-inner { max-width: 1200px; margin: 0 auto; }
.always-eyebrow {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.always-word {
  margin: 0;
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.always-sub {
  margin: clamp(20px, 2.4vw, 32px) auto 0;
  max-width: 1180px;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}
.always-sub strong {
  color: white;
  font-weight: 800;
}

/* ----- PROCESS STRIP ----- */
.process-strip {
  background: white;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.process-heading {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}
.process-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  margin-bottom: 22px;
}
.process-strip h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  font-weight: 800;
  color: var(--ink);
}
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process-grid li {
  padding: 32px 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.process-grid li:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 92, 230, 0.4);
  box-shadow: 0 24px 50px rgba(15, 18, 40, 0.10);
}
.process-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 200;
  color: #b8b8c0;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-feature-settings: "tnum";
}
.process-grid li:nth-child(1) .process-num { color: var(--indigo); }
.process-grid li:nth-child(2) .process-num { color: var(--pink); }
.process-grid li:nth-child(3) .process-num { color: var(--cobalt); }
.process-grid li:nth-child(4) .process-num { color: var(--orange); }
.process-grid li:nth-child(5) .process-num { color: var(--green-deep); }
.process-grid h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

/* ----- FOUNDER PULL-QUOTE ----- */
.founder-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 18% 20%, rgba(94, 92, 230, 0.30), transparent 60%),
    radial-gradient(900px 600px at 88% 90%, rgba(255, 45, 146, 0.20), transparent 60%),
    #050510;
  color: white;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 6vw, 80px);
}
.founder-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.founder-eyebrow {
  font-size: 0.78rem !important;
  letter-spacing: 0.32em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 36px !important;
  opacity: 0.7;
  white-space: normal;
}
.founder-block blockquote {
  margin: 0;
  font-size: clamp(2.4rem, 5.8vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 800;
  color: white;
  max-width: 1100px;
  margin: 0 auto;
}
.founder-attrib {
  margin-top: 36px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ----- CONTACT CTA BLOCK ----- */
/* ----- APPLE-STYLE PRODUCT CARDS ----- */
.apple-card {
  position: relative;
  isolation: isolate;
  padding: clamp(10px, 1.4vw, 18px) clamp(12px, 2vw, 28px);
  background: var(--soft);
  color: var(--ink);
}
.apple-card--light { background: var(--soft); }
.apple-card--dark  { background: var(--soft); }
.apple-card--dark {
  background: #050510;
  color: white;
}
.apple-card--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(640px 520px at 12% 18%, rgba(94, 92, 230, 0.40), transparent 55%),
    radial-gradient(620px 500px at 88% 82%, rgba(255, 45, 146, 0.32), transparent 55%);
  animation: hero-drift 28s ease-in-out infinite alternate;
}

.apple-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.6vw, 24px);
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  isolation: isolate;
  position: relative;
}

/* ----- TILES (Apple-style boxes) ----- */
.apple-card-tile {
  background: white;
  border-radius: clamp(20px, 2.4vw, 32px);
  box-shadow: 0 18px 50px rgba(12, 13, 16, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Copy tile — text content top-aligned to match right tile's top eyebrow */
.apple-card-tile--copy {
  padding: clamp(36px, 4vw, 56px) clamp(32px, 4vw, 64px) clamp(40px, 5vw, 80px);
  justify-content: flex-start;
}
.apple-card-tile--copy .apple-card-copy { max-width: 100%; }

/* Image tile — text on top, image fills the rest */
.apple-card-tile--image { padding: 0; }

.apple-tile-text {
  text-align: center;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 32px) clamp(6px, 0.8vw, 12px);
}
.apple-tile-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.apple-tile-headline {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0;
}

/* Visual area — fixed aspect for consistency across all tiles */
.apple-tile-visual {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.apple-tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Launch tile — vertical car shot. Cover the 4:3 visual area so no cream
   backdrop shows; bias position toward the lower half of the image so
   the car body + wheels stay prominent (empty ceiling crops out). */
.apple-card-tile--launch .apple-tile-visual {
  aspect-ratio: 4 / 3;
  background: #efe9df;
}
.apple-card-tile--launch .apple-tile-visual img {
  object-fit: cover;
  object-position: center 70%;
}

/* Lift tile — show the full real-estate post (house + marketing copy)
   without cropping. Match visual aspect to the image's natural ratio
   (1.19) so the post fills the area edge-to-edge without letterbox
   bars on the sides. */
.apple-card-tile--lift .apple-tile-visual {
  aspect-ratio: 6 / 5;
  overflow: hidden;
  background: #f5f0e8;
}
.apple-card-tile--lift .apple-tile-visual img {
  object-fit: cover;
  object-position: center;
  transform: none;
}
.apple-tile-share {
  background: white;
  padding: clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 32px) clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}

/* Scale tile — CRM dashboard. Image cream padding has been cropped out
   of the PNG, so the tile chrome can be pure white to match the other
   tiles (was #fafafb). */
.apple-card-tile--scale {
  background: white;
}
.apple-card-tile--scale .apple-tile-visual {
  aspect-ratio: 3 / 2;
  background: white;
  overflow: hidden;
}
.apple-card-tile--scale .apple-tile-visual img {
  object-fit: cover;
  object-position: center;
  transform: none;
}

/* Mobile: stack copy tile above image tile */
@media (max-width: 900px) {
  .apple-card-inner {
    grid-template-columns: 1fr;
  }
}

.apple-card-copy { max-width: 560px; }
.apple-card-eyebrow {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  margin: 0 0 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(12, 13, 16, 0.06);
  border: 1px solid rgba(12, 13, 16, 0.08);
}
.apple-card--dark .apple-card-eyebrow {
  color: white;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}
.apple-card-eyebrow-flag {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-aurora);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  vertical-align: middle;
  transform: translateY(-1px);
}
.apple-card-headline {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 22px;
}
.apple-card-subhead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 480px;
}
.apple-card--dark .apple-card-subhead { color: rgba(255, 255, 255, 0.78); }

.apple-card-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.apple-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease;
}
.apple-card-cta--primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.apple-card-cta--primary:hover {
  background: #000;
  color: var(--green);
  transform: translateY(-1px);
}
.apple-card-cta--ghost {
  background: transparent;
  color: var(--blue);
  font-weight: 700;
}
.apple-card-cta--ghost:hover { color: var(--ink); }
.apple-card--dark .apple-card-cta--ghost { color: var(--cyan); }
.apple-card--dark .apple-card-cta--ghost:hover { color: white; }

/* ----- ABSTRACT BROWSER MOCKUP ----- */
.apple-card-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.apple-mockup--browser {
  width: 100%;
  max-width: 720px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 60px 120px -20px rgba(12, 13, 16, 0.28),
    0 30px 60px -20px rgba(12, 13, 16, 0.18),
    0 8px 20px rgba(12, 13, 16, 0.08);
  border: 1px solid rgba(12, 13, 16, 0.05);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(.2, .7, .2, 1);
}
.apple-card:hover .apple-mockup--browser { transform: translateY(-8px); }

.apple-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: #f5f5f7;
  border-bottom: 1px solid rgba(12, 13, 16, 0.06);
}
.apple-mockup-dots {
  display: inline-flex;
  gap: 7px;
}
.apple-mockup-dots i {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d4d4d8;
}
.apple-mockup-dots i:nth-child(1) { background: #ff5f57; }
.apple-mockup-dots i:nth-child(2) { background: #febc2e; }
.apple-mockup-dots i:nth-child(3) { background: #28c840; }
.apple-mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6e6e73;
  background: white;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 13, 16, 0.05);
}
.apple-mockup-screen {
  position: relative;
  padding: clamp(48px, 6vw, 90px) clamp(40px, 5vw, 80px);
  background:
    radial-gradient(560px 440px at 12% 20%, rgba(94, 92, 230, 0.55), transparent 60%),
    radial-gradient(560px 460px at 90% 18%, rgba(48, 213, 200, 0.55), transparent 60%),
    radial-gradient(560px 440px at 80% 88%, rgba(30, 215, 96, 0.45), transparent 60%),
    radial-gradient(520px 420px at 12% 92%, rgba(255, 159, 10, 0.40), transparent 60%),
    white;
  text-align: left;
  min-height: clamp(280px, 30vw, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
/* Photo variant — vertical product image positioned right, text on left */
.apple-mockup--photo .apple-mockup-screen {
  background:
    url('images/launch-hero.png') right center / contain no-repeat,
    linear-gradient(135deg, #ece7df 0%, #d8d3cb 100%);
  padding-left: clamp(20px, 2.5vw, 40px);
  padding-right: clamp(140px, 18vw, 260px);
  min-height: clamp(300px, 32vw, 460px);
}
/* On mobile the screen is too narrow for side-by-side; stack image below */
@media (max-width: 640px) {
  .apple-mockup--photo .apple-mockup-screen {
    background:
      url('images/launch-hero.png') right bottom / auto 56% no-repeat,
      linear-gradient(180deg, #ece7df 0%, #d8d3cb 100%);
    padding-right: 38%;
    padding-bottom: clamp(36px, 6vw, 56px);
    min-height: clamp(360px, 88vw, 460px);
  }
}

/* Warm mesh variant for the Lift card */
.apple-mockup--warm .apple-mockup-screen {
  background:
    radial-gradient(540px 440px at 16% 80%, rgba(255, 159, 10, 0.55), transparent 60%),
    radial-gradient(540px 440px at 82% 20%, rgba(255, 45, 146, 0.55), transparent 60%),
    radial-gradient(540px 440px at 50% 50%, rgba(255, 107, 53, 0.40), transparent 60%),
    radial-gradient(520px 420px at 30% 30%, rgba(191, 90, 242, 0.32), transparent 60%),
    white;
}

/* Scale photo variant — CRM dashboard screenshot as bg */
.apple-mockup--scale-photo .apple-mockup-screen {
  background:
    url('images/scale-hero.png') center / cover no-repeat,
    #f5f5f7;
  min-height: clamp(320px, 36vw, 480px);
  padding: 0;
  display: block;
}

/* Lift photo variant — real estate marketing post as bg, social tiles BELOW */
.apple-mockup--lift-photo .apple-mockup-screen {
  background:
    url('images/lift-hero.png') center / cover no-repeat,
    #ffffff;
  min-height: clamp(320px, 36vw, 480px);
  padding: 0;
  display: block;
}

/* Share row — sits BELOW the browser mockup, not inside the screen */
.apple-stage-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(20px, 2vw, 28px);
  width: 100%;
}
.apple-stage-share-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.apple-stage-share .social-tiles {
  justify-content: center;
}
/* Cool mesh variant for the Scale card */
.apple-mockup--cool .apple-mockup-screen {
  background:
    radial-gradient(560px 440px at 18% 24%, rgba(94, 92, 230, 0.65), transparent 60%),
    radial-gradient(560px 460px at 86% 76%, rgba(48, 213, 200, 0.55), transparent 60%),
    radial-gradient(560px 440px at 60% 38%, rgba(10, 132, 255, 0.55), transparent 60%),
    radial-gradient(520px 420px at 30% 84%, rgba(30, 215, 96, 0.42), transparent 60%),
    white;
}
.apple-mockup-eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.apple-mockup-h {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
}
.apple-mockup-sub {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
  max-width: 32ch;
}
.apple-mockup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 4px;
}
.apple-mockup-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.005em;
}
.apple-mockup-link--primary {
  font-weight: 700;
}
.apple-mockup-link--primary span { display: inline-block; transform: translateY(-1px); margin-left: 2px; }
.apple-mockup-stat {
  display: inline-block;
  width: fit-content;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  margin: 0;
}
.apple-mockup-stat strong {
  font-weight: 800;
  color: var(--cobalt);
}
.apple-mockup-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.apple-mockup-channels li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ----- Social platform tiles (Lift mockup) ----- */
.social-tiles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-tile {
  width: clamp(48px, 5.4vw, 62px);
  height: clamp(48px, 5.4vw, 62px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.social-tile svg { width: 60%; height: 60%; color: white; }
.social-tile span { transform: translateY(-1px); }
.social-tile--linkedin { background: #0A66C2; font-family: Arial, Helvetica, sans-serif; }
.social-tile--linkedin span { font-style: normal; transform: translateY(-1px); }
.social-tile--facebook { background: #1877F2; font-family: Arial, Helvetica, sans-serif; font-size: 1.6rem; }
.social-tile--instagram {
  background:
    radial-gradient(circle at 28% 105%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-tile--tiktok { background: #000; }
.social-tile--youtube { background: #ff0000; }

/* ----- CRM panel (Scale mockup) ----- */
.apple-mockup--crm .apple-mockup-screen {
  background:
    radial-gradient(620px 480px at 18% 18%, rgba(94, 92, 230, 0.42), transparent 60%),
    radial-gradient(620px 500px at 86% 82%, rgba(48, 213, 200, 0.42), transparent 60%),
    radial-gradient(560px 460px at 60% 50%, rgba(10, 132, 255, 0.32), transparent 60%),
    white;
}
.crm-panel {
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(12, 13, 16, 0.08);
  border-radius: 14px;
  padding: 14px 14px 6px;
  box-shadow: 0 16px 36px rgba(12, 13, 16, 0.10);
  margin-top: 4px;
}
.crm-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid rgba(12, 13, 16, 0.06);
}
.crm-pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(30, 215, 96, 0.6);
  animation: crm-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes crm-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(30, 215, 96, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(30, 215, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 215, 96, 0); }
}
.crm-panel-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.crm-panel-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.crm-leads {
  list-style: none;
  padding: 0;
  margin: 0;
}
.crm-lead {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(12, 13, 16, 0.05);
}
.crm-lead:last-child { border-bottom: 0; }
.crm-lead.is-new { animation: crm-flash 2.2s ease-out 0.4s 1; }
@keyframes crm-flash {
  0%   { background: rgba(30, 215, 96, 0.18); }
  100% { background: transparent; }
}
.crm-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--avatar-color, var(--blue));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.crm-avatar[data-color="pink"]   { background: var(--pink); }
.crm-avatar[data-color="orange"] { background: var(--orange); }
.crm-avatar[data-color="teal"]   { background: var(--teal); }
.crm-avatar[data-color="indigo"] { background: var(--indigo); }
.crm-lead-name {
  display: flex;
  flex-direction: column;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  min-width: 0;
}
.crm-lead-name small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0;
}
.crm-status {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.crm-status--new  { background: rgba(30, 215, 96, 0.16); color: #0d4f2c; }
.crm-status--hot  { background: rgba(255, 45, 146, 0.14); color: #9c1758; }
.crm-status--warm { background: rgba(255, 159, 10, 0.16); color: #8a4a05; }
.crm-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  .crm-pulse { animation: none; box-shadow: 0 0 0 0 rgba(30,215,96,0); }
  .crm-lead.is-new { animation: none; }
}

@media (max-width: 900px) {
  .apple-card-inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 60px);
  }
  .apple-card-copy { max-width: 100%; }
  .apple-mockup--browser { max-width: 100%; }
}

/* ----- PACKAGES ----- */
.packages {
  position: relative;
  isolation: isolate;
  padding: clamp(60px, 8vw, 120px) clamp(12px, 2vw, 28px) clamp(80px, 9vw, 140px);
  background: var(--soft);
  color: var(--ink);
}
.packages-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.packages-eyebrow {
  display: inline-block;
  margin: 0 0 28px;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: white;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.packages-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 auto clamp(60px, 8vw, 100px);
  max-width: 920px;
}
.packages-group + .packages-group {
  margin-top: clamp(60px, 8vw, 100px);
}
.packages-group-label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
  text-align: left;
}
.package-fineprint {
  margin: 14px 0 0;
  font-size: 0.78rem;
  text-align: center;
  color: var(--muted);
}
.package-fineprint a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.package-fineprint a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}
.package-card--popular {
  border: 2px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    var(--grad-aurora) border-box;
  box-shadow: 0 24px 60px rgba(94, 92, 230, 0.18), var(--shadow);
}
.package-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--grad-aurora);
  white-space: nowrap;
}
.package-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.package-name {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.package-price-amount {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.package-price-suffix {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}
.package-price-tax {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-alt, rgba(12, 13, 16, 0.06));
  padding: 4px 8px;
  border-radius: 999px;
}
.package-blurb {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--ink);
}
.package-desc {
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 22px;
  color: var(--ink-soft);
}
.package-includes-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-content: flex-start;
}
.package-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.package-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--grad-primary);
}
.package-card--popular .package-list li::before {
  background: var(--grad-aurora);
}
.package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  font-size: 0.98rem;
  cursor: pointer;
  margin-top: auto;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease;
}
.package-cta:hover {
  transform: translateY(-1px);
  background: var(--ink);
  color: white;
}
.package-cta--primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.package-cta--primary:hover { background: #000; color: var(--green); }

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
  .package-card--popular { margin-top: 14px; }
}

.contact-block {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(100px, 12vw, 160px) clamp(20px, 6vw, 80px);
  background: white;
  color: var(--ink);
}
.contact-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(580px 460px at 12% 18%, rgba(10, 132, 255, 0.36), transparent 55%),
    radial-gradient(560px 440px at 88% 82%, rgba(48, 213, 200, 0.40), transparent 55%),
    radial-gradient(520px 420px at 78% 14%, rgba(30, 215, 96, 0.34), transparent 55%);
  z-index: -1;
  animation: hero-drift 30s ease-in-out infinite alternate;
  pointer-events: none;
}
.contact-portal { background: white; }
.contact-portal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(580px 460px at 12% 18%, rgba(10, 132, 255, 0.36), transparent 55%),
    radial-gradient(560px 440px at 88% 82%, rgba(48, 213, 200, 0.40), transparent 55%),
    radial-gradient(520px 420px at 78% 14%, rgba(30, 215, 96, 0.34), transparent 55%);
  z-index: -1;
  animation: hero-drift 30s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-inner.contact-inner-stack {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 1280px;
}
.contact-inner.contact-inner-stack .contact-copy {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 1180px;
}
.contact-inner-stack .contact-lede { margin-left: auto; margin-right: auto; }
.contact-options {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 480px;
  margin-top: 12px;
}
/* Horizontal 3-up layout for the contact CTAs (used on the home page now
   that "Are you in?" was removed and the buttons are the headline). */
.contact-options--horizontal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  width: 100%;
  max-width: 1180px;
  margin: clamp(28px, 3vw, 40px) auto 0;
  justify-self: center;
}
.contact-options--horizontal .contact-option {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  padding: 28px 32px;
  min-height: 88px;
  letter-spacing: -0.005em;
}
@media (max-width: 760px) {
  .contact-options--horizontal {
    grid-template-columns: 1fr;
  }
}
.contact-option {
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 18px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  background-image: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  box-shadow: 0 14px 32px rgba(10, 132, 255, 0.30);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.contact-option:nth-of-type(2) {
  background-image: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  box-shadow: 0 14px 32px rgba(30, 215, 96, 0.30);
}
.contact-option:nth-of-type(3) {
  background-image: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  box-shadow: 0 14px 32px rgba(255, 159, 10, 0.32);
}
.contact-option:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 20px 40px rgba(10, 132, 255, 0.36);
}
.contact-option:nth-of-type(2):hover { box-shadow: 0 20px 40px rgba(30, 215, 96, 0.36); }
.contact-option:nth-of-type(3):hover { box-shadow: 0 20px 40px rgba(255, 159, 10, 0.40); }
.contact-option.is-active { outline: 3px solid var(--ink); outline-offset: 3px; }

/* ----- Gradient text utility ----- */
.grad-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: grad-shift 9s ease-in-out infinite alternate;
}
.grad-blue   { background-image: linear-gradient(135deg, #0a84ff 0%, #32ade6 50%, #30d5c8 100%); }
.grad-green  { background-image: linear-gradient(135deg, #1ed760 0%, #30d5c8 60%, #0a84ff 100%); }
.grad-cyan   { background-image: linear-gradient(135deg, #0a84ff 0%, #30d5c8 100%); }
.grad-amber  { background-image: linear-gradient(135deg, #ff9f0a 0%, #ff6b35 100%); }
.grad-aurora { background-image: linear-gradient(135deg, #0a84ff 0%, #30d5c8 50%, #1ed760 100%); }
@keyframes grad-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.enquiry-form {
  display: grid;
  gap: 14px;
  background: white;
  color: var(--ink);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 32px);
  width: 100%;
  max-width: 520px;
  margin: 28px auto 0;
  text-align: left;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}
.enquiry-form[hidden] { display: none; }
.enquiry-success {
  background: white;
  color: var(--ink);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 40px);
  width: 100%;
  max-width: 520px;
  margin: 28px auto 0;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}
.enquiry-success[hidden] { display: none; }
.enquiry-success h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.enquiry-success p {
  margin: 0;
  color: var(--muted);
}
.enquiry-tag {
  margin: 0 0 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.enquiry-tag strong {
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.96rem;
}
.enquiry-form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.enquiry-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--ink);
}
.enquiry-form input:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  background: white;
}
.enquiry-form .form-note {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.contact-eyebrow {
  font-size: clamp(1.6rem, 3.6vw, 3.2rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: clamp(20px, 2vw, 32px) !important;
  opacity: 1;
  white-space: normal;
  color: var(--ink) !important;
  line-height: 1.05;
}
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  letter-spacing: -0.028em;
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 22px;
}
.contact-lede {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  margin-bottom: 32px;
  max-width: 520px;
}
.contact-links { display: grid; gap: 12px; max-width: 520px; }
.contact-links a {
  color: white;
  font-weight: 800;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(10px);
}
.contact-links a:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }

.lead-form {
  display: grid;
  gap: 14px;
  background: white;
  color: var(--ink);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.32);
}
.lead-form label { display: grid; gap: 8px; font-size: 0.86rem; font-weight: 800; color: var(--ink); }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}
.lead-form textarea { min-height: 110px; resize: vertical; }
.lead-form .button.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.20);
}
.lead-form .button.primary:hover { background: #000; transform: translateY(-1px); }
.form-note { margin: 0; font-size: 0.78rem; color: var(--muted); }

/* ----- TIER COMPARE TABLE ----- */
.package-compare {
  margin: clamp(28px, 3.5vw, 44px) auto 0;
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  overflow: hidden;
}
.package-compare summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  transition: background 0.18s ease;
}
.package-compare summary::-webkit-details-marker { display: none; }
.package-compare summary:hover { background: var(--soft); }
.package-compare[open] summary { border-bottom: 1px solid var(--line); }
.package-compare-table-wrap { overflow-x: auto; }
.package-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.package-compare-table th,
.package-compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.package-compare-table thead th {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--soft);
  border-bottom: 2px solid var(--line);
  padding: 18px;
}
.package-compare-table .package-compare-popular {
  background: linear-gradient(180deg, rgba(10,132,255,0.08), var(--soft));
}
.package-compare-table .package-compare-price {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}
.package-compare-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-soft);
  width: 44%;
}
.package-compare-table tbody td {
  font-size: 1.05rem;
  color: var(--ink);
}
.package-compare-table tbody tr:last-child th,
.package-compare-table tbody tr:last-child td { border-bottom: none; }

/* ----- SCROLL REVEAL (IntersectionObserver-driven) ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal][data-reveal-in] {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ----- FAQ ----- */
.faq {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 6vw, 80px);
  background: var(--soft);
  color: var(--ink);
}
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.faq-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 48px;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-of-type {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 44px;
  line-height: 1.4;
  transition: color 0.18s ease;
}
.faq-item summary:hover { color: var(--blue); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-55%);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  transition: transform 0.25s ease, color 0.18s ease;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--ink);
}
.faq-item p {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
}

/* ----- FOOTER ----- */
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 80px);
  background: #050510;
  color: white;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer .footer-top {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-footer .footer-brand { flex: 1; display: flex; align-items: center; }
.site-footer .footer-logo { width: 220px; filter: none; display: block; }
.site-footer .footer-regions {
  flex: 0 0 auto;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  text-align: center;
}
.site-footer .footer-spacer { flex: 1; }
.site-footer .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 4px 0 8px;
}
.site-footer .footer-socials .social-tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.site-footer .footer-socials .social-tile:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer .footer-copyright {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}
.site-footer .footer-legal {
  display: flex;
  gap: 22px;
}
.site-footer .footer-legal a {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.18s ease;
}
.site-footer .footer-legal a:hover { color: white; }
@media (max-width: 720px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Regions tag in the header — between the logo and the nav */
.site-regions {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 760px) {
  .site-regions { display: none; }
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 700; font-size: 0.92rem; transition: color 0.18s ease; }
.site-footer a:hover { color: var(--green); }

/* ----- LEGACY (subpages) ----- */
.page-hero {
  padding: clamp(74px, 10vw, 130px) clamp(18px, 5vw, 64px) 48px;
  background:
    radial-gradient(700px 360px at 12% 0%, rgba(94, 92, 230, 0.12), transparent 60%),
    radial-gradient(700px 360px at 88% 100%, rgba(48, 213, 200, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); letter-spacing: -0.025em; line-height: 1.0; }

/* ----- LEGAL PAGES (Privacy, Terms) ----- */
.legal-page { background: var(--soft); }
.legal-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 48px);
}
.legal-content {
  background: white;
  border-radius: clamp(16px, 1.6vw, 22px);
  padding: clamp(32px, 5vw, 64px);
  box-shadow: 0 18px 50px rgba(12, 13, 16, 0.06);
}
.legal-content .legal-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.legal-content h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.legal-meta {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 28px;
}
.legal-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 28px;
}
.legal-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
  color: var(--ink);
}
.legal-content p,
.legal-content ul {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.legal-content ul {
  padding-left: 22px;
}
.legal-content ul li { margin-bottom: 8px; }
.legal-content a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--ink); font-weight: 700; }
.page-hero p { max-width: 780px; color: var(--ink-soft); font-size: 1.1rem; margin: 18px auto 0; }
.content-shell { padding: clamp(40px, 7vw, 82px) clamp(18px, 5vw, 64px); }
.two-column { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 6vw, 70px); align-items: start; max-width: 1200px; margin: 0 auto; }
.note-panel {
  background: linear-gradient(160deg, rgba(94, 92, 230, 0.08), rgba(48, 213, 200, 0.08));
  border: 1px solid rgba(94, 92, 230, 0.18);
  border-radius: 18px;
  padding: 26px;
}
.check-list { padding-left: 18px; color: var(--ink-soft); }
.check-list li { margin-bottom: 8px; }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1060px) {
  .scene-inner { grid-template-columns: 1fr; gap: 36px; }
  .scene-num { font-size: clamp(7rem, 30vw, 14rem); }
  .scene-sales .scene-num { order: 1; text-align: left; justify-self: start; }
  .scene-sales .scene-content { order: 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .scene-stats { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 12px 18px; }
  .menu-button { display: block; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    padding: 18px;
    background: rgba(8,8,14,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: blur(20px);
  }
  .site-nav.open { display: flex; }
  .brand img { width: 170px; }
  .cta-row .button { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .scene-tags li { font-size: 0.85rem; padding: 9px 14px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
