﻿:root {
  --navy-950: #021924;
  --navy-900: #032838;
  --navy-850: #073446;
  --navy-800: #0a4252;
  --teal-700: #086b70;
  --teal-600: #0d8e91;
  --aqua: #50c5c7;
  --aqua-light: #99ebdf;
  --coral: #f06452;
  --coral-dark: #d54d42;
  --gold: #efad30;
  --green: #39a963;
  --purple: #81549c;
  --sand: #f4eee3;
  --sand-deep: #e7dccb;
  --ink: #10273a;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --display: 'Zodiak', Georgia, serif;
  --sans: 'Satoshi', Arial, sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --shadow: 0 28px 70px rgba(1, 21, 30, .28);
  --shadow-soft: 0 14px 35px rgba(7, 31, 43, .14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --header-height: 82px;
  --frame: 1920px;
  --container: min(1440px, calc(100vw - 10vw));
  --heading-section: clamp(2.35rem, 3vw, 3.55rem);
  --heading-panel: clamp(2.2rem, 2.7vw, 3.25rem);
  --heading-closing: clamp(2.6rem, 3.8vw, 4.2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  background: #00131c;
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); line-height: .98; letter-spacing: -.035em; }
h2 { font-size: var(--heading-section); }
h3 { line-height: 1.12; }
p { text-wrap: pretty; }
::selection { background: var(--coral); color: white; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--aqua-light); outline-offset: 4px; }
.container { width: var(--container); margin-inline: auto; position: relative; z-index: 2; }
main, .site-footer { width: min(100%, var(--frame)); margin-inline: auto; box-shadow: 0 0 90px rgba(0, 7, 12, .42); }
.centered { text-align: center; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--teal-700);
  font: 700 .72rem/1.2 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}
.eyebrow.light { color: var(--aqua-light); }
.eyebrow.purple { color: var(--purple); }
.eyebrow.centered { justify-content: center; }

