:root {
  --bg: #07080b;
  --bg-deep: #030407;
  --surface: #0f1117;
  --surface-strong: #151820;
  --surface-soft: rgba(20, 22, 30, .72);
  --text: #f7f5f2;
  --text-soft: #c4c2c7;
  --muted: #8f919b;
  --line: rgba(255, 255, 255, .105);
  --line-strong: rgba(255, 255, 255, .2);
  --accent: #ff7f79;
  --accent-hot: #ef2d71;
  --accent-plum: #79319f;
  --accent-soft: rgba(255, 127, 121, .12);
  --header: rgba(7, 8, 11, .76);
  --shadow: 0 30px 80px rgba(0, 0, 0, .35);
  --radius: 22px;
  --radius-small: 14px;
  --shell: min(1240px, calc(100vw - 56px));
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

html[data-theme="light"] {
  --bg: #f4f2ee;
  --bg-deep: #e8e4de;
  --surface: #fdfcf9;
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 255, 255, .76);
  --text: #111218;
  --text-soft: #45464e;
  --muted: #6d6d75;
  --line: rgba(17, 18, 24, .12);
  --line-strong: rgba(17, 18, 24, .22);
  --accent-soft: rgba(219, 47, 103, .09);
  --header: rgba(244, 242, 238, .8);
  --shadow: 0 30px 80px rgba(34, 24, 30, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; transition: background-color .35s ease, color .35s ease; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { color: inherit; font: inherit; }
button { border: 0; cursor: pointer; }
::selection { background: var(--accent-hot); color: white; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 132px 0; position: relative; }
.surface-section { background: var(--surface); border-block: 1px solid var(--line); }
.noise { position: fixed; inset: 0; opacity: .025; pointer-events: none; z-index: 99; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.cursor-glow { position: fixed; width: 460px; height: 460px; left: 0; top: 0; z-index: 0; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(239,45,113,.11), transparent 68%); transform: translate3d(-50%, -50%, 0); opacity: 0; transition: opacity .3s; }
body:hover .cursor-glow { opacity: 1; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 200; padding: 12px 18px; background: var(--text); color: var(--bg); border-radius: 8px; }
.skip-link:focus { top: 18px; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 80; height: 88px; padding: 0 max(28px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; background: var(--header); border-bottom: 1px solid transparent; backdrop-filter: blur(20px) saturate(130%); transition: height .3s ease, border-color .3s ease, box-shadow .3s ease; }
.site-header.scrolled { height: 72px; border-color: var(--line); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand img { width: 46px; height: 40px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-family: var(--display); font-size: 15px; letter-spacing: .28em; }
.brand small { margin-top: 8px; color: var(--muted); font-size: 7px; letter-spacing: .14em; white-space: nowrap; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 25px; }
.primary-nav > a, .services-trigger > button { position: relative; padding: 12px 0; background: none; color: var(--text-soft); font-size: 13px; font-weight: 500; }
.primary-nav > a::after, .services-trigger > button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 1px; background: linear-gradient(90deg, var(--accent-hot), var(--accent)); transition: right .25s ease; }
.primary-nav > a:hover, .primary-nav > a[aria-current="page"], .services-trigger > button:hover { color: var(--text); }
.primary-nav > a:hover::after, .primary-nav > a[aria-current="page"]::after, .services-trigger > button:hover::after { right: 0; }
.services-trigger { position: relative; }
.services-trigger > button { display: flex; align-items: center; gap: 6px; }
.services-trigger > button span { font-size: 15px; transition: transform .25s; }
.services-trigger.open > button span { transform: rotate(180deg); }
.mega-menu { position: absolute; top: calc(100% + 15px); left: 50%; width: 510px; padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; background: color-mix(in srgb, var(--surface-strong) 94%, transparent); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(24px); transform: translate(-50%, -8px); opacity: 0; visibility: hidden; transition: .22s ease; }
.services-trigger.open .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu a { padding: 16px; border-radius: 12px; transition: background .2s, transform .2s; }
.mega-menu a:hover { background: var(--accent-soft); transform: translateY(-2px); }
.mega-menu a span { display: block; font-family: var(--display); font-size: 13px; font-weight: 600; }
.mega-menu a small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle { width: 42px; height: 42px; display: grid; place-items: center; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 50%; }
.theme-icon { width: 15px; height: 15px; border: 1.5px solid var(--text); border-radius: 50%; box-shadow: -5px -4px 0 -3px var(--text); transition: transform .4s; }
html[data-theme="light"] .theme-icon { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); transform: rotate(180deg); }
.menu-toggle { display: none; width: 44px; height: 44px; background: none; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 6px auto; background: var(--text); transition: .25s; }

.button { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; background: linear-gradient(120deg, var(--accent-hot), var(--accent)); color: white; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 600; box-shadow: 0 12px 35px rgba(239,45,113,.18); transition: transform .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(239,45,113,.28); }
.button svg, .text-link svg, .card-link svg, .price-tile a svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 12px; }
.button-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); box-shadow: none; }
.button-ghost:hover { background: var(--accent-soft); border-color: var(--accent); box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--text-soft); font-size: 13px; font-weight: 600; }
.text-link:hover { color: var(--accent); }
.button-row { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.center-action { margin-top: 48px; text-align: center; }

.hero { position: relative; min-height: 100svh; padding: 126px 0 52px; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 52vw; height: 52vw; left: -22vw; bottom: -34vw; border-radius: 50%; background: radial-gradient(circle, rgba(121,49,159,.14), transparent 68%); filter: blur(12px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr); align-items: center; gap: 76px; position: relative; z-index: 1; }
.hero-copy { padding-block: 50px; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: .22em; line-height: 1.3; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: linear-gradient(90deg, var(--accent-hot), var(--accent)); }
h1, h2, h3 { margin: 0; font-family: var(--display); line-height: 1.08; letter-spacing: -.035em; }
.hero h1 { max-width: 780px; margin-top: 25px; font-size: clamp(3.35rem, 6.25vw, 6.8rem); font-weight: 500; }
.hero h1 em { color: transparent; font-style: normal; background: linear-gradient(100deg, var(--text) 5%, var(--accent) 58%, var(--accent-hot)); background-clip: text; -webkit-background-clip: text; }
.hero-copy > p { max-width: 650px; margin: 28px 0 0; color: var(--text-soft); font-size: 18px; line-height: 1.75; }
.hero-badge { margin-top: 48px; display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 7px var(--accent-soft); }
.hero-visual { position: relative; min-height: min(72vh, 730px); overflow: hidden; border: 1px solid var(--line); border-radius: 240px 240px 28px 28px; background-image: linear-gradient(180deg, rgba(4,5,8,.02), rgba(4,5,8,.67)), var(--hero-image); background-size: cover; background-position: center; box-shadow: var(--shadow); isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(239,45,113,.15), transparent 35%, rgba(121,49,159,.15)); mix-blend-mode: screen; }
.hero-visual::after { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 -120px 120px rgba(0,0,0,.35); }
.hero-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; opacity: .68; }
.orbit { position: absolute; z-index: 4; border: 1px solid rgba(255,127,121,.45); border-radius: 50%; transform: rotate(-18deg); animation: orbitPulse 8s ease-in-out infinite; }
.orbit-one { width: 78%; height: 32%; right: -17%; top: 28%; }
.orbit-two { width: 54%; height: 24%; left: -16%; bottom: 18%; animation-delay: -3s; }
.visual-label { position: absolute; z-index: 5; left: 34px; bottom: 32px; display: flex; flex-direction: column; color: white; }
.visual-label span { font-family: var(--display); font-size: 11px; letter-spacing: .32em; }
.visual-label small { margin-top: 7px; color: rgba(255,255,255,.58); font-size: 8px; letter-spacing: .18em; }
.hero-line { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); }
.hero-line span { display: block; width: 26%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-hot), var(--accent)); animation: lineTravel 7s linear infinite; }
.hero-compact { min-height: 78svh; }
.hero-compact .hero-visual { min-height: min(58vh, 590px); }

