:root {
  --ink-950: #07101f;
  --ink-900: #0b1426;
  --ink-850: #101b2f;
  --ink-800: #17243a;
  --ink-700: #293750;
  --ink-600: #43506a;
  --ink-500: #64708a;
  --ink-300: #aeb8c9;
  --ink-200: #cfd6e3;
  --ink-100: #e8ecf3;
  --ink-50: #f6f8fc;
  --white: #ffffff;
  --blue: #2f7cff;
  --cyan: #16c7ed;
  --violet: #7b45f5;
  --pink: #ed3f92;
  --orange: #ff7c3d;
  --green: #39c96b;
  --yellow: #ffc53d;
  --danger: #ef4444;
  --success: #16a34a;
  --gradient-brand: linear-gradient(115deg, var(--blue) 0%, var(--violet) 37%, var(--pink) 68%, var(--orange) 100%);
  --gradient-app: linear-gradient(135deg, #3f8cff 0%, #7b45f5 52%, #ed3f92 100%);
  --shadow-sm: 0 10px 30px rgba(14, 25, 48, 0.08);
  --shadow-md: 0 22px 60px rgba(14, 25, 48, 0.14);
  --shadow-lg: 0 34px 90px rgba(3, 9, 24, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(123, 69, 245, 0.22); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-950);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 70px 0; }
.section-dark { color: var(--white); background: var(--ink-950); }
.section-soft { background: var(--ink-50); }
.section-gradient-soft { background: linear-gradient(180deg, #fff 0%, #f7f5ff 100%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #5b35ce;
  background: #eee9ff;
  border: 1px solid #ddd3ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow-dark { color: #dcd3ff; background: rgba(123, 69, 245, 0.14); border-color: rgba(159, 127, 255, 0.3); }

h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.75rem, 6.2vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p { margin: 0; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-600); }
.section-dark .lead { color: var(--ink-300); }
.gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { margin-top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 16, 31, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -0.02em; white-space: nowrap; }
.brand-mark {
  width: 31px;
  height: 31px;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 8px 16px rgba(123,69,245,.28));
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 31% 0, 50% 58%, 69% 0, 100% 0, 63% 100%, 38% 100%);
  background: var(--gradient-brand);
}
.brand-mark::after { /* transform: scale(.58) translate(3px, 4px); background: #0b1426;*/ }
.brand-text { font-size: 1.02rem; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { color: #d8deea; font-size: 0.92rem; font-weight: 650; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--white); }
.desktop-nav a[aria-current="page"] { position: relative; }
.desktop-nav a[aria-current="page"]::after { content:""; position:absolute; left:0; right:0; bottom:-13px; height:2px; border-radius:999px; background:var(--gradient-brand); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .2s ease, background .2s ease;
}
.social-link:hover { transform: translateY(-2px); background: rgba(255,255,255,.13); }
.social-link.is-placeholder { opacity: .65; }
.social-link svg { width: 18px; height: 18px; }
.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
}
.menu-button span, .menu-button::before, .menu-button::after { content:""; width:20px; height:2px; border-radius:999px; background:currentColor; display:block; transition:.2s ease; }
.menu-button span { margin: 4px 0; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 999;
  display: none;
  padding: 20px;
  color: var(--white);
  background: rgba(7, 16, 31, .98);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 14px 6px; color: #e6eaf2; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 700; }
.mobile-nav .mobile-socials { display:flex; gap:10px; margin-top:18px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--gradient-brand); box-shadow: 0 16px 36px rgba(123, 69, 245, .25); }
.button-primary:hover { box-shadow: 0 20px 44px rgba(123, 69, 245, .36); }
.button-secondary { color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22); }
.button-light { color: var(--ink-900); background: var(--white); }
.button-outline { color: var(--ink-900); background: transparent; border: 1px solid var(--ink-200); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: .9rem; }
.button svg { width: 18px; height: 18px; }
.button[disabled] { opacity: .62; cursor: wait; transform: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 27%, rgba(123,69,245,.32), transparent 28%),
    radial-gradient(circle at 88% 62%, rgba(47,124,255,.25), transparent 24%),
    radial-gradient(circle at 22% 72%, rgba(237,63,146,.12), transparent 26%),
    var(--ink-950);
}
.hero::before {
  content:"";
  position:absolute;
  inset:0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events:none;
}
.hero-inner { min-height: calc(100svh - var(--header-height)); padding: 72px 0 90px; display:grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items:center; position:relative; z-index:1; }
.hero-copy { max-width: 650px; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { margin-top: 24px; max-width: 640px; color: #c9d0df; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; }
.platform-row { display:flex; gap:22px; flex-wrap:wrap; align-items:center; margin-top:25px; color:#c8d0df; font-size:.9rem; }
.platform-item { display:inline-flex; align-items:center; gap:8px; }
.platform-dot { width:11px; height:11px; border-radius:50%; background:var(--green); box-shadow:0 0 0 5px rgba(57,201,107,.1); }
.platform-dot.ios { background:#8b96ab; box-shadow:0 0 0 5px rgba(139,150,171,.1); }

.hero-visual { position: relative; min-height: 620px; display:grid; place-items:center; }
.hero-orbit { position:absolute; width:540px; height:540px; border:1px solid rgba(255,255,255,.08); border-radius:50%; box-shadow: inset 0 0 80px rgba(123,69,245,.05); }
.hero-orbit::before, .hero-orbit::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.05); }
.hero-orbit::before { inset:50px; }
.hero-orbit::after { inset:115px; }
.phone {
  position:relative;
  z-index:3;
  width: 286px;
  padding: 11px;
  border-radius: 44px;
  background: linear-gradient(145deg, #404b61, #0e1523 48%, #48546c);
  box-shadow: 0 42px 100px rgba(0,0,0,.56), 0 0 80px rgba(69,109,255,.18);
  transform: rotate(4deg);
}
.phone::before { content:""; position:absolute; top:16px; left:50%; transform:translateX(-50%); width:82px; height:22px; border-radius:0 0 14px 14px; background:#050a12; z-index:2; }
.phone-screen { overflow:hidden; border-radius:35px; background:#07101b; }
.phone-screen img { width:100%; height:auto; }
.app-icon-float {
  position:absolute;
  z-index:5;
  top:56px;
  left:18px;
  width:116px;
  padding:8px;
  border-radius:30px;
  background:rgba(10,17,32,.76);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(12px);
}
.app-icon-float img { border-radius:24px; }
.feature-chip {
  position:absolute;
  z-index:4;
  width:180px;
  padding:16px;
  color:var(--white);
  background:rgba(20,31,54,.78);
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  box-shadow:var(--shadow-md);
  backdrop-filter:blur(14px);
}
.feature-chip strong { display:block; margin-bottom:5px; font-size:.9rem; }
.feature-chip span { display:block; color:#c6cfdf; font-size:.78rem; line-height:1.4; }
.feature-chip::before { content:""; width:10px; height:10px; display:block; margin-bottom:9px; border-radius:50%; background:var(--chip, var(--blue)); box-shadow:0 0 0 6px color-mix(in srgb, var(--chip, var(--blue)) 18%, transparent); }
.chip-one { right:0; top:105px; --chip:var(--cyan); }
.chip-two { left:-10px; bottom:130px; --chip:var(--orange); }
.chip-three { right:12px; bottom:70px; --chip:var(--pink); }

.featured-panel {
  display:grid;
  grid-template-columns: 116px 1.3fr .95fr;
  gap:26px;
  align-items:center;
  padding:28px;
  margin-top:-45px;
  position:relative;
  z-index:10;
  color:var(--white);
  background:linear-gradient(145deg, rgba(19,29,50,.98), rgba(7,16,31,.98));
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
}
.featured-icon { width:116px; border-radius:27px; overflow:hidden; box-shadow:0 16px 40px rgba(0,0,0,.32); }
.featured-copy h2 { font-size:clamp(1.6rem,3vw,2.5rem); }
.featured-copy p { margin-top:10px; color:#c2cada; }
.featured-meta { display:grid; gap:9px; color:#e0e5ef; font-size:.9rem; }
.meta-row { display:flex; align-items:center; gap:9px; }
.meta-check { width:20px; height:20px; display:grid; place-items:center; border-radius:50%; color:#bfe7ca; background:rgba(57,201,107,.12); font-size:.75rem; font-weight:900; }
.store-badge {
  display:inline-flex;
  align-items:center;
  gap:11px;
  min-width:190px;
  padding:10px 15px;
  color:var(--white);
  background:#050505;
  border:1px solid rgba(255,255,255,.28);
  border-radius:12px;
}
.store-badge svg { width:30px; height:30px; flex:none; }
.store-badge span { display:block; font-size:.63rem; line-height:1.1; text-transform:uppercase; letter-spacing:.06em; }
.store-badge strong { display:block; font-size:1.1rem; line-height:1.15; letter-spacing:-.02em; }
.store-badge.is-placeholder { opacity:.86; }
.store-note { margin-top:7px; color:#8e9aaf; font-size:.74rem; }

.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.card { background:var(--white); border:1px solid var(--ink-100); border-radius:var(--radius-md); box-shadow:var(--shadow-sm); }
.feature-card { padding:26px; min-height:230px; transition:transform .22s ease, box-shadow .22s ease; }
.feature-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.icon-tile {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  border-radius:14px;
  color:var(--accent, var(--blue));
  background:color-mix(in srgb, var(--accent, var(--blue)) 12%, white);
}
.icon-tile svg { width:24px; height:24px; }
.feature-card h3 { font-size:1.12rem; }
.feature-card p { margin-top:10px; color:var(--ink-600); font-size:.94rem; }
.feature-card:nth-child(1){--accent:var(--green)}
.feature-card:nth-child(2){--accent:var(--orange)}
.feature-card:nth-child(3){--accent:var(--blue)}
.feature-card:nth-child(4){--accent:var(--violet)}
.feature-card:nth-child(5){--accent:var(--pink)}
.feature-card:nth-child(6){--accent:var(--cyan)}
.feature-card:nth-child(7){--accent:var(--yellow)}
.feature-card:nth-child(8){--accent:#7b879d}

.gallery-shell { position:relative; }
.gallery-track { display:flex; gap:22px; overflow-x:auto; padding:8px 4px 22px; scroll-snap-type:x mandatory; scrollbar-width:none; }
.gallery-track::-webkit-scrollbar { display:none; }
.screen-card { flex:0 0 230px; scroll-snap-align:start; border:0; padding:0; background:transparent; text-align:left; }
.screen-frame { display:block; overflow:hidden; padding:7px; border-radius:28px; background:linear-gradient(145deg,#3a455a,#090f1b); box-shadow:var(--shadow-md); }
.screen-frame img { width:100%; border-radius:22px; }
.screen-card span { display:block; margin-top:13px; color:#dce2ed; font-size:.9rem; font-weight:700; text-align:center; }
.gallery-controls { display:flex; justify-content:flex-end; gap:10px; margin-bottom:18px; }
.icon-button { width:44px; height:44px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.14); color:var(--white); background:rgba(255,255,255,.06); border-radius:50%; }
.icon-button:hover { background:rgba(255,255,255,.12); }
.icon-button svg { width:19px; height:19px; }

.value-card { position:relative; overflow:hidden; padding:28px; min-height:260px; }
.value-card::after { content:""; position:absolute; width:150px; height:150px; right:-50px; bottom:-55px; border-radius:50%; background:color-mix(in srgb, var(--accent,var(--blue)) 12%, transparent); }
.value-card .value-number { font-size:.78rem; font-weight:900; letter-spacing:.1em; color:var(--accent,var(--blue)); }
.value-card h3 { margin-top:35px; }
.value-card p { margin-top:12px; color:var(--ink-600); }
.value-card:nth-child(1){--accent:var(--violet)}
.value-card:nth-child(2){--accent:var(--blue)}
.value-card:nth-child(3){--accent:var(--green)}

.category-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
.category-card { position:relative; overflow:hidden; min-height:170px; padding:22px; color:var(--ink-900); background:var(--white); border:1px solid var(--ink-100); border-radius:22px; box-shadow:var(--shadow-sm); }
.category-card::after { content:""; position:absolute; width:110px; height:110px; right:-28px; bottom:-35px; border-radius:50%; background:color-mix(in srgb, var(--accent,var(--blue)) 18%, transparent); }
.category-card .icon-tile { --accent:inherit; color:var(--accent); background:color-mix(in srgb, var(--accent) 12%, white); }
.category-card strong { display:block; margin-top:28px; position:relative; z-index:1; }
.category-card small { display:block; margin-top:5px; color:var(--ink-500); position:relative; z-index:1; }
.category-card:nth-child(1){--accent:var(--green)}
.category-card:nth-child(2){--accent:var(--violet)}
.category-card:nth-child(3){--accent:var(--orange)}
.category-card:nth-child(4){--accent:var(--blue)}
.category-card:nth-child(5){--accent:var(--pink)}
.category-card:nth-child(6){--accent:var(--cyan)}

.faq-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; align-items:start; }
.faq-intro { position:sticky; top:120px; }
.faq-list { display:grid; gap:12px; }
.accordion-item { border:1px solid var(--ink-100); border-radius:16px; background:var(--white); overflow:hidden; box-shadow:0 8px 24px rgba(14,25,48,.05); }
.accordion-button { width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:20px 22px; text-align:left; color:var(--ink-900); background:transparent; border:0; font-weight:800; }
.accordion-button svg { width:18px; height:18px; flex:none; transition:transform .2s ease; }
.accordion-button[aria-expanded="true"] svg { transform:rotate(45deg); }
.accordion-panel { padding:0 22px 22px; color:var(--ink-600); }
.accordion-panel[hidden] { display:none; }

.cta-band { position:relative; overflow:hidden; color:var(--white); background:var(--gradient-brand); }
.cta-band::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 15% 0%, rgba(255,255,255,.2), transparent 32%); }
.cta-inner { position:relative; display:flex; align-items:center; justify-content:space-between; gap:28px; padding:42px 0; }
.cta-inner h2 { font-size:clamp(1.8rem,3vw,3rem); }
.cta-inner p { margin-top:8px; color:rgba(255,255,255,.86); }

.site-footer { color:#cbd2df; background:#07101f; }
.footer-main { display:grid; grid-template-columns:1.3fr .7fr .7fr .7fr; gap:46px; padding:64px 0 42px; }
.footer-brand p { margin-top:16px; max-width:360px; color:#9ba7ba; }
.footer-heading { color:var(--white); font-size:.78rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.footer-links { display:grid; gap:10px; margin-top:17px; }
.footer-links a { color:#aeb8c9; font-size:.92rem; }
.footer-links a:hover { color:var(--white); }
.footer-socials { display:flex; gap:10px; margin-top:18px; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding:20px 0 28px; border-top:1px solid rgba(255,255,255,.08); color:#7f8aa0; font-size:.82rem; }
.footer-bottom-links { display:flex; flex-wrap:wrap; gap:18px; }

.page-hero { position:relative; overflow:hidden; padding:90px 0 76px; color:var(--white); background:var(--ink-950); }
.page-hero::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 35%, rgba(123,69,245,.27), transparent 30%), radial-gradient(circle at 16% 95%, rgba(47,124,255,.15), transparent 28%); pointer-events:none; }
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 { max-width:880px; }
.page-hero .lead { max-width:760px; margin-top:20px; color:#c6cfdd; }
.breadcrumb { display:flex; flex-wrap:wrap; gap:9px; align-items:center; margin-bottom:24px; color:#8996ac; font-size:.86rem; }
.breadcrumb a:hover { color:var(--white); }

.app-page-hero { padding:84px 0; color:var(--white); background:radial-gradient(circle at 80% 25%, rgba(47,124,255,.26), transparent 28%), radial-gradient(circle at 68% 80%, rgba(57,201,107,.15), transparent 28%), var(--ink-950); }
.app-hero-grid { display:grid; grid-template-columns:1fr .8fr; gap:60px; align-items:center; }
.app-title-row { display:flex; align-items:center; gap:20px; margin-bottom:26px; }
.app-title-icon { width:112px; border-radius:28px; box-shadow:var(--shadow-lg); }
.app-kicker { color:#b9c4d5; font-size:.8rem; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.app-hero-copy h1 { font-size:clamp(2.5rem,5vw,4.8rem); }
.app-hero-copy .lead { margin-top:22px; color:#c7d0df; }
.app-tags { display:flex; gap:9px; flex-wrap:wrap; margin-top:24px; }
.tag { padding:7px 11px; border-radius:999px; color:#dce4f0; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); font-size:.78rem; font-weight:750; }
.app-hero-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:30px; }
.app-visual-stack { position:relative; min-height:600px; display:grid; place-items:center; }
.app-visual-stack .phone { transform:rotate(3deg); width:310px; }
.app-visual-stack .screen-mini { position:absolute; width:166px; border-radius:26px; padding:7px; background:linear-gradient(145deg,#424f67,#0c1422); box-shadow:var(--shadow-lg); }
.app-visual-stack .screen-mini img { border-radius:20px; }
.app-visual-stack .mini-a { left:0; top:96px; transform:rotate(-7deg); }
.app-visual-stack .mini-b { right:-10px; bottom:95px; transform:rotate(8deg); }

.sticky-facts { position:sticky; top:100px; padding:26px; }
.fact-list { display:grid; gap:16px; margin-top:22px; }
.fact-row { display:flex; justify-content:space-between; gap:20px; padding-bottom:14px; border-bottom:1px solid var(--ink-100); }
.fact-row:last-child { border-bottom:0; padding-bottom:0; }
.fact-row span { color:var(--ink-500); }
.fact-row strong { text-align:right; }
.content-layout { display:grid; grid-template-columns:1fr 320px; gap:54px; align-items:start; }
.prose { color:var(--ink-700); }
.prose h2 { margin-top:56px; color:var(--ink-900); font-size:clamp(1.8rem,3vw,2.8rem); }
.prose h2:first-child { margin-top:0; }
.prose h3 { margin-top:30px; color:var(--ink-900); }
.prose p { margin-top:15px; }
.prose ul { margin:16px 0 0; padding-left:22px; }
.prose li { margin:7px 0; }
.notice { margin-top:24px; padding:18px 20px; color:#54421a; background:#fff8dc; border:1px solid #f7dfa0; border-radius:14px; }
.info-panel { padding:26px; background:linear-gradient(180deg,#fff,#f8faff); }

.app-list-card { display:grid; grid-template-columns:150px 1fr auto; gap:28px; align-items:center; padding:26px; }
.app-list-icon { border-radius:30px; overflow:hidden; }
.app-list-card p { margin-top:10px; color:var(--ink-600); }
.app-list-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:15px; }
.app-list-tags .tag { color:var(--ink-600); background:var(--ink-50); border-color:var(--ink-100); }

.timeline { display:grid; gap:22px; counter-reset:steps; }
.timeline-item { position:relative; padding:0 0 26px 72px; border-bottom:1px solid var(--ink-100); }
.timeline-item::before { counter-increment:steps; content:counter(steps); position:absolute; left:0; top:-2px; width:45px; height:45px; display:grid; place-items:center; border-radius:14px; color:var(--white); background:var(--gradient-brand); font-weight:900; }
.timeline-item h3 { font-size:1.16rem; }
.timeline-item p { margin-top:8px; color:var(--ink-600); }

.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:48px; align-items:start; }
.contact-card { padding:28px; }
.contact-method { display:flex; align-items:flex-start; gap:15px; padding:18px 0; border-bottom:1px solid var(--ink-100); }
.contact-method:last-child { border-bottom:0; }
.contact-method .icon-tile { margin:0; flex:none; }
.contact-method strong { display:block; }
.contact-method span, .contact-method a { display:block; margin-top:4px; color:var(--ink-600); }
.form-card { padding:32px; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.form-field { display:grid; gap:8px; }
.form-field.full { grid-column:1/-1; }
.form-field label { font-weight:750; font-size:.9rem; }
.form-field input, .form-field textarea {
  width:100%;
  padding:14px 15px;
  color:var(--ink-900);
  background:var(--white);
  border:1px solid var(--ink-200);
  border-radius:12px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field textarea:focus { border-color:var(--violet); box-shadow:0 0 0 4px rgba(123,69,245,.12); }
.form-field textarea { min-height:160px; resize:vertical; }
.form-actions { display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:20px; }
.form-status { color:var(--ink-500); font-size:.88rem; }
.form-status.is-success { color:var(--success); }
.form-status.is-error { color:var(--danger); }

.legal-wrap { max-width:860px; }
.legal-summary { padding:24px; margin-bottom:34px; background:var(--ink-50); border:1px solid var(--ink-100); border-radius:16px; color:var(--ink-600); }
.legal-meta { margin-top:14px; color:#8190a6; font-size:.88rem; }
.legal-content h2 { margin-top:42px; font-size:1.75rem; }
.legal-content h3 { margin-top:26px; font-size:1.2rem; }
.legal-content p, .legal-content ul { margin-top:13px; color:var(--ink-700); }
.legal-content li { margin:8px 0; }

.support-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.support-card { padding:26px; }
.support-card p { margin-top:10px; color:var(--ink-600); }
.support-card a { display:inline-flex; margin-top:17px; color:var(--violet); font-weight:800; }

.lightbox { width:min(92vw, 440px); padding:12px; border:0; border-radius:30px; background:#0a1220; box-shadow:var(--shadow-lg); }
.lightbox::backdrop { background:rgba(0,0,0,.78); backdrop-filter:blur(5px); }
.lightbox img { width:100%; border-radius:22px; }
.lightbox-close { position:absolute; top:18px; right:18px; width:38px; height:38px; display:grid; place-items:center; color:var(--white); background:rgba(0,0,0,.6); border:1px solid rgba(255,255,255,.2); border-radius:50%; }

[data-reveal] { opacity:1; transform:none; }
[data-reveal].is-visible { opacity:1; transform:none; }

@media (max-width: 1080px) {
  .desktop-nav { gap:18px; }
  .hero-inner { grid-template-columns:1fr; text-align:center; }
  .hero-copy { margin-inline:auto; }
  .hero-copy .lead { margin-inline:auto; }
  .hero-actions, .platform-row { justify-content:center; }
  .hero-visual { min-height:560px; }
  .featured-panel { grid-template-columns:100px 1fr; }
  .featured-meta { grid-column:1/-1; grid-template-columns:repeat(2,1fr); }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .category-grid { grid-template-columns:repeat(3,1fr); }
  .footer-main { grid-template-columns:1.2fr repeat(3,.8fr); gap:28px; }
  .app-hero-grid { grid-template-columns:1fr; }
  .app-hero-copy { max-width:780px; }
  .app-visual-stack { min-height:540px; }
  .content-layout { grid-template-columns:1fr; }
  .sticky-facts { position:static; }
}

@media (max-width: 820px) {
  :root { --header-height:68px; }
  .desktop-nav, .header-actions { display:none; }
  .menu-button { display:grid; }
  .section { padding:76px 0; }
  .hero-inner { padding:54px 0 78px; }
  .hero-visual { min-height:510px; }
  .phone { width:255px; }
  .hero-orbit { width:440px; height:440px; }
  .feature-chip { width:152px; padding:13px; }
  .chip-one { right:1%; }
  .chip-two { left:1%; bottom:100px; }
  .chip-three { right:1%; bottom:48px; }
  .app-icon-float { width:92px; left:5%; }
  .featured-panel { margin-top:-34px; }
  .grid-3 { grid-template-columns:1fr; }
  .faq-layout { grid-template-columns:1fr; gap:28px; }
  .faq-intro { position:static; }
  .cta-inner { align-items:flex-start; flex-direction:column; }
  .footer-main { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .app-list-card { grid-template-columns:110px 1fr; }
  .app-list-card > .button { grid-column:1/-1; justify-self:start; }
  .contact-grid { grid-template-columns:1fr; }
  .support-grid { grid-template-columns:1fr; }
}

@media (max-width: 600px) {
  .container { width:min(calc(100% - 28px), var(--container)); }
  .section { padding:62px 0; }
  h1 { font-size:clamp(2.35rem,12vw,3.65rem); }
  h2 { font-size:clamp(1.85rem,9vw,2.8rem); }
  .hero-copy .lead { font-size:1rem; }
  .hero-actions { display:grid; grid-template-columns:1fr; }
  .hero-actions .button { width:100%; }
  .platform-row { gap:14px; font-size:.82rem; }
  .hero-visual { min-height:470px; margin-top:10px; }
  .hero-orbit { width:350px; height:350px; }
  .phone { width:222px; border-radius:36px; }
  .phone-screen { border-radius:28px; }
  .feature-chip { width:128px; padding:11px; border-radius:15px; }
  .feature-chip strong { font-size:.77rem; }
  .feature-chip span { font-size:.67rem; }
  .app-icon-float { top:30px; width:78px; border-radius:21px; }
  .app-icon-float img { border-radius:17px; }
  .chip-one { top:65px; }
  .chip-two { bottom:75px; }
  .chip-three { bottom:26px; }
  .featured-panel { grid-template-columns:78px 1fr; padding:20px; gap:17px; border-radius:22px; }
  .featured-icon { width:78px; border-radius:20px; }
  .featured-copy h2 { font-size:1.45rem; }
  .featured-copy p { font-size:.88rem; }
  .featured-meta { grid-template-columns:1fr; }
  .grid-4, .grid-2 { grid-template-columns:1fr; }
  .category-grid { grid-template-columns:repeat(2,1fr); }
  .category-card { min-height:155px; padding:18px; }
  .screen-card { flex-basis:195px; }
  .footer-main { grid-template-columns:1fr; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .page-hero { padding:70px 0 58px; }
  .app-title-row { align-items:flex-start; }
  .app-title-icon { width:82px; border-radius:22px; }
  .app-hero-actions { align-items:stretch; flex-direction:column; }
  .app-hero-actions .button, .app-hero-actions .store-badge { width:100%; }
  .app-visual-stack { min-height:460px; }
  .app-visual-stack .phone { width:230px; }
  .app-visual-stack .screen-mini { width:125px; }
  .app-visual-stack .mini-a { left:-5px; }
  .app-visual-stack .mini-b { right:-5px; }
  .app-list-card { grid-template-columns:78px 1fr; padding:20px; gap:18px; }
  .app-list-icon { border-radius:20px; }
  .form-grid { grid-template-columns:1fr; }
  .form-field.full { grid-column:auto; }
  .form-card { padding:22px; }
}

@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; }
}
