:root {
  --ink: #03173c;
  --ink-2: #10264c;
  --paper: #f7f8fb;
  --white: #ffffff;
  --muted: #6f7788;
  --line: rgba(3, 23, 60, 0.10);
  --purple: #6268f1;
  --orange: #fb765f;
  --shadow: 0 28px 80px rgba(3, 23, 60, 0.10);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(98,104,241,.10), transparent 26rem),
    radial-gradient(circle at 88% 86%, rgba(251,118,95,.10), transparent 26rem),
    var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: relative;
  z-index: 5;
  padding: 24px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 112px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--white); color: var(--ink); }

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  place-items: center;
  padding: 54px 0 86px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}
.eyebrow, .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  box-shadow: 0 0 0 5px rgba(98,104,241,.08);
}
.hero h1 {
  max-width: 760px;
  margin: 24px 0 20px;
  font-size: clamp(54px, 7.1vw, 104px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 850;
}
.hero h1 .gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #4f55e8 10%, #765ee5 46%, #ef6c87 78%, #fb765f 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 19px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 12px 28px rgba(3,23,60,.16); }
.button-secondary { background: var(--white); border: 1px solid var(--line); }

.visual-wrap { position: relative; min-height: 560px; display: grid; place-items: center; }
.glow {
  position: absolute;
  inset: 12% 4% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 43%, rgba(98,104,241,.34), transparent 37%),
    radial-gradient(circle at 62% 70%, rgba(251,118,95,.27), transparent 38%);
  filter: blur(42px);
  opacity: .82;
}
.app-card {
  position: relative;
  width: min(440px, 92%);
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.74);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.app-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.app-card-head img { width: 62px; height: 62px; border-radius: 15px; box-shadow: 0 9px 24px rgba(3,23,60,.10); }
.app-name { font-weight: 850; font-size: 21px; letter-spacing: -.02em; }
.app-sub { margin-top: 4px; color: var(--muted); font-size: 13px; }
.capture-panel {
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  padding: 24px;
  color: white;
  background: #111522;
}
.capture-panel::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -52px;
  top: -74px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #f37a73 0, #8d5de2 42%, #3b3fb2 70%, transparent 72%);
  filter: blur(3px);
  opacity: .9;
}
.capture-panel > * { position: relative; z-index: 1; }
.capture-label { color: #acafff; font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.capture-title { margin: 12px 0 8px; max-width: 270px; font-size: 28px; line-height: 1.05; letter-spacing: -.04em; }
.capture-desc { margin: 0 0 20px; max-width: 295px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.5; }
.fake-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.fake-button { min-height: 43px; border-radius: 12px; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.fake-button.light { background: white; color: #111522; }
.fake-button.dark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.palette-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 16px; }
.swatch { aspect-ratio: 1; border-radius: 13px; border: 1px solid rgba(3,23,60,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }

.mini-note { margin-top: 18px; padding: 14px 16px; border-radius: 16px; background: rgba(3,23,60,.045); color: var(--muted); font-size: 12px; line-height: 1.45; }

.page-main { padding: 70px 0 110px; }
.page-head { max-width: 760px; margin-bottom: 48px; }
.page-head h1 { margin: 14px 0 15px; font-size: clamp(44px, 6vw, 72px); line-height: .98; letter-spacing: -.055em; }
.page-head p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.content-card {
  max-width: 900px;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(3,23,60,.06);
}
.content-card h2 { margin: 34px 0 10px; font-size: 23px; letter-spacing: -.025em; }
.content-card h2:first-child { margin-top: 0; }
.content-card p, .content-card li { color: #596276; font-size: 15px; line-height: 1.72; }
.content-card ul { padding-left: 20px; }
.content-card a { color: var(--purple); font-weight: 750; }
.notice { padding: 17px 18px; border-radius: 16px; background: rgba(98,104,241,.07); border: 1px solid rgba(98,104,241,.12); color: var(--ink-2); line-height: 1.6; }

.support-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; max-width: 1000px; }
.support-card {
  padding: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.support-card h2 { margin: 0 0 10px; font-size: 23px; letter-spacing: -.03em; }
.support-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.support-card .button { margin-top: 22px; }
.faq { display: grid; gap: 12px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: 17px; padding: 18px 20px; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq details p { margin-top: 10px; font-size: 14px; }

.site-footer { padding: 28px 0 36px; }
.footer-inner { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 22px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 860px) {
  .hero { min-height: auto; padding-top: 34px; }
  .hero-grid, .support-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 620px; }
  .visual-wrap { min-height: 490px; }
  .app-card { width: min(440px, 100%); }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1180px); }
  .site-header { padding: 16px 0; }
  .brand img { width: 94px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 8px 9px; font-size: 12px; }
  .hero { padding-bottom: 54px; }
  .hero h1 { font-size: clamp(49px, 16vw, 72px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .visual-wrap { min-height: 440px; }
  .app-card { padding: 18px; border-radius: 28px; }
  .capture-panel { padding: 20px; }
  .capture-title { font-size: 24px; }
  .page-main { padding: 42px 0 72px; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Expanded landing page */
.section { padding: 108px 0; }
.section + .section { position: relative; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { margin-left: auto; margin-right: auto; }
.section-heading h2, .split-copy h2, .trust-copy h2, .final-cta h2 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 5.3vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}
.section-heading p, .split-copy p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-meta span { padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.66); border: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 750; }
.intro-section { padding-top: 84px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.feature-card { position: relative; overflow: hidden; min-height: 420px; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.78); box-shadow: 0 18px 55px rgba(3,23,60,.05); }
.feature-card h3 { margin: 26px 0 10px; font-size: 26px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.feature-number { position: absolute; top: 28px; right: 28px; color: rgba(3,23,60,.22); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; font-size: 22px; font-weight: 900; }
.feature-icon-purple { background: rgba(98,104,241,.12); color: var(--purple); }
.feature-icon-orange { background: rgba(251,118,95,.12); color: var(--orange); }
.feature-icon-navy { background: rgba(3,23,60,.08); color: var(--ink); }
.feature-demo { position: absolute; left: 28px; right: 28px; bottom: 28px; height: 118px; border-radius: 20px; background: #f2f4f8; border: 1px solid rgba(3,23,60,.06); }
.picker-demo { background: linear-gradient(135deg,#f5efe7,#eef2ff 48%,#fff0ec); }
.picker-crosshair { position:absolute; width:42px; height:42px; border:2px solid white; border-radius:50%; left:48%; top:42%; transform:translate(-50%,-50%); box-shadow:0 0 0 1px rgba(3,23,60,.18),0 8px 25px rgba(3,23,60,.18); }
.picker-crosshair::before,.picker-crosshair::after { content:""; position:absolute; background:white; box-shadow:0 0 0 1px rgba(3,23,60,.15); }
.picker-crosshair::before { width:2px; height:54px; left:18px; top:-8px; }
.picker-crosshair::after { height:2px; width:54px; top:18px; left:-8px; }
.picker-chip { position:absolute; right:12px; bottom:12px; display:flex; align-items:center; gap:8px; padding:7px 9px; border-radius:10px; background:white; box-shadow:0 8px 20px rgba(3,23,60,.09); font-size:11px; font-weight:800; }
.picker-chip span { width:15px; height:15px; border-radius:5px; }
.scan-demo { display:grid; grid-template-columns:repeat(5,1fr); gap:7px; padding:12px; background:white; }
.scan-demo span { border-radius:12px; box-shadow:inset 0 0 0 1px rgba(255,255,255,.2); }
.inspector-demo { padding:18px; background:linear-gradient(145deg,#f3f6fb,#fff); }
.inspector-box { height:52px; border:2px solid var(--purple); border-radius:12px; display:grid; place-items:center; background:white; box-shadow:0 8px 24px rgba(3,23,60,.08); }
.inspector-box span { padding:5px 8px; border-radius:7px; background:var(--ink); color:white; font-size:10px; font-weight:800; transform:translateY(-32px); }
.inspector-values { display:flex; gap:8px; margin-top:12px; }
.inspector-values i { width:22px; height:22px; border-radius:7px; border:1px solid var(--line); }
.split-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:clamp(48px,8vw,110px); align-items:center; }
.split-grid.reverse { grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr); }
.split-copy { max-width:560px; }
.check-list { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:28px; }
.check-list span { padding:12px 14px; border-radius:14px; border:1px solid var(--line); background:rgba(255,255,255,.68); font-size:13px; font-weight:750; }
.check-list span::before { content:"✓"; margin-right:8px; color:var(--purple); }
.product-panel { padding:26px; border-radius:30px; border:1px solid var(--line); background:rgba(255,255,255,.86); box-shadow:0 28px 80px rgba(3,23,60,.08); }
.panel-topline { display:flex; justify-content:space-between; gap:16px; margin-bottom:20px; font-size:12px; font-weight:800; }
.panel-topline span:last-child { color:var(--muted); font-weight:650; }
.large-swatches { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.large-swatch { aspect-ratio:1.2; border-radius:17px; display:flex; align-items:flex-end; padding:12px; box-shadow:inset 0 0 0 1px rgba(255,255,255,.18); }
.large-swatch span { color:white; font-size:11px; font-weight:850; text-shadow:0 1px 4px rgba(0,0,0,.16); }
.large-swatch.light-label span { color:var(--ink); text-shadow:none; }
.inspector-section { background:linear-gradient(180deg,rgba(255,255,255,.18),rgba(98,104,241,.045),rgba(255,255,255,.18)); }
.inspector-sample { display:flex; align-items:center; gap:14px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.sample-color { width:58px; height:58px; border-radius:16px; box-shadow:inset 0 0 0 1px rgba(255,255,255,.2); }
.inspector-sample strong { display:block; font-size:17px; }
.inspector-sample span { display:block; color:var(--muted); font-size:12px; margin-top:4px; }
.value-list { display:grid; gap:9px; margin-top:18px; }
.value-list > div { display:grid; grid-template-columns:50px 1fr auto; gap:12px; align-items:center; min-height:46px; padding:0 12px; border-radius:12px; background:#f7f8fb; }
.value-list span { color:var(--muted); font-size:11px; font-weight:800; }
.value-list strong { font-size:13px; }
.value-list button { border:0; background:white; border-radius:8px; padding:6px 8px; color:var(--muted); font-size:10px; font-weight:800; }
.contrast-mini { margin-top:14px; display:flex; justify-content:space-between; align-items:center; padding:15px; border-radius:14px; background:var(--ink); color:white; }
.contrast-mini span { display:block; color:rgba(255,255,255,.6); font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.contrast-mini strong { display:block; font-size:23px; margin-top:2px; }
.contrast-badges { display:flex; gap:7px; }
.contrast-badges span { padding:7px 8px; border-radius:8px; background:rgba(255,255,255,.1); color:white; }
.format-row { display:flex; flex-wrap:wrap; gap:9px; margin-top:26px; }
.format-row span { padding:9px 12px; border-radius:999px; background:var(--ink); color:white; font-size:12px; font-weight:850; }
.small-copy { margin-top:22px !important; font-size:15px !important; }
.palette-library-section { padding-top:120px; }
.library-layout { display:grid; grid-template-columns:.85fr 1.15fr; gap:22px; }
.library-list { display:grid; gap:12px; }
.library-card { padding:18px; border-radius:19px; border:1px solid var(--line); background:rgba(255,255,255,.76); }
.library-card.active { box-shadow:0 18px 45px rgba(3,23,60,.07); border-color:rgba(98,104,241,.22); }
.library-card > div:first-child { display:flex; justify-content:space-between; gap:15px; align-items:center; }
.library-card strong { font-size:14px; }
.library-card span { color:var(--muted); font-size:11px; }
.library-strip { display:flex; gap:6px; margin-top:14px; }
.library-strip i { flex:1; height:36px; border-radius:9px; border:1px solid rgba(3,23,60,.06); }
.export-card { overflow:hidden; border-radius:24px; background:#111522; color:white; box-shadow:0 28px 80px rgba(3,23,60,.12); }
.export-head { display:flex; justify-content:space-between; gap:14px; padding:18px 20px; border-bottom:1px solid rgba(255,255,255,.08); font-size:12px; font-weight:800; }
.export-head span:last-child { color:rgba(255,255,255,.5); font-weight:650; }
.export-card pre { margin:0; padding:28px; min-height:230px; color:#d8dafd; font:13px/1.8 ui-monospace,SFMono-Regular,Menlo,monospace; }
.export-options { display:flex; gap:8px; padding:14px; background:rgba(255,255,255,.04); }
.export-options span { padding:8px 10px; border-radius:8px; color:rgba(255,255,255,.5); font-size:10px; font-weight:800; }
.export-options .selected { background:white; color:#111522; }
.trust-card { position:relative; overflow:hidden; min-height:470px; display:grid; grid-template-columns:1fr .8fr; align-items:center; gap:40px; padding:clamp(34px,6vw,72px); border-radius:38px; background:#0d1220; color:white; box-shadow:0 30px 90px rgba(3,23,60,.15); }
.trust-copy { position:relative; z-index:2; max-width:620px; }
.trust-copy h2 { color:white; }
.trust-copy p { color:rgba(255,255,255,.62); font-size:18px; line-height:1.65; }
.dark-eyebrow { border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.06); color:white; }
.trust-points { display:flex; flex-wrap:wrap; gap:9px; margin:24px 0 28px; }
.trust-points span { padding:8px 10px; border-radius:999px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.8); font-size:11px; font-weight:800; }
.button-light { background:white; color:#111522; }
.trust-mark { position:relative; min-height:310px; display:grid; place-items:center; }
.trust-mark img { position:relative; z-index:2; width:150px; border-radius:34px; box-shadow:0 30px 80px rgba(0,0,0,.3); }
.orbit { position:absolute; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.orbit-one { width:290px; height:290px; }
.orbit-two { width:410px; height:410px; border-color:rgba(98,104,241,.22); }
.trust-card::after { content:""; position:absolute; width:440px; height:440px; right:-80px; top:20px; border-radius:50%; background:radial-gradient(circle,rgba(98,104,241,.34),rgba(251,118,95,.14) 42%,transparent 69%); filter:blur(8px); }
.final-cta-section { padding-bottom:80px; }
.final-cta { text-align:center; max-width:880px; }
.final-cta > img { width:92px; margin:0 auto 24px; border-radius:22px; box-shadow:0 18px 45px rgba(3,23,60,.12); }
.final-cta .eyebrow { margin-left:auto; margin-right:auto; }
.final-cta p { margin:0 auto; max-width:560px; color:var(--muted); font-size:18px; line-height:1.6; }
.centered-actions { justify-content:center; }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns:1fr; }
  .feature-card { min-height:360px; }
  .split-grid, .split-grid.reverse, .library-layout, .trust-card { grid-template-columns:1fr; }
  .split-copy { max-width:none; }
  .trust-mark { min-height:270px; }
}

@media (max-width: 640px) {
  .section { padding:76px 0; }
  .section-heading h2, .split-copy h2, .trust-copy h2, .final-cta h2 { font-size:clamp(38px,12vw,56px); }
  .section-heading p, .split-copy p, .trust-copy p, .final-cta p { font-size:16px; }
  .check-list { grid-template-columns:1fr; }
  .large-swatches { grid-template-columns:repeat(2,1fr); }
  .library-layout { gap:14px; }
  .trust-card { border-radius:28px; }
  .orbit-two { width:330px; height:330px; }
}
