@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #1b1735;
  --ink-soft: #6d6886;
  --paper: #f8f7fc;
  --paper-deep: #f0eef8;
  --violet: #5d51de;
  --violet-dark: #171330;
  --coral: #ff686d;
  --peach: #ffac88;
  --line: rgba(33, 26, 78, .12);
  --display: 'Space Grotesk', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --mono: 'DM Mono', 'SFMono-Regular', Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  content: '';
  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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button { border: 0; font: inherit; cursor: pointer; }
.site-shell { overflow: hidden; }
.page-width { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }
.section-pad { padding: 132px 0; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px max(32px, calc((100vw - 1160px) / 2));
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.is-scrolled { padding-top: 16px; padding-bottom: 16px; background: rgba(248, 247, 252, .84); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { display: grid; width: 35px; height: 35px; place-items: center; overflow: hidden; border-radius: 11px; box-shadow: 0 7px 16px rgba(66, 52, 177, .23); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: -.03em; }
.brand-name span { color: var(--ink-soft); font-weight: 500; }
.main-nav { display: flex; gap: 34px; margin-left: auto; margin-right: 42px; color: var(--ink-soft); font-size: 13px; }
.main-nav a, .header-cta, .text-link, .footer-meta a { transition: color .2s ease, opacity .2s ease; }
.main-nav a:hover, .footer-meta a:hover { color: var(--coral); }
.header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border: 1px solid rgba(93, 81, 222, .22); border-radius: 999px; color: var(--violet-dark); font-size: 12px; font-weight: 600; }
.header-cta:hover { background: var(--violet-dark); color: #fff; }
.nav-toggle { display: none; width: 42px; height: 42px; margin-left: auto; padding: 10px; background: transparent; }
.nav-toggle span { display: block; width: 20px; height: 1px; margin: 5px 0; background: var(--ink); }

.hero { position: relative; min-height: 820px; padding-top: 184px; padding-bottom: 35px; overflow: hidden; background: var(--paper); }
.hero::before { position: absolute; top: -240px; right: -180px; width: 720px; height: 720px; border-radius: 50%; content: ''; background: radial-gradient(circle, rgba(255, 172, 136, .22), transparent 68%); filter: blur(4px); }
.hero-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 40px; min-height: 570px; }
.hero-copy { position: relative; z-index: 2; }
.hero .eyebrow { color: #8d87a6; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0; color: rgba(255, 255, 255, .64); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.eyebrow-dark { color: #8d87a6; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(255, 104, 109, .12); }
.hero h1 { max-width: 590px; margin: 28px 0 24px; color: var(--violet-dark); font-size: clamp(68px, 8.1vw, 116px); font-weight: 600; letter-spacing: -.09em; line-height: .88; }
h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero-intro { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 50px; padding: 0 21px; border-radius: 999px; font-size: 13px; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--violet-dark); color: #fff; box-shadow: 0 14px 28px rgba(23, 19, 48, .16); }
.button-primary:hover { background: var(--violet); box-shadow: 0 18px 34px rgba(93, 81, 222, .25); }
.button-light { background: #fff; color: var(--violet-dark); box-shadow: 0 13px 24px rgba(9, 5, 39, .16); }
.button-light:hover { box-shadow: 0 17px 30px rgba(9, 5, 39, .25); }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: var(--ink-soft); font-size: 12px; font-weight: 600; }
.text-link:hover { color: var(--coral); }
.text-link span { color: var(--coral); font-size: 17px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 52px; color: #a09bb7; font-family: var(--mono); font-size: 10px; }
.note-check { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: #e3f7ee; color: #2baf7a; font-family: var(--display); font-size: 11px; }

.hero-art { position: relative; height: 590px; perspective: 1000px; transform-style: preserve-3d; }
.art-sun { position: absolute; top: 84px; right: 56px; width: 300px; height: 300px; border-radius: 50%; background: linear-gradient(145deg, #ffb594, #ff6371 55%, #6153df); filter: blur(1px); box-shadow: 0 0 80px rgba(255, 104, 109, .23); }
.art-ring { position: absolute; border: 1px solid rgba(93, 81, 222, .18); border-radius: 50%; transform: rotate(-24deg); }
.art-ring-one { top: 22px; right: 2px; width: 570px; height: 395px; }
.art-ring-two { top: 115px; right: 85px; width: 380px; height: 535px; border-color: rgba(255, 104, 109, .32); transform: rotate(32deg); }
.art-orbit { position: absolute; z-index: 2; width: 12px; height: 12px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 8px rgba(93, 81, 222, .1); }
.orbit-one { top: 80px; right: 145px; }
.orbit-two { right: 36px; bottom: 100px; width: 8px; height: 8px; background: var(--coral); box-shadow: 0 0 0 7px rgba(255, 104, 109, .12); }
.media-stack { position: absolute; z-index: 3; top: 93px; right: 68px; width: min(370px, 72%); transform: rotate(7deg); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.hero-art:hover .media-stack { transform: rotate(2deg) translate3d(-3px, -8px, 0); }
.media-card, .media-back { aspect-ratio: .76; border-radius: 24px; }
.media-card { position: relative; z-index: 3; padding: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .67); box-shadow: 0 32px 60px rgba(38, 25, 108, .22); backdrop-filter: blur(10px); }
.media-back { position: absolute; inset: 9px; background: #ffb69d; box-shadow: 0 28px 45px rgba(38, 25, 108, .13); }
.media-back-one { z-index: 1; transform: rotate(10deg) translate(24px, 16px); background: linear-gradient(135deg, #ff886e, #765de0); }
.media-back-two { z-index: 0; transform: rotate(17deg) translate(38px, 38px); background: linear-gradient(135deg, #665be1, #f5a18e); }
.media-topline, .media-bottomline { display: flex; justify-content: space-between; color: #78708d; font-family: var(--mono); font-size: 8px; letter-spacing: .04em; }
.media-scene { position: relative; height: calc(100% - 42px); min-height: 360px; margin: 13px 0 10px; overflow: hidden; border-radius: 15px; background: linear-gradient(155deg, #e8988c 0%, #d87996 34%, #5548bf 100%); }
.scene-glow { position: absolute; top: 7%; right: 6%; width: 56%; height: 42%; border-radius: 50%; background: radial-gradient(circle, rgba(255, 222, 182, .94), rgba(255, 179, 155, .15) 68%, transparent 70%); filter: blur(2px); }
.scene-moon { position: absolute; top: 18%; right: 22%; width: 85px; height: 85px; border-radius: 50%; background: #ffe7c4; box-shadow: 0 0 32px rgba(255, 224, 182, .74); }
.scene-horizon { position: absolute; right: -10%; bottom: 0; left: -10%; height: 47%; background: linear-gradient(175deg, #25205d, #181638); clip-path: polygon(0 47%, 17% 36%, 28% 52%, 43% 21%, 60% 42%, 73% 30%, 100% 48%, 100% 100%, 0 100%); }
.scene-ridge { position: absolute; bottom: 0; width: 130%; height: 43%; background: #19163d; clip-path: polygon(0 59%, 12% 41%, 28% 52%, 44% 23%, 58% 53%, 71% 44%, 86% 60%, 100% 39%, 100% 100%, 0 100%); }
.ridge-one { left: -15%; opacity: .66; transform: translateY(-34px); }
.ridge-two { right: -12%; opacity: .95; transform: translateY(21px) scaleX(-1); }
.scene-star { position: absolute; color: #fff0cf; font-size: 12px; }
.star-one { top: 23%; left: 17%; }.star-two { top: 37%; left: 38%; opacity: .6; font-size: 8px; }
.scene-caption { position: absolute; bottom: 30px; left: 24px; color: rgba(255, 244, 231, .78); font-family: var(--mono); font-size: 9px; letter-spacing: .16em; line-height: 1.7; }
.scene-caption strong { color: #fff; font-size: 14px; letter-spacing: .05em; }
.live-chip { display: inline-flex; align-items: center; gap: 4px; color: var(--coral); }
.live-chip i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }
.float-tag { position: absolute; z-index: 5; padding: 11px 14px; border: 1px solid rgba(255, 255, 255, .55); border-radius: 999px; background: rgba(255, 255, 255, .6); box-shadow: 0 13px 25px rgba(44, 31, 122, .12); color: var(--violet-dark); backdrop-filter: blur(10px); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; white-space: nowrap; }
.tag-live { top: 143px; left: 8px; }.tag-clean { top: 350px; right: -4px; transform: rotate(-7deg); }.tag-format { right: 10px; bottom: 64px; transform: rotate(5deg); }
.pulse-dot { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255, 104, 109, .15); }
.art-caption { position: absolute; bottom: 40px; left: 30px; display: flex; gap: 12px; color: #807a98; font-family: var(--mono); font-size: 9px; line-height: 1.7; }.art-caption span:first-child { color: var(--coral); }
.hero-rail { display: flex; align-items: center; gap: 20px; color: #aca7be; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }.hero-rail i { width: 3px; height: 3px; border-radius: 50%; background: var(--coral); }.rail-side { margin-left: auto; color: #9c96b3; }.rail-side b { margin-left: 10px; color: var(--coral); font-size: 14px; }

.intro { background: var(--paper-deep); }
.section-heading { display: grid; grid-template-columns: 1fr 1.3fr 1fr; align-items: end; gap: 34px; }.section-heading .eyebrow { align-self: start; padding-top: 15px; }.section-heading h2, .promise-copy h2 { margin: 0; color: var(--violet-dark); font-size: clamp(40px, 5vw, 68px); font-weight: 600; letter-spacing: -.075em; line-height: .95; }.section-heading h2 span, .promise-copy h2 span { color: var(--violet); }.section-heading > p:last-child { max-width: 230px; margin: 0 0 5px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 16px; margin-top: 75px; }.feature-card { position: relative; min-height: 440px; padding: 28px; overflow: hidden; border-radius: 22px; }.feature-card-large { background: #fff; }.feature-card-coral { background: linear-gradient(145deg, #ff766e, #f6a17d); color: #fff; }.feature-card-dark { background: var(--violet-dark); color: #fff; }.feature-number { position: relative; z-index: 2; color: rgba(71, 63, 120, .46); font-family: var(--mono); font-size: 10px; }.feature-card-coral .feature-number, .feature-card-dark .feature-number { color: rgba(255,255,255,.56); }.feature-content { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; }.feature-content h3 { max-width: 250px; margin: 0 0 12px; font-size: 24px; font-weight: 600; letter-spacing: -.05em; line-height: 1.1; }.feature-content p { max-width: 285px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.75; }.feature-card-coral .feature-content p, .feature-card-dark .feature-content p { color: rgba(255,255,255,.75); }.feature-meta { display: flex; justify-content: space-between; margin-top: 22px; color: #aaa4bd; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }.feature-card-coral .feature-meta { color: rgba(255,255,255,.64); }.feature-card-dark .feature-meta { color: #9f99ba; }.feature-meta b { color: var(--coral); font-family: var(--display); font-size: 14px; }.feature-card-coral .feature-meta b { color: #fff; }
.feature-icon { position: absolute; top: 88px; left: 48px; width: 130px; height: 105px; border: 3px solid var(--violet); border-radius: 21px 28px 21px 28px; transform: rotate(-9deg); }.feature-icon::before, .feature-icon::after { position: absolute; content: ''; border: 3px solid var(--violet); border-radius: 50%; }.feature-icon::before { top: 24px; left: 26px; width: 11px; height: 11px; }.feature-icon::after { right: 14px; bottom: -3px; width: 74px; height: 48px; border-right: 0; border-bottom: 0; border-radius: 0 100% 0 0; transform: rotate(-24deg); }.feature-icon i { position: absolute; top: -29px; right: -20px; color: var(--coral); font-size: 31px; font-style: normal; }.feature-art { position: absolute; right: -12px; top: 0; width: 46%; height: 100%; opacity: .35; background-image: linear-gradient(90deg, transparent 49%, rgba(93,81,222,.13) 50%, transparent 51%), linear-gradient(transparent 49%, rgba(93,81,222,.13) 50%, transparent 51%); background-size: 30px 30px; transform: skewX(-14deg); }.mini-live-visual { position: absolute; top: 88px; left: 28px; display: flex; width: calc(100% - 56px); height: 104px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; transform: rotate(-8deg); }.mini-live-visual::before, .mini-live-visual::after { position: absolute; width: 94%; height: 72%; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; content: ''; }.mini-live-visual::after { width: 74%; height: 124%; transform: rotate(64deg); }.mini-live-spark { position: absolute; top: 11px; left: 28%; font-size: 24px; }.mini-live-word { color: #fff; font-family: var(--mono); font-size: 24px; letter-spacing: .12em; }.mini-live-line { position: absolute; right: 14%; bottom: 20px; width: 42px; height: 1px; background: #fff; }.history-visual { position: absolute; top: 85px; right: 30px; left: 30px; height: 116px; border-bottom: 1px solid rgba(255,255,255,.28); }.history-line { position: absolute; right: 0; left: 0; height: 1px; background: rgba(255,255,255,.4); transform-origin: left; }.line-one { top: 23px; transform: rotate(13deg) scaleX(.72); }.line-two { top: 56px; transform: rotate(-7deg) scaleX(.95); }.line-three { top: 92px; transform: rotate(10deg) scaleX(.54); }.history-visual b { position: absolute; right: 8px; bottom: -12px; color: var(--coral); font-size: 32px; font-weight: 400; }

.flow { position: relative; overflow: hidden; background: var(--violet-dark); color: #fff; }.flow-bg-shape { position: absolute; top: -220px; right: -100px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }.flow-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }.flow-heading h2 { margin: 28px 0 24px; font-size: clamp(52px, 6vw, 82px); font-weight: 500; letter-spacing: -.08em; line-height: .88; }.flow-heading > p:not(.eyebrow) { max-width: 290px; margin: 0 0 34px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.8; }.steps { border-top: 1px solid rgba(255,255,255,.2); }.step-row { display: grid; grid-template-columns: 50px 1fr 28px; align-items: center; gap: 14px; min-height: 130px; border-bottom: 1px solid rgba(255,255,255,.2); }.step-index { align-self: start; padding-top: 32px; color: var(--coral); font-family: var(--mono); font-size: 10px; }.step-row h3 { margin: 0 0 8px; font-size: 20px; font-weight: 500; letter-spacing: -.04em; }.step-row p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.6; }.step-arrow { color: var(--coral); font-size: 22px; transition: transform .2s ease; }.step-row:hover .step-arrow { transform: translate(4px, -4px); }

.promise { background: #fff; }.promise-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 110px; }.promise-copy h2 { margin: 28px 0 24px; }.promise-copy > p:not(.eyebrow) { max-width: 390px; margin: 0 0 30px; color: var(--ink-soft); font-size: 13px; line-height: 1.85; }.text-link-dark { color: var(--ink); }.promise-card { position: relative; min-height: 420px; padding: 30px; overflow: hidden; border-radius: 25px; background: linear-gradient(140deg, #f46f71, #685ce1 88%); color: #fff; box-shadow: 0 26px 60px rgba(77, 61, 177, .19); }.promise-card::before { position: absolute; right: -90px; bottom: -170px; width: 440px; height: 440px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; content: ''; box-shadow: 0 0 0 50px rgba(255,255,255,.06), 0 0 0 100px rgba(255,255,255,.04); }.promise-card-top { position: relative; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.68); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }.promise-seal { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 18px; }.promise-statement { position: relative; margin-top: 75px; font-size: 45px; font-weight: 500; letter-spacing: -.08em; line-height: .95; }.promise-statement strong { color: #ffd3a9; font-weight: 500; }.promise-list { position: absolute; right: 30px; bottom: 29px; left: 30px; display: flex; flex-wrap: wrap; gap: 9px; }.promise-list span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; color: rgba(255,255,255,.82); font-size: 10px; }.promise-list i { color: #ffd3a9; font-family: var(--mono); font-size: 8px; font-style: normal; }.promise-card-mark { position: absolute; top: 118px; right: 52px; color: #ffd3a9; font-size: 41px; }

.start { padding-top: 0; background: #fff; }.start-card { position: relative; display: flex; min-height: 480px; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border-radius: 27px; background: linear-gradient(135deg, #221c59 0%, #5146ba 53%, #f17376 120%); color: #fff; text-align: center; }.start-card::before { position: absolute; top: -240px; left: 8%; width: 760px; height: 760px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ''; box-shadow: 0 0 0 75px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.025); }.start-decoration { position: absolute; width: 170px; height: 170px; border-radius: 45% 55% 60% 40%; border: 1px solid rgba(255,255,255,.23); }.start-decoration-one { top: 45px; left: 9%; transform: rotate(26deg); }.start-decoration-two { right: 7%; bottom: 30px; transform: rotate(-24deg) scale(.72); border-color: rgba(255,210,184,.5); }.start-icon { position: relative; width: 56px; height: 56px; margin-bottom: 22px; overflow: hidden; border: 2px solid rgba(255,255,255,.6); border-radius: 18px; box-shadow: 0 12px 22px rgba(21, 13, 66, .25); }.start-icon img { width: 100%; height: 100%; object-fit: cover; }.start-card .eyebrow { position: relative; }.start-card h2 { position: relative; margin: 25px 0 18px; font-size: clamp(43px, 5vw, 66px); font-weight: 500; letter-spacing: -.08em; line-height: .9; }.start-card > p:not(.eyebrow) { position: relative; margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.8; }.start-card .button { position: relative; margin-top: 30px; }.copy-button span { color: var(--coral); font-family: var(--mono); font-size: 10px; }.copy-toast { position: absolute; bottom: 28px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.14); color: rgba(255,255,255,.8); font-family: var(--mono); font-size: 9px; opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; }.copy-toast.is-visible { opacity: 1; transform: translateY(0); }

.site-footer { padding: 31px 0 38px; background: #fff; }.footer-layout { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 20px; }.footer-brand .brand-mark { width: 30px; height: 30px; border-radius: 9px; }.footer-brand .brand-name { font-size: 13px; }.footer-layout > p { margin: 0; color: #a09bb4; font-size: 11px; }.footer-meta { display: flex; align-items: center; gap: 20px; color: #a09bb4; font-family: var(--mono); font-size: 8px; }.footer-meta a { color: var(--ink-soft); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }.reveal-in { opacity: 1; transform: none; }.reveal-in[data-reveal-delay="100"] { transition-delay: .1s; }.reveal-in[data-reveal-delay="120"] { transition-delay: .12s; }.reveal-in[data-reveal-delay="140"] { transition-delay: .14s; }.reveal-in[data-reveal-delay="180"] { transition-delay: .18s; }

@media (max-width: 980px) {
  .page-width { width: min(100% - 44px, 720px); }
  .site-header { padding-right: 22px; padding-left: 22px; }
  .main-nav { gap: 20px; margin-right: 22px; }
  .hero { min-height: auto; padding-top: 150px; }.hero-grid { grid-template-columns: 1fr; gap: 12px; }.hero-copy { max-width: 620px; }.hero-art { max-width: 600px; width: 100%; margin: 0 auto; }.hero-rail { margin-top: 10px; }.section-heading { grid-template-columns: 1fr 1.25fr; }.section-heading > p:last-child { display: none; }.feature-grid { grid-template-columns: 1fr 1fr; }.feature-card-large { grid-column: span 2; min-height: 360px; }.feature-card-coral, .feature-card-dark { min-height: 400px; }.flow-layout, .promise-layout { grid-template-columns: 1fr; gap: 60px; }.flow-heading { max-width: 520px; }.promise-copy { max-width: 580px; }.promise-card { width: min(100%, 540px); }.footer-layout { grid-template-columns: 1fr auto; }.footer-layout > p { display: none; }.footer-meta { grid-column: span 2; justify-content: space-between; }
}

@media (max-width: 640px) {
  .page-width { width: calc(100% - 36px); }.section-pad { padding: 88px 0; }.site-header { padding: 17px 18px; }.site-header.is-scrolled { padding-top: 13px; padding-bottom: 13px; }.brand-name { font-size: 14px; }.header-cta { display: none; }.nav-toggle { display: block; }.main-nav { position: absolute; top: 68px; right: 18px; left: 18px; display: none; flex-direction: column; gap: 0; margin: 0; padding: 9px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 18px 35px rgba(26, 18, 73, .12); backdrop-filter: blur(18px); }.main-nav.is-open { display: flex; }.main-nav a { padding: 13px 14px; border-radius: 11px; }.main-nav a:hover { background: var(--paper-deep); }.hero { padding-top: 126px; }.hero h1 { margin-top: 22px; font-size: clamp(60px, 17vw, 90px); }.hero-intro { font-size: 14px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; margin-top: 28px; }.hero-note { margin-top: 35px; font-size: 8px; }.hero-art { height: 490px; margin-top: 8px; }.art-sun { top: 76px; right: 24px; width: 240px; height: 240px; }.art-ring-one { right: -78px; }.art-ring-two { right: 24px; }.media-stack { top: 76px; right: 42px; width: min(300px, 74%); }.media-scene { min-height: 290px; }.tag-live { top: 102px; left: 0; }.tag-clean { top: 302px; right: -8px; }.tag-format { right: 0; bottom: 46px; }.art-caption { bottom: 29px; left: 0; }.hero-rail { gap: 12px; font-size: 8px; }.hero-rail span:nth-of-type(3) { display: none; }.rail-side { display: none; }.section-heading { display: block; }.section-heading h2, .promise-copy h2 { margin-top: 25px; font-size: 47px; }.feature-grid { display: block; margin-top: 42px; }.feature-card, .feature-card-large, .feature-card-coral, .feature-card-dark { min-height: 380px; margin-top: 12px; }.feature-card-large { min-height: 360px; }.feature-content h3 { font-size: 22px; }.flow-heading h2 { font-size: 64px; }.flow-layout, .promise-layout { gap: 46px; }.step-row { grid-template-columns: 35px 1fr 18px; gap: 8px; min-height: 128px; }.step-row h3 { font-size: 18px; }.step-row p { font-size: 11px; }.promise-card { min-height: 390px; }.promise-statement { margin-top: 62px; font-size: 42px; }.promise-list { right: 20px; bottom: 20px; left: 20px; }.promise-list span { font-size: 9px; }.start { padding-top: 0; }.start-card { min-height: 500px; border-radius: 21px; }.start-card h2 { font-size: 49px; }.start-decoration-one { left: -54px; }.start-decoration-two { right: -35px; }.footer-layout { gap: 24px 12px; }.footer-meta { align-items: flex-start; flex-direction: column; gap: 10px; }.footer-meta a { order: -1; }.footer-meta { grid-column: auto; }.footer-layout { display: flex; align-items: flex-start; flex-direction: column; }
}

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