.section-intro { margin-bottom: 58px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr); gap: 80px; align-items: end; }
.section-intro h2 { max-width: 780px; margin-top: 20px; font-size: clamp(2.5rem, 4.4vw, 5rem); font-weight: 500; }
.section-intro > p { margin: 0; color: var(--text-soft); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 410px; padding: 36px; overflow: hidden; display: flex; flex-direction: column; background: linear-gradient(140deg, var(--surface-strong), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius); transform-style: preserve-3d; transition: border-color .25s, box-shadow .25s; }
.service-card::before { content: ""; position: absolute; width: 280px; height: 280px; right: -110px; top: -130px; border-radius: 50%; background: radial-gradient(circle, var(--accent-soft), transparent 68%); transition: transform .5s; }
.service-card:hover { border-color: rgba(255,127,121,.38); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scale(1.35); }
.icon { width: 50px; height: 50px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(255,127,121,.18); border-radius: 15px; }
.icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-top: 52px; font-size: 28px; font-weight: 500; }
.service-card p { max-width: 530px; margin: 18px 0 30px; color: var(--text-soft); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { padding: 6px 10px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.card-link { margin-top: auto; padding-top: 35px; display: inline-flex; align-items: center; gap: 12px; color: var(--accent); font-size: 12px; font-weight: 600; }

.system-section { padding: 140px 0; background: linear-gradient(115deg, rgba(239,45,113,.08), transparent 40%), var(--bg-deep); border-block: 1px solid var(--line); }
.system-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: center; }
.system-copy h2 { margin-top: 22px; font-size: clamp(2.7rem, 4.5vw, 5rem); font-weight: 500; }
.system-copy p { margin: 26px 0 35px; color: var(--text-soft); }
.journey { position: relative; display: grid; gap: 0; }
.journey::before { content: ""; position: absolute; left: 23px; top: 24px; bottom: 24px; width: 1px; background: linear-gradient(var(--accent-hot), var(--accent), transparent); }
.journey > div { position: relative; min-height: 103px; padding: 10px 0 10px 82px; }
.journey > div::before { content: ""; position: absolute; left: 15px; top: 14px; width: 16px; height: 16px; border: 1px solid var(--accent); border-radius: 50%; background: var(--bg-deep); box-shadow: 0 0 0 8px var(--accent-soft); }
.journey span { font-family: var(--display); font-size: 21px; font-weight: 500; }
.journey p { margin: 5px 0 0; color: var(--muted); }
.feature-stage { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 660px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.stage-image, .story-visual { position: relative; min-height: 100%; background-image: linear-gradient(180deg, transparent, rgba(3,4,7,.84)), var(--stage-image); background-size: cover; background-position: center; }
.stage-image::before, .story-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(239,45,113,.16), transparent 40%); }
.stage-image span, .stage-image strong { position: absolute; z-index: 1; left: 35px; }
.stage-image span { bottom: 78px; color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.stage-image strong { bottom: 37px; color: white; font-family: var(--display); font-size: 24px; }
.feature-list { padding: 42px; display: grid; align-content: center; }
.feature-list > div { padding: 28px 0; border-bottom: 1px solid var(--line); }
.feature-list > div:last-child { border-bottom: 0; }
.feature-list h3 { font-size: 20px; font-weight: 500; }
.feature-list p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.metrics-section { padding: 80px 0; border-block: 1px solid var(--line); background: var(--surface); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-grid > div { min-height: 150px; padding: 20px 30px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.metric-grid > div:last-child { border: 0; }
.metric-grid strong { color: var(--accent); font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; line-height: 1; }
.metric-grid span { margin-top: 13px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.quote-viewport { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.quote-track { width: max-content; display: flex; gap: 18px; animation: quoteScroll 46s linear infinite; }
.quote-track:hover { animation-play-state: paused; }
.quote-card { width: 410px; min-height: 255px; margin: 0; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.quote-card blockquote { margin: 0; font-family: var(--display); font-size: 20px; line-height: 1.55; }
.quote-card figcaption { color: var(--muted); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

.package-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; }
.package-card { position: relative; padding: 42px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.package-card.featured { background: linear-gradient(145deg, var(--surface-strong), rgba(239,45,113,.09)); border-color: rgba(255,127,121,.35); box-shadow: var(--shadow); }
.package-label { color: var(--accent); font-size: 10px; letter-spacing: .2em; }
.package-card h3 { margin-top: 18px; font-size: 32px; font-weight: 500; }
.price { margin-top: 33px; display: flex; align-items: end; gap: 12px; }
.price strong { font-family: var(--display); font-size: 48px; font-weight: 500; line-height: 1; }
.price span { padding-bottom: 6px; color: var(--muted); font-size: 12px; }
.price-sub { margin-top: 10px; color: var(--text-soft); }
.check-list { margin: 32px 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: var(--text-soft); font-size: 14px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 11px; height: 1px; background: var(--accent); }
.compact-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.compact-card-grid article { min-height: 180px; padding: 25px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-small); }
.compact-card-grid span { color: var(--accent); font-size: 9px; letter-spacing: .15em; }
.compact-card-grid h3 { margin-top: 42px; font-size: 20px; font-weight: 500; }
.compact-card-grid p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.capability-grid article { min-height: 245px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-small); transition: transform .25s, border-color .25s; }
.surface-section .capability-grid article { background: var(--bg); }
.capability-grid article:hover { transform: translateY(-6px); border-color: rgba(255,127,121,.35); }
.dot { width: 8px; height: 8px; display: block; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 8px var(--accent-soft); }
.capability-grid h3 { margin-top: 42px; font-size: 19px; font-weight: 500; }
.capability-grid p { margin: 13px 0 0; color: var(--muted); font-size: 13px; }
.faq-list { max-width: 920px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 92px; padding: 24px 54px 24px 0; position: relative; display: flex; align-items: center; font-family: var(--display); font-size: 19px; font-weight: 500; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span, .faq-list summary span::after { position: absolute; right: 2px; width: 18px; height: 1px; background: var(--accent); content: ""; transition: transform .25s; }
.faq-list summary span::after { right: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 760px; margin: -8px 0 30px; color: var(--text-soft); }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.tier-card { padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.surface-section .tier-card { background: var(--bg); }
.tier-card.featured { margin-top: -14px; border-color: rgba(255,127,121,.42); box-shadow: var(--shadow); }
.tier-heading > span { color: var(--accent); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.tier-heading h3 { margin-top: 12px; font-size: 38px; font-weight: 500; }
.duration-prices { margin-top: 32px; border-top: 1px solid var(--line); }
.duration-prices div { padding: 13px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.duration-prices span { color: var(--muted); font-size: 13px; }
.duration-prices strong { font-family: var(--display); font-size: 15px; }
.pricing-notes { margin-top: 30px; padding: 26px 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; background: var(--accent-soft); border: 1px solid rgba(255,127,121,.18); border-radius: var(--radius-small); }
.pricing-notes p { margin: 0; color: var(--text-soft); font-size: 12px; }
.process-line { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-line div { min-height: 225px; padding: 30px; border-right: 1px solid var(--line); background: var(--surface); }
.process-line div:last-child { border: 0; }
.process-line span { color: var(--accent); font-family: var(--display); font-size: 20px; }
.process-line p { margin: 70px 0 0; color: var(--muted); font-size: 13px; }
.creative-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.creative-grid article { min-height: 350px; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.creative-grid h3 { margin-top: 64px; font-size: 21px; font-weight: 500; }
.creative-grid p { margin: 15px 0 0; color: var(--muted); font-size: 14px; }
.brand-package-section { background: linear-gradient(105deg, rgba(121,49,159,.12), transparent 45%), var(--bg-deep); border-block: 1px solid var(--line); }
.brand-package { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.brand-package h2 { margin-top: 20px; font-size: clamp(2.6rem, 4vw, 4.7rem); font-weight: 500; }
.brand-package p { color: var(--text-soft); }
.brand-package .small-copy { color: var(--muted); font-size: 12px; }
.touchpoint-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); list-style: none; border-top: 1px solid var(--line); }
.touchpoint-list li { padding: 18px 4px; border-bottom: 1px solid var(--line); color: var(--text-soft); font-size: 14px; }
.one-time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.price-tile { min-height: 260px; padding: 28px; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-small); transition: transform .25s, border-color .25s; }
.price-tile:hover { transform: translateY(-5px); border-color: rgba(255,127,121,.34); }
.price-tile > span { color: var(--accent); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.price-tile h3 { margin-top: 30px; font-size: 21px; font-weight: 500; }
.price-tile p { margin: 13px 0 28px; color: var(--muted); font-size: 13px; }
.price-tile a { margin-top: auto; display: flex; align-items: center; gap: 10px; color: var(--text-soft); font-size: 11px; font-weight: 600; }
.price-tile a:hover { color: var(--accent); }
.price-index { position: sticky; top: 82px; z-index: 20; margin-top: -26px; padding: 10px; display: flex; justify-content: center; gap: 8px; background: var(--header); border: 1px solid var(--line); border-radius: 999px; backdrop-filter: blur(18px); }
.price-index a { padding: 9px 18px; border-radius: 999px; color: var(--text-soft); font-size: 12px; }
.price-index a:hover { background: var(--accent-soft); color: var(--text); }
.addon-strip { margin-top: 24px; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: var(--radius-small); overflow: hidden; }
.addon-strip div { padding: 22px; border-right: 1px solid var(--line); }
.addon-strip div:last-child { border: 0; }
.addon-strip span, .addon-strip strong { display: block; }
.addon-strip span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.addon-strip strong { margin-top: 16px; font-family: var(--display); font-size: 14px; font-weight: 500; }

.about-manifesto { display: grid; grid-template-columns: .75fr 1.25fr; gap: 120px; }
.about-manifesto h2, .leader-intro h2 { margin-top: 20px; font-size: clamp(2.8rem, 4.6vw, 5rem); font-weight: 500; }
.about-manifesto p { margin: 0 0 24px; color: var(--text-soft); font-size: 18px; }
.metric-cards, .principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.metric-cards article, .principles-grid article { min-height: 240px; padding: 30px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-small); }
.principles-grid { grid-template-columns: repeat(3, 1fr); }
.principles-grid article { background: var(--surface); min-height: 320px; }
.metric-cards h3, .principles-grid h3 { margin-top: 50px; font-size: 21px; font-weight: 500; }
.metric-cards p, .principles-grid p { color: var(--muted); font-size: 13px; }
.principles-grid > article > span { color: var(--accent); font-size: 9px; letter-spacing: .16em; }
.leader-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; }
.experience-points { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.experience-points div { min-height: 180px; padding: 24px; border-right: 1px solid var(--line); }
.experience-points div:last-child { border: 0; }
.experience-points strong, .experience-points span { display: block; }
.experience-points strong { color: var(--accent); font-family: var(--display); font-size: 25px; font-weight: 500; }
.experience-points span { margin-top: 42px; color: var(--muted); font-size: 12px; }
.journey-section { background: var(--surface); border-block: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: stretch; }
.story-visual { min-height: 720px; border-radius: var(--radius); overflow: hidden; }
.story-visual span { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 30px; color: white; font-family: var(--display); font-size: 20px; }
.story-grid > div:last-child { padding: 40px 0; }
.story-grid h2 { margin-top: 20px; font-size: 52px; font-weight: 500; }
.story-grid p { color: var(--text-soft); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-details h2 { margin: 20px 0 45px; font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 500; }
.contact-method { padding: 18px 0; display: flex; align-items: center; gap: 18px; border-top: 1px solid var(--line); }
.contact-method .icon { width: 42px; height: 42px; border-radius: 12px; }
.contact-method .icon svg { width: 20px; }
.contact-method div { display: flex; flex-direction: column; }
.contact-method small, .office-hours small { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-method strong, .office-hours strong { margin-top: 4px; font-family: var(--display); font-size: 16px; font-weight: 500; }
.office-hours { padding: 22px 0; display: flex; flex-direction: column; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.social-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.social-row a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--text-soft); font-size: 11px; }
.social-row a:hover { border-color: var(--accent); color: var(--accent); }
.contact-form { padding: 46px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 34px; }
.form-heading h2 { margin-top: 15px; font-size: 32px; font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { margin-bottom: 18px; display: block; }
.contact-form label > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: var(--bg); padding: 14px 16px; outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.contact-form textarea { resize: vertical; min-height: 145px; }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 24px; margin: 16px 0 0; color: var(--text-soft); font-size: 13px; }
.form-status.success { color: #63cf9b; }
.form-status.error { color: var(--accent); }

.final-cta { position: relative; padding: 120px 0; overflow: hidden; background: linear-gradient(110deg, rgba(239,45,113,.14), rgba(121,49,159,.08) 45%, transparent), var(--bg-deep); border-top: 1px solid var(--line); }
.final-cta::after { content: "A"; position: absolute; right: -2vw; top: 50%; color: transparent; font-family: var(--display); font-size: 36vw; font-weight: 700; line-height: .7; -webkit-text-stroke: 1px rgba(255,127,121,.08); transform: translateY(-50%); }
.final-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.final-cta h2 { margin-top: 22px; font-size: clamp(3rem, 5.6vw, 6.4rem); font-weight: 500; }
.final-cta p { max-width: 700px; color: var(--text-soft); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }

.site-footer { border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-top { padding: 80px 0 65px; display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 65px; }
.footer-brand p { max-width: 390px; margin: 24px 0; color: var(--text-soft); font-size: 14px; }
.license-note { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-top h2 { margin-bottom: 22px; color: var(--muted); font-family: var(--body); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.footer-top > div:not(.footer-brand) a { margin: 11px 0; display: block; color: var(--text-soft); font-size: 13px; }
.footer-top > div:not(.footer-brand) a:hover { color: var(--accent); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .06em; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
[data-reveal].revealed { opacity: 1; transform: none; }

@keyframes orbitPulse { 0%,100% { transform: rotate(-18deg) scale(1); opacity: .48; } 50% { transform: rotate(-12deg) scale(1.06); opacity: .9; } }
@keyframes lineTravel { from { transform: translateX(-100%); } to { transform: translateX(485%); } }
@keyframes quoteScroll { to { transform: translateX(calc(-50% - 9px)); } }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 960px); }
  .site-header { padding-inline: 20px; }
  .brand small { display: none; }
  .primary-nav { gap: 17px; }
  .header-actions .button { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(3.1rem, 6vw, 5rem); }
  .capability-grid, .creative-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-card-grid { grid-template-columns: repeat(3, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid > div:nth-child(2) { border-right: 0; }
  .metric-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-line { grid-template-columns: repeat(3, 1fr); }
  .process-line div:nth-child(3) { border-right: 0; }
  .process-line div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .addon-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-top > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding: 92px 0; }
  .site-header { height: 72px; grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; order: 3; }
  .header-actions { order: 2; }
  .primary-nav { position: fixed; inset: 72px 0 0; padding: 24px; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 5px; overflow-y: auto; background: var(--bg); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s; }
  .primary-nav.open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav > a, .services-trigger > button { width: 100%; padding: 18px 4px; text-align: left; font-size: 20px; font-family: var(--display); border-bottom: 1px solid var(--line); }
  .services-trigger > button { justify-content: space-between; }
  .mega-menu { position: static; width: 100%; max-height: 0; padding: 0; display: grid; grid-template-columns: 1fr; overflow: hidden; border: 0; box-shadow: none; background: transparent; transform: none; }
  .services-trigger.open .mega-menu { max-height: 700px; padding: 10px 0; transform: none; }
  .mega-menu a { border-bottom: 1px solid var(--line); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 112px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { padding-block: 25px 15px; }
  .hero h1 { font-size: clamp(3rem, 13.5vw, 5.4rem); }
  .hero-copy > p { font-size: 16px; }
  .hero-visual { min-height: 580px; border-radius: 180px 180px 20px 20px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .service-grid, .package-grid, .tier-grid, .feature-stage, .system-grid, .brand-package, .about-manifesto, .leader-intro, .story-grid, .contact-layout, .final-cta-inner { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .system-grid, .brand-package, .story-grid, .contact-layout { gap: 55px; }
  .tier-card.featured { margin: 0; }
  .pricing-notes { grid-template-columns: 1fr; }
  .feature-stage { min-height: 0; }
  .stage-image { min-height: 520px; }
  .one-time-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-cards, .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-points { grid-template-columns: 1fr; }
  .experience-points div { border-right: 0; border-bottom: 1px solid var(--line); }
  .experience-points div:last-child { border: 0; }
  .story-visual { min-height: 560px; }
  .price-index { top: 76px; width: calc(100% - 32px); overflow-x: auto; justify-content: flex-start; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  .brand strong { font-size: 13px; }
  .brand img { width: 40px; height: 35px; }
  .theme-toggle { width: 38px; height: 38px; }
  .header-actions { gap: 3px; }
  .hero { padding-top: 96px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  .hero-visual { min-height: 480px; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 19px; }
  .service-grid, .capability-grid, .compact-card-grid, .creative-grid, .one-time-grid, .metric-cards, .principles-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; padding: 28px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric-grid > div:last-child { border-bottom: 0; }
  .feature-list { padding: 26px; }
  .package-card, .tier-card, .contact-form { padding: 28px; }
  .price strong { font-size: 39px; }
  .process-line, .addon-strip { grid-template-columns: 1fr; }
  .process-line div, .addon-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-line div { min-height: 170px; }
  .process-line p { margin-top: 38px; }
  .touchpoint-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-card { width: 320px; }
  .final-cta { padding: 90px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand, .footer-top > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}

/* Architectural editorial redesign */
:root {
  --bg: #080a0f;
  --bg-deep: #05070a;
  --surface: #0d1117;
  --surface-strong: #121721;
  --surface-soft: rgba(16, 21, 29, .9);
  --text: #f8f8f6;
  --text-soft: #c7cbd1;
  --muted: #818894;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .25);
  --accent: #ff7f79;
  --accent-hot: #f13e72;
  --accent-plum: #7341a4;
  --accent-soft: rgba(241, 62, 114, .1);
  --header: rgba(8, 10, 15, .92);
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
  --radius: 10px;
  --radius-small: 7px;
}

html[data-theme="light"] {
  --bg: #f3f2ef;
  --bg-deep: #e9e7e2;
  --surface: #faf9f6;
  --surface-strong: #ffffff;
  --surface-soft: rgba(250, 249, 246, .94);
  --text: #11141a;
  --text-soft: #414650;
  --muted: #6d727c;
  --line: rgba(17, 20, 26, .14);
  --line-strong: rgba(17, 20, 26, .28);
  --accent-soft: rgba(219, 47, 103, .08);
  --header: rgba(243, 242, 239, .94);
  --shadow: 0 24px 60px rgba(40, 35, 42, .1);
}

body { background: var(--bg); transition: none; }
.noise, .cursor-glow { display: none !important; }
.section { padding: 112px 0; }

.site-header {
  height: 78px;
  grid-template-columns: minmax(245px, 1fr) auto minmax(245px, 1fr);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.site-header.scrolled { height: 68px; }
.site-header .brand img { width: 43px; height: 37px; }
.site-header .brand strong { font-size: 14px; letter-spacing: .3em; }
.site-header .brand small { margin-top: 7px; font-size: 6.5px; letter-spacing: .15em; }
.primary-nav { gap: 30px; }
.primary-nav > a, .services-trigger > button { font-size: 12px; letter-spacing: .02em; }
.header-actions { justify-self: end; }
.theme-toggle { width: 38px; height: 38px; border-radius: 7px; background: transparent; }
.button { min-height: 48px; padding: 0 21px; border-radius: 7px; box-shadow: none; letter-spacing: .02em; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(241, 62, 114, .2); }
.button-ghost { background: transparent; }
.button-small { min-height: 40px; }
.mega-menu { width: 560px; padding: 8px; top: calc(100% + 13px); border-radius: 8px; }
.mega-menu a { padding: 15px; border-radius: 5px; }

.hero {
  min-height: 92svh;
  padding: 112px 0 34px;
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), var(--line) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(50% - 1px), var(--line) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), var(--line) 75%, transparent calc(75% + 1px));
}
.hero::before {
  width: 460px;
  height: 460px;
  left: -260px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(241, 62, 114, .13), transparent 68%);
}
.hero-grid { grid-template-columns: minmax(0, .86fr) minmax(540px, 1.14fr); gap: 46px; }
.hero-copy { padding-block: 34px; }
.eyebrow { font-size: 9px; letter-spacing: .24em; }
.eyebrow::before { width: 28px; }
.hero h1 {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(3.5rem, 5vw, 5.15rem);
  line-height: 1.01;
  letter-spacing: -.055em;
}
.hero-copy > p { max-width: 590px; margin-top: 25px; font-size: 16px; line-height: 1.72; }
.button-row { margin-top: 31px; }
.hero-badge { margin-top: 35px; }
.hero-visual {
  min-height: min(73vh, 690px);
  border-radius: 8px;
  clip-path: polygon(0 8%, 8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  background-position: center;
  box-shadow: none;
}
.hero-visual::before { background: linear-gradient(125deg, rgba(241,62,114,.1), transparent 35%, rgba(115,65,164,.1)); }
.hero-visual::after { box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), inset 0 -150px 140px rgba(0,0,0,.5); }
.orbit { border-radius: 0; border-color: rgba(255,127,121,.32); animation: circuitPulse 7s ease-in-out infinite; }
.orbit-one { width: 62%; height: 44%; right: 8%; top: 18%; border-left: 0; border-bottom: 0; }
.orbit-two { width: 40%; height: 35%; left: 12%; bottom: 10%; border-right: 0; border-top: 0; }
.visual-label { left: 25px; bottom: 22px; padding-left: 13px; border-left: 2px solid var(--accent); }
.hero-line span { width: 150px; }
.hero-compact { min-height: 78svh; }

.section-intro { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .6fr); gap: 70px; margin-bottom: 48px; }
.section-intro h2 { max-width: 760px; font-size: clamp(2.45rem, 3.7vw, 4.25rem); line-height: 1.06; }
.section-intro > p { font-size: 15px; }

.service-grid { grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card {
  min-height: 440px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}
.service-card::before { display: none; }
.service-card::after { content: ""; position: absolute; left: 0; top: 0; width: 2px; height: 0; background: linear-gradient(var(--accent-hot), var(--accent)); transition: height .4s ease; }
.service-card:hover { border: 0; box-shadow: none; background: var(--surface-strong); }
.service-card:hover::after { height: 100%; }
.icon { width: 43px; height: 43px; border-radius: 5px; }
.service-card h3 { margin-top: 62px; font-size: 23px; line-height: 1.2; }
.service-card p { font-size: 13px; }
.tag-row span { border-radius: 4px; font-size: 9px; }

.system-section { padding: 112px 0; background: var(--bg-deep); }
.system-grid { grid-template-columns: 1fr; gap: 68px; }
.system-copy { display: grid; grid-template-columns: 1.05fr .75fr; gap: 80px; align-items: end; }
.system-copy .eyebrow, .system-copy h2 { grid-column: 1; }
.system-copy h2 { font-size: clamp(2.7rem, 4.4vw, 4.8rem); }
.system-copy p, .system-copy .button { grid-column: 2; }
.system-copy p { grid-row: 1 / span 2; margin: 0; align-self: end; }
.system-copy .button { justify-self: start; margin-top: 22px; }
.journey { grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.journey::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; background: linear-gradient(90deg, var(--accent-hot), var(--accent), transparent); }
.journey > div { min-height: 190px; padding: 35px 24px 20px 0; }
.journey > div::before { left: 0; top: -7px; width: 12px; height: 12px; background: var(--bg-deep); box-shadow: 0 0 0 6px var(--accent-soft); }
.journey span { font-size: 18px; }
.journey p { padding-right: 15px; font-size: 12px; }

.feature-stage { min-height: 600px; border-radius: 8px; background: var(--surface); }
.stage-image { clip-path: polygon(0 0, 92% 0, 100% 9%, 100% 100%, 0 100%); }
.feature-list > div { padding: 25px 0; }
.metrics-section { padding: 66px 0; }
.metric-grid strong { font-size: clamp(2.6rem, 4.4vw, 4.3rem); }

.package-card, .tier-card, .price-tile, .capability-grid article, .creative-grid article, .metric-cards article, .principles-grid article, .contact-form {
  border-radius: 7px;
  box-shadow: none;
}
.package-card.featured, .tier-card.featured { box-shadow: none; }
.compact-card-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.compact-card-grid article { border: 0; border-radius: 0; }
.capability-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.capability-grid article { min-height: 230px; border: 0; border-radius: 0; }
.capability-grid article:hover { transform: none; background: var(--surface-strong); }
.tier-grid { gap: 1px; padding: 1px; background: var(--line); }
.tier-card { border: 0; border-radius: 0; }
.tier-card.featured { margin-top: 0; }
.pricing-notes { border-radius: 6px; }
.process-line { border-radius: 7px; }
.creative-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.creative-grid article { border: 0; border-radius: 0; }
.one-time-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.price-tile { border: 0; border-radius: 0; }
.price-tile:hover { transform: none; background: var(--surface-strong); }
.quote-card { border-radius: 7px; }
.faq-list summary { min-height: 82px; }
.price-index { border-radius: 7px; }
.price-index a { border-radius: 4px; }
.brand-package-section { background: linear-gradient(90deg, rgba(115,65,164,.09), transparent 50%), var(--bg-deep); }
.story-visual { border-radius: 7px; }
.contact-method .icon, .contact-form input, .contact-form textarea, .social-row a { border-radius: 5px; }

.final-cta { padding: 105px 0; background: linear-gradient(90deg, rgba(241,62,114,.09), transparent 45%), var(--bg-deep); }
.final-cta::after { font-size: 28vw; }
.final-cta h2 { max-width: 740px; font-size: clamp(2.9rem, 5vw, 5.4rem); }
.footer-top { padding-top: 68px; }

[data-reveal] { opacity: 1; transform: translateY(13px); transition: transform .7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].revealed { opacity: 1; transform: none; }

@keyframes circuitPulse {
  0%, 100% { opacity: .35; transform: translate3d(0,0,0); }
  50% { opacity: .8; transform: translate3d(8px,-5px,0); }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .system-copy { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .section { padding: 88px 0; }
  .site-header { height: 70px; grid-template-columns: 1fr auto auto; }
  .primary-nav { inset: 70px 0 auto; width: 100%; height: calc(100dvh - 70px); min-height: calc(100svh - 70px); align-self: stretch; z-index: 90; }
  .hero { padding-top: 92px; background: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 12vw, 4.7rem); }
  .hero-visual { min-height: 560px; clip-path: polygon(0 6%, 6% 0, 100% 0, 100% 94%, 94% 100%, 0 100%); }
  .section-intro { grid-template-columns: 1fr; }
  .system-copy { grid-template-columns: 1fr; gap: 20px; }
  .system-copy .eyebrow, .system-copy h2, .system-copy p, .system-copy .button { grid-column: 1; grid-row: auto; }
  .journey { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line); }
  .journey::before { left: 0; top: 0; bottom: 0; width: 1px; height: auto; background: linear-gradient(var(--accent-hot), var(--accent), transparent); }
  .journey > div { min-height: 105px; padding: 4px 0 25px 40px; }
  .journey > div::before { left: -7px; top: 4px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  .hero-visual { min-height: 460px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .final-cta { padding: 82px 0; }
}