.button {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-coral {
  background: linear-gradient(135deg, #f5785f, var(--coral));
  color: white;
  box-shadow: 0 10px 28px rgba(240, 100, 82, .28);
}
.button-coral:hover { background: linear-gradient(135deg, #ff8068, var(--coral-dark)); box-shadow: 0 15px 34px rgba(240, 100, 82, .42); }
.button-ghost { border: 1px solid rgba(255, 255, 255, .6); color: white; background: rgba(0, 24, 34, .25); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: white; background: rgba(255, 255, 255, .1); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  left: 50%;
  right: auto;
  width: min(100%, var(--frame));
  transform: translateX(-50%);
  z-index: 1000;
  height: var(--header-height);
  padding: 0 clamp(18px, 3.5vw, 62px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  background: linear-gradient(180deg, rgba(1, 21, 30, .92), rgba(1, 21, 30, .42));
  transition: height .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(2, 25, 36, .86);
  border-color: rgba(125, 231, 222, .14);
  backdrop-filter: blur(18px) saturate(130%);
}
.scroll-progress { position: absolute; inset: 0 0 auto; height: 2px; background: rgba(255,255,255,.05); overflow: hidden; }
.scroll-progress span { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--aqua), var(--coral), var(--gold)); }
.brand { width: clamp(178px, 15vw, 225px); }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; justify-content: flex-end; align-items: center; gap: clamp(14px, 1.55vw, 30px); }
.site-nav a { position: relative; color: rgba(255, 255, 255, .87); font-size: .78rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--aqua); transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="true"]::after { right: 0; }
.header-cta { min-height: 44px; padding-inline: 21px; font-size: .82rem; }
.nav-cta { display: none; }
.menu-toggle { display: none; background: none; color: white; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
.nav-scrim { position: fixed; inset: 0; z-index: 950; background: rgba(1, 12, 18, .62); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .28s ease; }
body.nav-open { overflow: hidden; }
body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }
body.intro-lock { overflow: hidden; }

.hero {
  min-height: 930px;
  padding: calc(var(--header-height) + 70px) 0 122px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-background, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-background { object-fit: cover; object-position: 52% 50%; z-index: -3; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 20, 29, .96) 0%, rgba(0, 29, 40, .77) 32%, rgba(0, 27, 38, .22) 63%, rgba(0, 15, 22, .3) 100%),
    linear-gradient(180deg, rgba(0, 19, 27, .55) 0%, transparent 30%, transparent 67%, rgba(1, 28, 39, .95) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(470px, .88fr); gap: clamp(40px, 5vw, 90px); align-items: center; }
.hero-layout > * { min-width: 0; }
.hero-copy { width: 100%; max-width: 770px; min-width: 0; padding-top: 14px; }
.festival-wordmark { width: 280px; margin-bottom: 24px; color: var(--aqua); }
.festival-wordmark span { display: block; text-align: center; font: 700 1.2rem/1 var(--sans); letter-spacing: .42em; text-indent: .42em; }
.festival-wordmark svg { width: 100%; height: 17px; margin-top: 8px; fill: none; stroke: currentColor; stroke-width: 2.3; opacity: .85; }
.hero h1 { max-width: 760px; margin-bottom: 20px; color: white; font-size: clamp(2.9rem, 3.35vw, 3.7rem); text-shadow: 0 5px 25px rgba(0, 20, 29, .45); }
.hero h1 em { display: inline; font-style: normal; color: #fff7ed; }
.hero-subhead { margin-bottom: 12px; color: var(--aqua-light); font-size: clamp(1.08rem, 1.4vw, 1.35rem); font-weight: 700; }
.hero-lead { max-width: 670px; margin-bottom: 30px; color: rgba(255, 255, 255, .91); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.55; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-orbit { position: absolute; border: 1px solid rgba(111, 226, 215, .18); border-radius: 50%; z-index: -1; pointer-events: none; }
.orbit-one { width: 700px; height: 700px; right: -240px; top: 80px; }
.orbit-two { width: 440px; height: 440px; right: -120px; top: 210px; border-style: dashed; }

.device-stage { position: relative; height: 610px; perspective: 1100px; }
.laptop, .phone { position: absolute; }
.laptop { width: 88%; left: 0; top: 52px; transform: rotateY(-7deg) rotateX(1deg); transform-origin: center; border-radius: 13px; overflow: hidden; background: #0b1418; box-shadow: 0 35px 70px rgba(0, 11, 17, .52), 0 0 0 1px rgba(195, 242, 238, .22); }
.laptop img { width: 100%; height: auto; }
.phone { width: 35%; right: 2%; top: 115px; z-index: 3; transform: rotateY(-5deg) rotateZ(1deg); filter: drop-shadow(0 30px 45px rgba(0, 11, 17, .55)); }
.phone img { width: 100%; height: auto; }

.promise-rail { position: absolute; left: 50%; bottom: 56px; transform: translateX(-50%); z-index: 5; width: min(760px, calc(100% - 40px)); display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(222, 255, 250, .42); border-radius: 16px; background: rgba(2, 28, 39, .66); box-shadow: 0 18px 42px rgba(0, 14, 20, .32); backdrop-filter: blur(14px); }
.promise-rail > div { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 75px; position: relative; font-weight: 700; }
.promise-rail > div:not(:last-child)::after { content: ''; position: absolute; top: 18px; bottom: 18px; right: 0; width: 1px; background: rgba(255,255,255,.16); }
.promise-rail svg { width: 27px; height: 27px; fill: none; stroke: white; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.wave-edge { position: absolute; left: 0; right: 0; bottom: -1px; height: 34px; background: var(--paper); clip-path: polygon(0 70%, 5% 30%, 10% 67%, 15% 30%, 20% 67%, 25% 30%, 30% 67%, 35% 30%, 40% 67%, 45% 30%, 50% 67%, 55% 30%, 60% 67%, 65% 30%, 70% 67%, 75% 30%, 80% 67%, 85% 30%, 90% 67%, 95% 30%, 100% 67%, 100% 100%, 0 100%); opacity: .92; }

.paper-section { position: relative; color: var(--ink); background-color: var(--paper); background-image: radial-gradient(circle at 30% 20%, rgba(204, 188, 158, .12) 0 1px, transparent 1px); background-size: 7px 7px; }
.paper-section::after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .18; background: linear-gradient(110deg, transparent 45%, rgba(198,174,135,.18)); }
.attention { min-height: 520px; padding: 86px 0 78px; overflow: hidden; }
.attention-layout { display: grid; grid-template-columns: .78fr 1.6fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.section-copy h2 { max-width: 520px; margin-bottom: 24px; font-size: var(--heading-panel); }
.section-copy p { max-width: 520px; margin-bottom: 12px; font-size: 1.06rem; }
.botanical-shadow { position: absolute; width: 480px; height: 460px; right: -90px; bottom: -120px; opacity: .1; background: repeating-radial-gradient(ellipse at bottom right, transparent 0 18px, var(--teal-700) 19px 21px, transparent 22px 38px); transform: rotate(-20deg); }
.source-map { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-bottom: 130px; }
.source-card { position: relative; z-index: 2; min-height: 112px; display: grid; place-items: center; align-content: center; gap: 8px; border: 1px solid rgba(17, 53, 64, .12); border-radius: var(--radius-sm); color: var(--ink); background: rgba(255,255,255,.78); box-shadow: var(--shadow-soft); }
.source-card svg { width: 32px; height: 32px; fill: none; stroke: var(--teal-600); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.source-social svg { stroke: #e76579; }
.source-sponsors svg { stroke: var(--gold); }
.source-artists svg { stroke: var(--purple); }
.source-card span { font-weight: 700; }
.website-hub { position: absolute; z-index: 3; left: 28%; right: 28%; bottom: 0; min-height: 92px; display: flex; align-items: center; justify-content: center; gap: 20px; border: 1px solid rgba(139, 242, 231, .45); border-radius: 14px; color: white; background: linear-gradient(135deg, var(--teal-700), #024150); box-shadow: 0 15px 30px rgba(3, 72, 79, .26); font-family: var(--display); font-size: 1.35rem; line-height: 1.1; }
.website-hub svg { width: 40px; height: 40px; fill: none; stroke: var(--aqua-light); stroke-width: 2; }
.map-lines { position: absolute; z-index: 1; left: 8%; right: 8%; top: 104px; height: 95px; }
.map-lines i { position: absolute; width: 1px; top: 0; bottom: 15px; border-left: 2px dashed var(--teal-600); transform-origin: top; }
.map-lines i::after { content: ''; position: absolute; bottom: -2px; left: -5px; width: 8px; height: 8px; border-right: 2px solid var(--teal-600); border-bottom: 2px solid var(--teal-600); transform: rotate(45deg); }
.map-lines i:nth-child(1) { left: 8%; transform: rotate(-35deg); }
.map-lines i:nth-child(2) { left: 37%; transform: rotate(-12deg); }
.map-lines i:nth-child(3) { left: 63%; transform: rotate(12deg); }
.map-lines i:nth-child(4) { left: 92%; transform: rotate(35deg); }

.engine { position: relative; padding: 76px 0 58px; overflow: hidden; background: radial-gradient(circle at 50% 110%, rgba(29, 119, 128, .46), transparent 45%), linear-gradient(135deg, #021c29, #063a4a 58%, #021e2e); }
.engine h2 { max-width: 1280px; margin: 0 auto 52px; font-size: var(--heading-section); }
.engine-line { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.engine-line::before { content: ''; position: absolute; left: 4%; right: 4%; top: 48px; height: 2px; background: linear-gradient(90deg, var(--aqua), var(--aqua), var(--green), var(--gold), var(--coral), var(--purple)); opacity: .8; }
.stage-card { --stage: var(--aqua); position: relative; z-index: 2; text-align: center; }
.stage-icon { width: 96px; height: 96px; margin: 0 auto 24px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.46); border-radius: 50%; background: radial-gradient(circle at 30% 25%, color-mix(in srgb, var(--stage), white 26%), var(--stage) 54%, color-mix(in srgb, var(--stage), black 28%)); box-shadow: 0 10px 28px color-mix(in srgb, var(--stage), transparent 68%); }
.stage-icon svg { width: 40px; height: 40px; fill: none; stroke: white; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.stage-card::after {
  content: '';
  position: absolute;
  top: 48px;
  right: -16px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(153, 235, 223, .92);
  border-right: 2px solid rgba(153, 235, 223, .92);
  transform: translateY(-50%) rotate(45deg);
}
.stage-card:last-child::after { display: none; }
.stage-number { font: 700 .67rem/1 var(--mono); letter-spacing: .12em; color: rgba(255,255,255,.5); }
.stage-card h3 { margin: 9px 0 9px; color: var(--stage); font-size: 1.15rem; }
.stage-card p { margin: 0 auto; max-width: 170px; color: rgba(255,255,255,.82); font-size: .82rem; line-height: 1.42; }
.stage-nurture { --stage: var(--gold); }
.stage-respond { --stage: var(--green); }
.stage-convert { --stage: var(--coral); }
.stage-retain { --stage: var(--purple); }
.engine-thesis { margin: 48px auto 0; text-align: center; color: rgba(255,255,255,.87); font-weight: 700; }
.pattern-corner { position: absolute; right: -90px; bottom: -90px; width: 360px; height: 360px; opacity: .11; border: 2px solid var(--aqua); transform: rotate(45deg); background: repeating-linear-gradient(45deg, transparent 0 17px, var(--aqua) 18px 19px, transparent 20px 34px); }

.showcase { display: grid; grid-template-columns: 1fr 1fr; }
.showcase > article { min-width: 0; padding: clamp(65px, 6vw, 110px) clamp(30px, 5vw, 94px); }
.panel-inner { max-width: 760px; margin: 0 auto; }
.panel-copy h2 { margin-bottom: 22px; font-size: var(--heading-panel); }
.panel-copy p:not(.eyebrow) { color: #38505d; font-size: 1.02rem; }
.website-vision { position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 80% 12%, rgba(96, 221, 208, .25), transparent 34%), linear-gradient(145deg, #087378, #086267 60%, #064b55); }
.website-vision::after { content: ''; position: absolute; left: -70px; bottom: -110px; width: 330px; height: 330px; border-radius: 50%; opacity: .18; background: repeating-radial-gradient(circle, var(--aqua-light) 0 2px, transparent 3px 19px); }
.concept-stage { position: relative; margin-top: 36px; padding: 0 44px 36px 0; }
.browser-concept { overflow: hidden; border: 6px solid #d8c8b1; border-radius: 15px; background: var(--navy-950); box-shadow: 0 28px 50px rgba(0, 31, 35, .34); }
.browser-concept img { width: 100%; height: auto; }
.concept-phone { position: absolute; right: 0; bottom: 0; width: 24%; transform: rotate(2deg); filter: drop-shadow(0 22px 34px rgba(0, 24, 28, .5)); }
.concept-phone img { width: 100%; height: auto; }
.check-list { list-style: none; columns: 2; gap: 30px; padding: 0; margin: 30px 0 18px; }
.check-list li { break-inside: avoid; position: relative; padding: 0 0 12px 27px; font-size: .84rem; line-height: 1.4; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: -2px; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: white; background: rgba(126, 229, 218, .35); }
.panel-note { position: relative; z-index: 2; margin: 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.23); font-size: .9rem; }

.sms-vision { color: var(--ink); background: radial-gradient(circle at 92% 13%, rgba(84, 187, 183, .18), transparent 31%), #edf7f4; }
.sms-demo { display: grid; grid-template-columns: .86fr 1fr; gap: 34px; align-items: center; margin-top: 34px; }
.message-phone { position: relative; width: 100%; min-height: 500px; padding: 52px 18px 25px; border: 7px solid #101a20; border-radius: 34px 34px 0 0; background: #f5f5f6; box-shadow: var(--shadow); }
.message-notch { position: absolute; top: 8px; left: 34%; right: 34%; height: 22px; border-radius: 15px; background: #101a20; }
.message-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin-bottom: 28px; color: #2d4b59; font-size: .7rem; }
.message-top span { font-size: 1.5rem; color: #1180b5; }
.message-top small { justify-self: end; }
.bubble { width: 90%; margin-bottom: 13px; padding: 13px 15px; border-radius: 15px 15px 15px 3px; background: #e1e2e4; color: #1d2931; font-size: .88rem; line-height: 1.35; }
.message-benefits { display: grid; gap: 20px; }
.message-benefits > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: center; padding: 20px; border: 1px solid rgba(18, 61, 72, .1); border-radius: var(--radius-sm); background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.message-benefits svg { width: 42px; height: 42px; fill: none; stroke: var(--gold); stroke-width: 2.2; }
.message-benefits > div:nth-child(2) svg { stroke: var(--teal-600); }
.message-benefits > div:nth-child(3) svg { stroke: var(--purple); }
.message-benefits p { margin: 0; font-size: .8rem; line-height: 1.35; }
.message-benefits strong { display: block; margin-bottom: 4px; font-size: .9rem; }

.operations { display: grid; grid-template-columns: 1fr 1fr; }
.operations > article { min-width: 0; position: relative; padding: clamp(65px, 6vw, 105px) clamp(30px, 5vw, 94px); }
.operation-inner { max-width: 760px; margin: 0 auto; }
.operations h2 { margin-bottom: 22px; font-size: var(--heading-panel); }
.email-system { background: linear-gradient(145deg, #faf5fd, #f7f0f9); }
.email-system::after { content: ''; position: absolute; left: -100px; bottom: -110px; width: 300px; height: 300px; opacity: .16; background: repeating-radial-gradient(ellipse at bottom left, transparent 0 16px, var(--purple) 17px 19px, transparent 20px 34px); }
.email-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 34px 0 24px; }
.email-cards > div { position: relative; z-index: 2; min-height: 145px; display: grid; align-content: center; justify-items: center; gap: 12px; padding: 14px 9px; border: 1px solid rgba(76, 46, 93, .12); border-radius: 11px; text-align: center; background: rgba(255,255,255,.8); box-shadow: var(--shadow-soft); }
.email-cards svg { width: 38px; height: 38px; fill: none; stroke: var(--purple); stroke-width: 2.2; }
.email-cards span { font-size: .72rem; font-weight: 700; line-height: 1.25; }
.channel-note { position: relative; z-index: 2; margin: 0; padding-top: 16px; border-top: 1px solid rgba(90, 50, 106, .15); font-weight: 500; }
.partnership { background: linear-gradient(145deg, #fbf7ef, #f1e5d4); }
.ownership { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.owner-card { overflow: hidden; border: 1px solid rgba(19, 47, 56, .12); border-radius: 10px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-soft); }
.owner-card h3 { margin: 0; padding: 13px 16px; color: white; font-size: .86rem; background: var(--teal-600); }
.local-owner h3 { color: #873520; background: #f3c6a9; }
.owner-card ul { list-style: none; margin: 0; padding: 17px 18px; }
.owner-card li { position: relative; padding: 0 0 8px 22px; font-size: .78rem; line-height: 1.35; }
.owner-card li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-700); font-weight: 700; }
.partnership-note { margin: 24px 0 0; font-size: .87rem; font-weight: 500; }

.beyond { position: relative; padding: 70px 0 58px; overflow: hidden; background: radial-gradient(circle at 25% 130%, rgba(9, 148, 147, .46), transparent 46%), linear-gradient(120deg, #043745, #006260 52%, #023946); }
.beyond::before, .beyond::after { content: ''; position: absolute; bottom: -90px; width: 330px; height: 280px; opacity: .22; background: repeating-radial-gradient(ellipse at bottom, transparent 0 18px, var(--aqua-light) 19px 21px, transparent 22px 38px); }
.beyond::before { left: -100px; transform: rotate(15deg); }
.beyond::after { right: -100px; transform: scaleX(-1) rotate(15deg); }
.beyond-layout { display: grid; grid-template-columns: .75fr 2.2fr; gap: 46px; align-items: center; }
.beyond-heading h2 { margin: 0; font-size: var(--heading-panel); }
.asset-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.asset-grid article { min-height: 145px; padding: 17px 10px; display: grid; justify-items: center; align-content: center; gap: 13px; border: 1px solid rgba(142, 238, 226, .32); border-radius: 10px; text-align: center; background: rgba(2, 48, 55, .32); box-shadow: inset 0 1px rgba(255,255,255,.05); }
.asset-grid svg { width: 38px; height: 38px; fill: none; stroke: white; stroke-width: 2.1; }
.asset-grid h3 { margin: 0; font-size: .78rem; }
.beyond-note { grid-column: 2; margin: 2px 0 0; text-align: center; color: rgba(255,255,255,.88); font-size: .88rem; }

.closing { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.closing > img, .closing-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.closing > img { object-fit: cover; object-position: 54% 53%; }
.closing-shade { background: linear-gradient(90deg, rgba(4, 25, 34, .93) 0%, rgba(4, 25, 34, .72) 43%, rgba(4, 25, 34, .12) 72%, rgba(4,25,34,.25)); }
.closing-copy { padding-block: 75px; }
.closing h2 { max-width: 840px; margin-bottom: 18px; font-size: var(--heading-closing); }
.closing p:not(.eyebrow) { max-width: 720px; margin-bottom: 26px; font-size: 1.08rem; color: rgba(255,255,255,.9); }

.site-footer { position: relative; min-height: 122px; padding: 24px clamp(24px, 4vw, 70px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; background: #021b29; border-top: 1px solid rgba(123, 227, 217, .14); }
.site-footer > img:first-child { width: 230px; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; color: rgba(255,255,255,.78); font-size: .78rem; }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--aqua-light); }
.footer-contact i { width: 1px; height: 13px; background: rgba(255,255,255,.35); }
.footer-mark { justify-self: end; width: 58px; height: 58px; }

.contact-modal { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 30px; }
.contact-modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(1, 17, 24, .78); backdrop-filter: blur(14px); cursor: default; }
.contact-dialog { position: relative; z-index: 2; width: min(720px, 100%); max-height: calc(100vh - 60px); overflow: auto; padding: clamp(34px, 5vw, 62px); border: 1px solid rgba(133, 233, 223, .3); border-radius: var(--radius-lg); color: white; background: radial-gradient(circle at 100% 0, rgba(52, 172, 171, .25), transparent 36%), linear-gradient(145deg, #063849, #021d2b); box-shadow: 0 45px 100px rgba(0, 11, 16, .58); }
.contact-dialog::before, .contact-dialog::after { content: ''; position: absolute; border-radius: 50%; border: 1px dashed rgba(117, 229, 219, .2); pointer-events: none; }
.contact-dialog::before { width: 360px; height: 360px; right: -180px; top: -190px; }
.contact-dialog::after { width: 230px; height: 230px; right: -100px; top: -120px; }
.modal-close { position: absolute; z-index: 4; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; background: rgba(255,255,255,.06); font-size: 1.75rem; line-height: 1; cursor: pointer; }
.contact-dialog h2 { margin-bottom: 15px; font-size: clamp(2.4rem, 4vw, 3.2rem); }
.contact-dialog p:not(.eyebrow) { max-width: 570px; color: rgba(255,255,255,.8); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.form-grid label { display: grid; gap: 7px; color: rgba(255,255,255,.83); font-size: .78rem; font-weight: 700; }
.form-grid label small { font-weight: 400; opacity: .7; }
.form-grid input, .form-grid textarea { width: 100%; border: 1px solid rgba(160, 231, 224, .27); border-radius: 8px; padding: 13px 14px; color: white; background: rgba(1, 19, 28, .52); outline: none; transition: border .2s ease, box-shadow .2s ease; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(80,197,199,.15); }
.form-grid [aria-invalid="true"] { border-color: var(--coral); }
.full-field { grid-column: 1 / -1; }
.form-submit { margin-top: 22px; }
.form-status { min-height: 24px; margin: 12px 0 0 !important; color: var(--aqua-light) !important; font-size: .85rem; }
.success-stage { min-height: 310px; display: grid; align-content: center; justify-items: start; }
.success-stage[hidden] { display: none; }

/* Contact dialog refinement */
.modal-backdrop {
  background:
    radial-gradient(circle at 50% 100%, rgba(65, 104, 108, .23), transparent 38%),
    rgba(0, 15, 22, .9);
  backdrop-filter: blur(8px);
}
.contact-dialog {
  width: min(760px, 100%);
  max-height: min(760px, calc(100dvh - 40px));
  overflow-x: hidden;
  overflow-y: auto;
  padding: 44px 52px 40px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(70, 188, 184, .18), transparent 32%),
    linear-gradient(150deg, #073b4b, #032431 70%);
  scrollbar-width: thin;
  scrollbar-color: rgba(110, 218, 209, .45) transparent;
}
.contact-dialog::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  width: auto;
  height: 3px;
  border: 0;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, var(--aqua), var(--coral), var(--gold));
}
.contact-dialog::after { display: none; }
.contact-dialog h2 { max-width: 620px; }
.form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.form-grid textarea {
  min-height: 96px;
  resize: vertical;
}
.modal-close { top: 16px; right: 16px; }


@media (max-width: 1240px) {
  :root { --container: min(1120px, calc(100vw - 54px)); }
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .menu-toggle { display: block; grid-column: 3; }
  .header-cta { grid-column: 4; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    gap: 2px;
    padding: 14px clamp(18px, 5vw, 44px) 26px;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    border-bottom: 1px solid rgba(125, 231, 222, .22);
    background: linear-gradient(180deg, rgba(2, 25, 36, .985), rgba(2, 21, 30, .97));
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 70px rgba(0, 9, 14, .5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .26s ease, visibility .26s ease, transform .26s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: .95rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .3s ease, transform .3s ease, color .2s ease;
  }
  .site-nav.is-open a { opacity: 1; transform: none; }
  .site-nav.is-open a:nth-child(1) { transition-delay: .04s; }
  .site-nav.is-open a:nth-child(2) { transition-delay: .08s; }
  .site-nav.is-open a:nth-child(3) { transition-delay: .12s; }
  .site-nav.is-open a:nth-child(4) { transition-delay: .16s; }
  .site-nav.is-open a:nth-child(5) { transition-delay: .2s; }
  .site-nav.is-open a:nth-child(6) { transition-delay: .24s; }
  .site-nav.is-open a:nth-child(7) { transition-delay: .28s; }
  .site-nav.is-open a:nth-child(8) { transition-delay: .32s; }
  .site-nav a::after { display: none; }
  .site-nav a[aria-current="true"] { color: var(--aqua-light); }
  .site-nav .nav-cta {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s ease .36s, transform .3s ease .36s, background-color .25s ease, box-shadow .25s ease;
  }
  .site-nav.is-open .nav-cta { opacity: 1; transform: none; }
  .hero { min-height: 860px; }
  .hero-layout { grid-template-columns: minmax(0, 1.05fr) minmax(420px, .8fr); gap: 30px; }
  .device-stage { height: 540px; }
  .email-cards { grid-template-columns: repeat(3, 1fr); }
  .asset-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  :root { --container: min(820px, calc(100vw - 42px)); }
  .hero { min-height: 1280px; padding-top: calc(var(--header-height) + 64px); align-items: flex-start; }
  .hero-background { object-position: 61% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(1,22,31,.95) 0%, rgba(1,24,34,.77) 49%, rgba(1,22,31,.2) 73%, rgba(1,28,39,.94) 100%); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero h1 { max-width: 760px; font-size: clamp(3.1rem, 6vw, 4.2rem); }
  .device-stage { width: min(670px, 90%); height: 540px; margin: -4px auto 0; }
  .promise-rail { bottom: 52px; }
  .attention-layout { grid-template-columns: 1fr; }
  .section-copy h2 { max-width: 690px; }
  .source-map { width: min(760px, 100%); }
  .engine-line { grid-template-columns: repeat(3, 1fr); row-gap: 42px; }
  .engine-line::before { display: none; }
  .stage-card:nth-child(3)::after { display: none; }
  .showcase, .operations { grid-template-columns: 1fr; }
  .showcase > article, .operations > article { padding-inline: max(30px, calc((100vw - min(820px, calc(100vw - 42px))) / 2)); }
  .panel-inner, .operation-inner { max-width: 820px; }
  .beyond-layout { grid-template-columns: 1fr; }
  .beyond-heading { max-width: 720px; }
  .beyond-note { grid-column: 1; }
  .site-footer { grid-template-columns: 1fr auto; }
  .footer-contact { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
}

@media (max-width: 720px) {
  :root { --container: calc(100vw - 32px); --header-height: 70px; }
  body { font-size: 15px; }
  .site-header { height: 70px; padding-inline: 16px; grid-template-columns: 1fr auto; gap: 4px; }
  .brand { width: 178px; }
  .menu-toggle { grid-column: 2; }
  .header-cta { display: none; }
  .site-nav { padding-inline: 16px; }
  .site-nav .nav-cta { display: inline-flex; width: 100%; margin-top: 16px; }
  .hero { min-height: 1120px; padding-top: 112px; padding-bottom: 155px; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.25rem); }
  .festival-wordmark { width: 230px; }
  .festival-wordmark span { font-size: 1rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .device-stage { width: 100%; height: 410px; margin-top: 16px; }
  .laptop { width: 96%; top: 30px; }
  .phone { width: 32%; right: 0; top: 95px; }
  .promise-rail { grid-template-columns: repeat(2, 1fr); bottom: 45px; }
  .promise-rail > div { min-height: 56px; font-size: .84rem; }
  .promise-rail > div:nth-child(2)::after { display: none; }
  .promise-rail > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .promise-rail svg { width: 22px; height: 22px; }
  .attention { padding-block: 70px; }
  .source-map { grid-template-columns: 1fr 1fr; padding-bottom: 114px; }
  .map-lines { display: none; }
  .website-hub { left: 12%; right: 12%; }
  .engine { padding-block: 68px 56px; }
  .engine h2 { margin-bottom: 46px; }
  .engine-line { grid-template-columns: 1fr; gap: 0; }
  .engine-line::before { display: block; left: 47px; right: auto; top: 45px; bottom: 45px; width: 2px; height: auto; background: linear-gradient(var(--aqua), var(--green), var(--gold), var(--coral), var(--purple)); }
  .stage-card { display: grid; grid-template-columns: 96px 1fr; grid-template-rows: auto auto auto; column-gap: 22px; min-height: 125px; text-align: left; }
  .stage-icon { grid-row: 1 / 4; margin: 0; width: 94px; height: 94px; }
  .stage-card::after { display: none; }
  .stage-number, .stage-card h3, .stage-card p { grid-column: 2; }
  .stage-card h3 { margin: 7px 0 5px; }
  .stage-card p { margin: 0; max-width: none; }
  .showcase > article, .operations > article { padding: 66px 16px; }
  .check-list { columns: 1; }
  .sms-demo { grid-template-columns: 1fr; }
  .message-phone { width: min(360px, 90%); margin-inline: auto; min-height: 455px; }
  .email-cards { grid-template-columns: repeat(2, 1fr); }
  .email-cards > div:last-child { grid-column: 1 / -1; min-height: 110px; }
  .ownership { grid-template-columns: 1fr; }
  .asset-grid { grid-template-columns: repeat(2, 1fr); }
  .closing { min-height: 650px; align-items: flex-start; }
  .closing > img { object-position: 68% center; }
  .closing-shade { background: linear-gradient(180deg, rgba(3,23,32,.9), rgba(3,23,32,.65) 56%, rgba(3,23,32,.2)); }
  .closing-copy { padding-top: 72px; }
  .closing h2 { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .site-footer { grid-template-columns: 1fr auto; padding-inline: 18px; }
  .site-footer > img:first-child { width: 185px; }
  .footer-contact { gap: 8px 11px; font-size: .72rem; }
  .footer-contact i { display: none; }
  .footer-contact > * { width: 100%; }
  .contact-modal { padding: 12px; }
  .contact-dialog { max-height: calc(100vh - 24px); padding: 54px 22px 28px; border-radius: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
}

@media (max-width: 430px) {
  .hero { min-height: 1040px; }
  .hero h1 { font-size: 2rem; }
  .hero-subhead { font-size: 1rem; }
  .device-stage { height: 340px; }
  .laptop { top: 28px; }
  .phone { width: 33%; top: 75px; }
  .source-card { min-height: 96px; }
  .website-hub { left: 5%; right: 5%; }
  .email-cards { grid-template-columns: 1fr; }
  .email-cards > div, .email-cards > div:last-child { grid-column: auto; min-height: 100px; grid-template-columns: auto 1fr; justify-items: start; text-align: left; padding-inline: 22px; }
  .asset-grid article { min-height: 130px; }
}

/* ---- Festival intro overlay ---- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 118%, rgba(13, 142, 145, .38), transparent 52%),
    radial-gradient(circle at 88% -8%, rgba(240, 100, 82, .16), transparent 40%),
    linear-gradient(160deg, #01141d, #032838 58%, #021620);
  cursor: pointer;
}
.no-js .intro-overlay, .no-motion .intro-overlay { display: none; }
.intro-inner { position: relative; display: grid; justify-items: center; padding: 24px; text-align: center; }
.intro-wordmark {
  display: flex;
  color: white;
  font: 700 clamp(1.9rem, 6.4vw, 3.9rem)/1 var(--sans);
  letter-spacing: .34em;
  text-indent: .34em;
  text-shadow: 0 8px 40px rgba(80, 197, 199, .35);
}
.intro-wordmark span { display: inline-block; will-change: transform; }
.intro-wave { width: min(340px, 62vw); height: 26px; margin-top: 20px; fill: none; stroke: var(--aqua); stroke-width: 2.4; stroke-linecap: round; opacity: .9; }
.intro-tag {
  margin: 22px 0 0;
  color: var(--aqua-light);
  font: 700 .74rem/1.4 var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.intro-skip {
  position: absolute;
  left: 50%;
  bottom: -76px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .38);
  font-size: .72rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* ---- Try It Now placements ---- */
.engine-cta { margin-top: 30px; text-align: center; }
.tryit-lead { font-weight: 700; color: var(--ink) !important; }
.sms-vision .panel-copy .button { margin-top: 4px; }

/* ---- Why Product Advance ---- */
.why { position: relative; padding: 92px 0 84px; overflow: hidden; }
.why::before { content: ''; position: absolute; left: -110px; top: -120px; width: 380px; height: 380px; opacity: .1; background: repeating-radial-gradient(circle, transparent 0 16px, var(--teal-700) 17px 19px, transparent 20px 36px); }
.why-intro { max-width: 780px; }
.why-intro h2 { max-width: 680px; margin-bottom: 24px; font-size: var(--heading-panel); }
.why-intro p { max-width: 760px; margin-bottom: 14px; font-size: 1.04rem; }
.client-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 44px; }
.client-row span {
  padding: 11px 18px;
  border: 1px solid rgba(17, 53, 64, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
  box-shadow: var(--shadow-soft);
  color: var(--navy-800);
  font: 700 .8rem/1 var(--sans);
  letter-spacing: .04em;
}
.why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.why-stat {
  display: grid;
  gap: 6px;
  padding: 24px 22px;
  border: 1px solid rgba(17, 53, 64, .12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}
.why-stat strong { font-family: var(--display); font-size: clamp(1.9rem, 2.6vw, 2.5rem); line-height: 1; color: var(--teal-700); letter-spacing: -.02em; }
.why-stat span { font-size: .82rem; line-height: 1.35; color: #38505d; }
.why-footnote { margin: 14px 0 0; color: #5c7280; font-size: .78rem; }
.proprietary { max-width: 780px; margin-top: 56px; }
.proprietary h3 { margin-bottom: 14px; font-family: var(--display); font-size: clamp(1.5rem, 2vw, 1.9rem); letter-spacing: -.02em; }
.proprietary p { max-width: 760px; font-size: 1.02rem; color: #33505e; }
.tech-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.tech-cards article {
  padding: 26px 24px;
  border: 1px solid rgba(17, 53, 64, .12);
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(255, 255, 255, .9), rgba(244, 250, 248, .82));
  box-shadow: var(--shadow-soft);
}
.tech-icon { width: 52px; height: 52px; margin-bottom: 16px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, var(--teal-700), #024150); }
.tech-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--aqua-light); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.tech-cards h4 { margin: 0 0 8px; font-size: 1.02rem; }
.tech-cards p { margin: 0; font-size: .84rem; line-height: 1.5; color: #38505d; }
.why-close { display: grid; justify-items: start; gap: 20px; margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(17, 53, 64, .14); }
.why-note { margin: 0; max-width: 700px; font-family: var(--display); font-size: clamp(1.3rem, 1.8vw, 1.65rem); line-height: 1.25; letter-spacing: -.015em; }

/* ---- Elevator pitch slideshow ---- */
.pitch-modal { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 22px; }
.pitch-modal[hidden] { display: none; }
.pitch-dialog {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  height: min(640px, calc(100dvh - 40px));
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(133, 233, 223, .3);
  border-radius: 26px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(70, 188, 184, .2), transparent 36%),
    radial-gradient(circle at 0 100%, rgba(240, 100, 82, .13), transparent 34%),
    linear-gradient(150deg, #073b4b, #032431 70%);
  box-shadow: 0 45px 100px rgba(0, 11, 16, .58);
}
.pitch-dialog::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 3px;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, var(--aqua), var(--coral), var(--gold));
}
.pitch-track { position: relative; overflow: hidden; cursor: pointer; }
.pitch-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: clamp(30px, 6vw, 72px);
  overflow-y: auto;
  visibility: hidden;
  /* Safety net: keep scrolling possible on short viewports, never show a scrollbar. */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pitch-slide::-webkit-scrollbar { display: none; }
.pitch-slide.is-active { visibility: visible; }
.pitch-kicker { margin: 0; color: var(--aqua-light); font: 700 .72rem/1.3 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.pitch-slide h3 { margin: 0; font-family: var(--display); font-size: clamp(1.9rem, 4.6vw, 3.1rem); line-height: 1; letter-spacing: -.03em; }
.pitch-slide > p { margin: 0; max-width: 640px; color: rgba(255, 255, 255, .88); font-size: clamp(.98rem, 1.3vw, 1.1rem); line-height: 1.6; }
.pitch-hint { color: rgba(255, 255, 255, .45) !important; font-size: .76rem !important; letter-spacing: .06em; }
.pitch-steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 11px; max-width: 620px; }
.pitch-steps li { counter-increment: step; position: relative; padding-left: 46px; font-size: clamp(.94rem, 1.25vw, 1.05rem); line-height: 1.5; color: rgba(255, 255, 255, .88); }
.pitch-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(153, 235, 223, .45);
  border-radius: 50%;
  color: var(--aqua-light);
  font: 700 .66rem/1 var(--mono);
}
.pitch-steps strong { color: white; }
.pitch-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; width: 100%; max-width: 620px; }
.pitch-stats > div { display: grid; gap: 4px; padding: 15px 16px; border: 1px solid rgba(142, 238, 226, .28); border-radius: 12px; background: rgba(2, 48, 55, .38); }
.pitch-stats strong { font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1; color: var(--aqua-light); }
.pitch-stats span { font-size: .72rem; color: rgba(255, 255, 255, .75); }
.pitch-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.pitch-controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px clamp(20px, 4vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(1, 20, 29, .45);
}
.pitch-arrow {
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, .06);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}
.pitch-arrow:hover:not(:disabled) { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); }
.pitch-arrow:disabled { opacity: .3; cursor: default; }
.pitch-dots { display: flex; gap: 9px; margin-inline: auto; }
.pitch-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.pitch-dots button.is-active { background: var(--coral); transform: scale(1.25); }
.pitch-counter { flex: none; color: rgba(255, 255, 255, .55); font: 700 .68rem/1 var(--mono); letter-spacing: .1em; }

/* ---- Try It Now modal ---- */
.tryit-dialog { width: min(620px, 100%); }
.tryit-grid { grid-template-columns: 1fr 1fr; }
.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(160, 231, 224, .22);
  border-radius: 10px;
  background: rgba(1, 19, 28, .4);
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  line-height: 1.5;
  cursor: pointer;
}
.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--coral);
  cursor: pointer;
}
.consent-check.is-invalid { border-color: var(--coral); }

@media (max-width: 980px) {
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .tech-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .why { padding: 70px 0 64px; }
  .why-stats { grid-template-columns: 1fr; }
  .pitch-modal { padding: 10px; }
  .pitch-dialog { height: min(620px, calc(100dvh - 20px)); border-radius: 20px; }
  .pitch-slide { align-content: start; gap: 12px; padding: 50px 22px 22px; }
  .pitch-slide h3 { font-size: clamp(1.5rem, 6.5vw, 2.1rem); line-height: 1.05; letter-spacing: -.02em; }
  /* Let headings wrap naturally on phones; desktop keeps the authored breaks. */
  .pitch-slide h3 br { display: none; }
  .pitch-kicker { font-size: .64rem; letter-spacing: .13em; }
  .pitch-slide > p { font-size: .9rem; line-height: 1.5; }
  .pitch-hint { font-size: .68rem !important; }
  .pitch-actions { gap: 10px; margin-top: 4px; }
  .pitch-steps { gap: 9px; }
  .pitch-steps li { padding-left: 40px; font-size: .88rem; line-height: 1.45; }
  .pitch-steps li::before { width: 28px; height: 28px; font-size: .6rem; }
  .pitch-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pitch-stats > div { gap: 3px; padding: 10px 12px; border-radius: 10px; }
  .pitch-stats strong { font-size: 1.25rem; }
  .pitch-stats span { font-size: .68rem; }
  .pitch-controls { gap: 12px; padding: 11px 16px; }
  .pitch-arrow { width: 38px; height: 38px; }
  .pitch-actions .button { width: auto; }
  .tryit-grid { grid-template-columns: 1fr; }
  .intro-skip { bottom: -58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal], .js [data-stagger] > *, .js [data-device-stage] { opacity: 1 !important; transform: none !important; }
  .intro-overlay { display: none; }
}

@supports not (color: color-mix(in srgb, white, black)) {
  .stage-icon { background: var(--stage); }
}

