:root {
  --ink: #081424;
  --ink-soft: #253142;
  --paper: #f7f4ef;
  --paper-deep: #eee9e1;
  --white: #fffdf9;
  --coral: #ff3926;
  --orange: #ff6b08;
  --pink: #ff075c;
  --line: rgba(8, 20, 36, 0.14);
  --gradient: linear-gradient(125deg, var(--orange) 0%, var(--coral) 48%, var(--pink) 100%);
  --shadow: 0 28px 80px rgba(8, 20, 36, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(8, 20, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 20, 36, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.025;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  width: min(1440px, calc(100% - 72px));
  height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 148px; }
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav > a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}
.site-header nav > a:hover { color: var(--coral); }
.site-header nav > .demo-nav {
  padding: 9px 13px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}
.site-header nav > .demo-nav:hover { color: white; background: var(--coral); }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.status-pill i {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 57, 38, 0.13);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero {
  width: min(1440px, calc(100% - 72px));
  min-height: 740px;
  margin: 0 auto;
  padding: 76px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 68px;
}
.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--coral);
}
.eyebrow.light { color: rgba(255,255,255,.62); }
.eyebrow.light::before { background: var(--coral); }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(58px, 6.2vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.hero h1 span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.7px var(--ink);
}
.coming-line { margin: 28px 0 26px; display: flex; align-items: center; gap: 18px; }
.coming-line .line { width: 52px; height: 1px; background: var(--ink); }
.coming-line p {
  margin: 0;
  color: var(--coral);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-intro {
  max-width: 590px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.contact-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 590px;
  margin: 0 0 28px;
  padding: 20px;
  color: white;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(8, 20, 36, .14);
}
.contact-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 210px;
  height: 210px;
  right: -80px;
  top: -130px;
  background: var(--gradient);
  border-radius: 50%;
  filter: blur(3px);
  opacity: .52;
}
.contact-panel-heading {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-panel-heading span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-panel-heading strong {
  display: block;
  font-size: 15px;
  letter-spacing: -.02em;
}
.contact-panel-heading > i {
  width: 8px;
  height: 8px;
  margin-right: 3px;
  background: var(--coral);
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 57, 38, .16);
}
.contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.contact-links a {
  min-width: 0;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 13px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.contact-links a:hover {
  color: var(--ink);
  background: white;
  border-color: white;
  transform: translateY(-2px);
}
.contact-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--gradient);
  border-radius: 10px;
  box-shadow: 0 7px 15px rgba(255, 57, 38, .2);
}
.contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-icon {
  background: #25d366;
  box-shadow: 0 7px 15px rgba(37, 211, 102, .2);
}
.contact-copy { min-width: 0; display: block; }
.contact-copy small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-copy strong {
  display: block;
  overflow: hidden;
  font-size: 10.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-links a:hover .contact-copy small { color: #747a82; }
.contact-links a b {
  margin-left: auto;
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  font-weight: 500;
}
.contact-links a:hover b { color: var(--coral); }
.text-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
}
.text-link span { font-size: 18px; transition: transform 180ms ease; }
.text-link:hover span { transform: translate(4px, 4px); }
.checkout-demo-link {
  max-width: 285px;
  margin-top: 22px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: white;
  background: var(--ink);
  border-radius: 12px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}
.checkout-demo-link:hover { background: var(--coral); transform: translateY(-2px); }
.checkout-demo-link span { display: block; font-size: 11px; font-weight: 800; }
.checkout-demo-link small { margin-bottom: 2px; display: block; color: rgba(255,255,255,.5); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.checkout-demo-link b { font-size: 20px; font-weight: 500; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--gradient);
  filter: blur(1px);
  opacity: 0.12;
}
.orbit { position: absolute; border: 1px solid rgba(8,20,36,.12); border-radius: 50%; }
.orbit-one { width: 570px; height: 570px; }
.orbit-two { width: 710px; height: 710px; border-style: dashed; opacity: .55; }
.visual-shell {
  position: relative;
  z-index: 2;
  width: min(650px, 91%);
  padding: 13px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform: rotate(-2.2deg);
}
.mock-browser { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.browser-bar {
  height: 45px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eee9e1;
  border-bottom: 1px solid var(--line);
}
.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #c6beb3; }
.browser-address {
  margin: 0 auto;
  padding: 5px 24px;
  color: #7d786f;
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: .03em;
}
.store-preview { padding: 24px 26px 28px; }
.mini-brand { margin-bottom: 20px; font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.mini-brand span { color: var(--coral); }
.preview-product { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; align-items: center; }
.product-art {
  position: relative;
  min-height: 265px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #ff7b13, #ff2746 58%, #ff0066);
  border-radius: 8px 68px 8px 8px;
}
.product-art::before,
.product-art::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
.product-art::before { width: 220px; height: 220px; }
.product-art::after { width: 150px; height: 150px; }
.art-circle { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.11); transform: translate(62px, -62px); }
.art-package {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 116px;
  display: grid;
  place-items: center;
  color: var(--coral);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 24px 40px rgba(8,20,36,.22);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.08em;
  transform: rotate(7deg);
}
.art-package::before { content: ""; position: absolute; top: 15px; width: 30px; height: 4px; border-radius: 4px; background: #e8e2da; }
.micro-label { color: var(--coral); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.product-copy h2 { margin: 9px 0 17px; font-size: clamp(19px, 2vw, 28px); line-height: 1.1; letter-spacing: -.035em; }
.copy-lines { display: grid; gap: 7px; }
.copy-lines i { width: 100%; height: 5px; background: #e8e4de; border-radius: 9px; }
.copy-lines i:last-child { width: 64%; }
.buy-row { margin-top: 35px; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line); }
.buy-row strong { font-size: 11px; }
.buy-row span { padding: 10px 12px; color: white; background: var(--ink); border-radius: 999px; font-size: 8px; font-weight: 700; white-space: nowrap; }
.buy-row b { color: var(--coral); }
.shell-caption { padding: 13px 7px 2px; display: flex; align-items: center; gap: 14px; }
.shell-caption span { color: var(--coral); font-size: 10px; font-weight: 800; }
.shell-caption p { margin: 0; font-size: 10px; font-weight: 700; }
.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: rgba(255,253,249,.92);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(8,20,36,.17);
  backdrop-filter: blur(16px);
}
.order-card { top: 66px; right: -8px; gap: 11px; padding: 13px 18px 13px 12px; border-radius: 16px; transform: rotate(3deg); animation: float 5s ease-in-out infinite; }
.floating-icon { width: 32px; height: 32px; display: grid; place-items: center; color: white; background: var(--gradient); border-radius: 10px; font-size: 13px; font-weight: 800; }
.floating-card small { display: block; margin-bottom: 2px; color: #7f7b74; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { display: block; font-size: 10px; }
.flow-card { bottom: 60px; left: -20px; padding: 13px 16px; display: block; border-radius: 13px; transform: rotate(-4deg); animation: float 6s 1s ease-in-out infinite; }
.flow-card > div { margin-top: 7px; display: flex; align-items: center; gap: 6px; }
.flow-card i { width: 19px; height: 5px; background: #ddd7cf; border-radius: 5px; }
.flow-card i:first-child,
.flow-card i:last-child { background: var(--coral); }

.ticker { overflow: hidden; color: white; background: var(--ink); transform: rotate(-1deg) scale(1.02); }
.ticker > div { width: max-content; padding: 18px 0; display: flex; align-items: center; gap: 28px; animation: ticker 28s linear infinite; }
.ticker span { font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.ticker b { color: var(--coral); font-size: 11px; }

.about {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  padding: 150px 0 142px;
}
.section-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.section-heading .eyebrow { min-width: 190px; margin-top: 15px; }
.section-heading h2 { margin: 0; max-width: 860px; font-size: clamp(45px, 5.8vw, 82px); line-height: 1; letter-spacing: -.05em; }
.section-heading h2 span { color: var(--coral); }
.section-lead { max-width: 650px; margin: 42px 0 70px auto; color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  min-height: 420px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: rgba(255,253,249,.7);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(8,20,36,.1); }
.feature-card.featured { color: white; background: var(--ink); }
.card-number { margin-left: auto; color: #9c9790; font-size: 10px; font-weight: 800; }
.feature-icon { position: relative; width: 92px; height: 92px; margin: 42px 0 auto; }
.page-icon { border: 1.5px solid var(--ink); border-radius: 14px; }
.page-icon::before { content: ""; position: absolute; top: 12px; left: 12px; right: 12px; height: 8px; border-bottom: 1.5px solid var(--ink); }
.page-icon i { position: absolute; left: 15px; right: 15px; height: 6px; background: var(--coral); border-radius: 5px; }
.page-icon i:nth-child(1) { top: 39px; right: 38px; }
.page-icon i:nth-child(2) { top: 54px; }
.page-icon i:nth-child(3) { top: 68px; right: 28px; background: #e2ddd5; }
.flow-icon i { position: absolute; width: 44px; height: 44px; border: 1.5px solid rgba(255,255,255,.58); border-radius: 50%; }
.flow-icon i:nth-child(1) { left: 0; top: 25px; }
.flow-icon i:nth-child(2) { left: 30px; top: 3px; border-color: var(--coral); }
.flow-icon i:nth-child(3) { left: 45px; top: 43px; border-color: var(--pink); }
.people-icon i { position: absolute; width: 35px; height: 35px; border: 1.5px solid var(--ink); border-radius: 50%; }
.people-icon i::after { content: ""; position: absolute; top: 40px; left: -8px; width: 49px; height: 31px; border: 1.5px solid var(--ink); border-radius: 50px 50px 10px 10px; }
.people-icon i:nth-child(1) { left: 7px; top: 4px; }
.people-icon i:nth-child(2) { left: 49px; top: 23px; transform: scale(.72); opacity: .46; }
.people-icon i:nth-child(3) { display: none; }
.feature-card h3 { margin: 40px 0 13px; max-width: 300px; font-size: 21px; line-height: 1.2; letter-spacing: -.03em; }
.feature-card p { margin: 0; max-width: 335px; color: #62666c; font-size: 13px; line-height: 1.72; }
.feature-card.featured p { color: rgba(255,255,255,.58); }

.platform-section {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 74px 78px;
  color: white;
  background: var(--ink);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}
.platform-section::before { content: ""; position: absolute; width: 560px; height: 560px; top: -360px; right: -80px; background: var(--gradient); border-radius: 50%; filter: blur(5px); opacity: .5; }
.platform-intro { position: relative; z-index: 1; display: grid; grid-template-columns: .62fr 1.25fr .7fr; align-items: end; gap: 52px; }
.platform-intro .eyebrow { align-self: start; }
.platform-intro h2 { margin: 0; font-size: clamp(45px, 5.2vw, 76px); line-height: 1; letter-spacing: -.045em; }
.platform-intro > p:last-child { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.75; }
.journey { position: relative; z-index: 1; margin: 90px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.journey li { min-height: 185px; padding: 26px 25px 5px 0; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.16); }
.journey li + li { padding-left: 25px; }
.journey li:last-child { border-right: 0; }
.journey li > span { color: var(--coral); font-size: 10px; font-weight: 800; }
.journey li > div { margin-top: auto; }
.journey strong { display: block; margin-bottom: 6px; font-size: 20px; }
.journey p { margin: 0; color: rgba(255,255,255,.48); font-size: 11px; }
.journey b { align-self: flex-end; margin-top: -23px; color: var(--coral); font-size: 18px; font-weight: 500; }

.closing {
  width: min(1320px, calc(100% - 72px));
  min-height: 440px;
  margin: 100px auto;
  padding: 62px 70px;
  position: relative;
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 50px;
  color: white;
  background: var(--gradient);
  border-radius: 32px 120px 32px 32px;
  overflow: hidden;
}
.closing::before { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; top: -140px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 62px rgba(255,255,255,.05), 0 0 0 125px rgba(255,255,255,.04); }
.closing-mark { width: 120px; height: 145px; display: grid; place-items: center; color: var(--coral); background: white; border-radius: 16px; box-shadow: 0 22px 45px rgba(8,20,36,.18); font-size: 34px; font-weight: 800; letter-spacing: -.05em; transform: rotate(-6deg); }
.closing h2 { margin: 0; font-size: clamp(36px, 4.2vw, 64px); line-height: 1.04; letter-spacing: -.045em; }
.closing-soon { position: relative; margin: 0; font-size: clamp(40px, 4.6vw, 68px); line-height: .92; font-weight: 800; letter-spacing: -.05em; text-transform: uppercase; }
.closing-soon span { color: transparent; -webkit-text-stroke: 1.5px white; }

footer {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  padding: 36px 0 44px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 50px 80px;
  border-top: 1px solid var(--line);
}
footer img { width: 150px; }
footer > p { max-width: 590px; justify-self: end; margin: 0; color: #62676e; font-size: 12px; line-height: 1.7; }
footer > p a { color: var(--ink); font-weight: 800; text-underline-offset: 3px; }
footer > p a:hover { color: var(--coral); }
footer > div { grid-column: 1 / -1; display: flex; justify-content: space-between; color: #66625c; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-delay-1 { transition-delay: 90ms; }
.js .reveal-delay-2 { transition-delay: 180ms; }
.js .reveal-delay-3 { transition-delay: 270ms; }

@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(255,57,38,0); } }
@keyframes float { 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 26px; }
  .hero-visual { transform: scale(.9); }
  .platform-intro { grid-template-columns: 1fr 1.5fr; }
  .platform-intro > p:last-child { grid-column: 2; }
  .closing { grid-template-columns: 110px 1fr; }
  .closing-mark { width: 100px; height: 120px; }
  .closing-soon { grid-column: 2; }
}

@media (max-width: 860px) {
  .site-header, .hero, .about, .closing, footer { width: min(100% - 40px, 720px); }
  .site-header { height: 88px; }
  .site-header nav > a { display: none; }
  .hero { padding: 70px 0 100px; grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 5; }
  .hero h1 { font-size: clamp(58px, 13vw, 90px); }
  .hero-visual { min-height: 600px; margin-top: 30px; transform: none; }
  .about { padding: 120px 0; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 32px; }
  .section-lead { margin: 36px 0 55px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 340px; }
  .feature-icon { margin-top: 20px; }
  .platform-section { padding: 80px 34px 60px; }
  .platform-intro { display: block; }
  .platform-intro h2 { margin-bottom: 28px; }
  .platform-intro > p:last-child { max-width: 500px; }
  .journey { grid-template-columns: 1fr 1fr; }
  .journey li:nth-child(2) { border-right: 0; }
  .journey li:nth-child(3), .journey li:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
  .journey li:nth-child(3) { padding-left: 0; }
  .closing { margin: 70px auto; padding: 55px 40px; border-radius: 26px 80px 26px 26px; }
  footer { grid-template-columns: 1fr; gap: 25px; }
  footer > p { justify-self: start; }
}

@media (max-width: 560px) {
  .site-header, .hero, .about, .closing, footer { width: calc(100% - 30px); }
  .brand img { width: 116px; }
  .status-pill { padding: 8px 10px; font-size: 8px; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: 55px; }
  .hero h1 span { -webkit-text-stroke-width: 1.2px; }
  .hero-intro { font-size: 14px; }
  .contact-panel { padding: 18px; border-radius: 18px; }
  .contact-links { grid-template-columns: 1fr; }
  .contact-links a { padding: 12px; }
  .contact-copy strong { font-size: 11px; }
  .hero-visual { min-height: 420px; margin-top: 10px; }
  .orbit-one { width: 400px; height: 400px; }
  .orbit-two { display: none; }
  .visual-shell { width: 106%; padding: 8px; border-radius: 19px; }
  .mock-browser { border-radius: 12px; }
  .browser-bar { height: 34px; }
  .store-preview { padding: 16px; }
  .preview-product { gap: 12px; }
  .product-art { min-height: 190px; border-radius: 6px 38px 6px 6px; }
  .art-package { width: 65px; height: 80px; font-size: 17px; }
  .product-copy h2 { font-size: 16px; }
  .buy-row { margin-top: 20px; display: block; }
  .buy-row span { margin-top: 9px; display: block; width: fit-content; }
  .shell-caption p { font-size: 8px; }
  .order-card { top: 12px; right: -7px; }
  .flow-card { bottom: 5px; left: -8px; }
  .ticker > div { padding: 14px 0; }
  .about { padding: 100px 0; }
  .section-heading h2 { font-size: 43px; }
  .section-lead { font-size: 15px; }
  .feature-card { padding: 23px; min-height: 335px; }
  .platform-section { width: calc(100% - 16px); padding: 68px 22px 42px; border-radius: 24px; }
  .platform-intro h2 { font-size: 42px; }
  .journey { margin-top: 60px; grid-template-columns: 1fr; }
  .journey li, .journey li + li { min-height: 135px; padding: 21px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .journey li:first-child { border-top: 0; }
  .closing { min-height: 520px; padding: 46px 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 35px; }
  .closing-mark { width: 75px; height: 90px; font-size: 25px; }
  .closing h2 { font-size: 39px; }
  .closing-soon { align-self: flex-end; font-size: 53px; }
  footer > div { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
