/* Find My Stuff — DualTake *format* (oversized highlighted headline, sticker
   badges, glow blobs, phone hero) in Find My Stuff's OWN brand colors:
   brand blue + icon-pin amber on a deep navy that matches the app's dark UI. */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b1220;
  --bg-2: #0f1a2d;
  --surface: #142339;
  --surface-2: #1b2d49;
  --ink: #eef3fb;
  --ink-soft: #a6b6cf;
  --ink-mute: #74859f;
  --line: #213450;
  --line-soft: #1a2942;

  --accent: #2b86ff;        /* brand blue, brightened for text/highlights on navy */
  --accent-fill: #0672ff;   /* solid brand blue for CTAs / fills */
  --accent-ink: #ffffff;
  --amber: #ffb224;         /* from the app icon's location pin */
  --amber-ink: #1c1303;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --pill: 999px;

  --shadow-md: 0 18px 50px rgba(0, 0, 0, .45);
  --shadow-lg: 0 40px 90px rgba(2, 10, 26, .6);
  --glow-blue: 0 10px 40px rgba(6, 114, 255, .45);

  --font-disp: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #5aa3ff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }

/* Display type helpers */
.display { font-family: var(--font-disp); font-weight: 900; letter-spacing: -.03em; line-height: .98; }

/* Highlighted words */
.hl { display: inline-block; padding: 0 .18em; border-radius: 10px; transform: rotate(-1.5deg); }
.hl-blue { background: var(--accent-fill); color: var(--accent-ink); }
.hl-amber { background: var(--amber); color: var(--amber-ink); transform: rotate(1.5deg); }
.txt-blue { color: var(--accent); }
.txt-amber { color: var(--amber); }

/* Eyebrow with brand ticks */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 22px;
}
.eyebrow .ticks { display: inline-flex; gap: 4px; }
.eyebrow .ticks i { width: 14px; height: 3px; border-radius: 2px; display: block; }
.eyebrow .ticks i:nth-child(1) { background: var(--accent); }
.eyebrow .ticks i:nth-child(2) { background: var(--amber); }
.eyebrow .ticks i:nth-child(3) { background: #5aa3ff; }

/* Sticker badge */
.sticker {
  position: absolute; z-index: 5;
  font-family: var(--font-disp); font-weight: 800; font-size: .82rem; letter-spacing: .02em;
  padding: 8px 14px; border-radius: 12px;
  color: var(--accent-ink); background: var(--accent-fill);
  box-shadow: var(--shadow-md); transform: rotate(-8deg);
}
.sticker.amber { background: var(--amber); color: var(--amber-ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 18, 32, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-disp); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand img { width: 30px; height: 30px; border-radius: 9px; }
.site-header nav { display: flex; align-items: center; gap: 26px; }
.site-header nav a.link { color: var(--ink-soft); font-size: .92rem; font-weight: 500; }
.site-header nav a.link:hover { color: var(--ink); }
@media (max-width: 720px) { .site-header nav a.link { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .95rem; border-radius: var(--pill); padding: 12px 22px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .1s var(--ease-out), background-color .15s var(--ease-out), box-shadow .15s var(--ease-out), border-color .15s var(--ease-out);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent-fill); color: var(--accent-ink); box-shadow: var(--glow-blue); }
.btn-primary:hover { background: #2b86ff; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--surface-2); }

/* Store badges */
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px; border-radius: var(--pill);
  background: var(--ink); color: var(--bg);
  transition: transform .1s var(--ease-out), background-color .15s var(--ease-out);
}
.store-badge:hover { background: #fff; color: var(--bg); }
.store-badge:active { transform: scale(.98); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .lines { display: flex; flex-direction: column; line-height: 1.12; }
.store-badge .lines small { font-size: .66rem; opacity: .7; font-weight: 600; }
.store-badge .lines strong { font-size: 1.04rem; font-weight: 800; letter-spacing: -.01em; font-family: var(--font-disp); }
.store-badge.brand { background: var(--accent-fill); color: #fff; }
.store-badge.brand:hover { background: #2b86ff; }

/* ---------- Glow blobs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; z-index: 0; }
.blob.blue { background: radial-gradient(circle, #1f6dff, transparent 70%); }
.blob.amber { background: radial-gradient(circle, #ffae1f, transparent 70%); opacity: .32; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero .blob.blue { width: 640px; height: 640px; top: -260px; left: -200px; opacity: .55; }
.hero .blob.amber { width: 520px; height: 520px; bottom: -300px; right: -160px; }
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center;
  padding-top: 76px; padding-bottom: 92px;
}
.hero h1 { margin: 0 0 22px; font-size: clamp(2.9rem, 7vw, 5rem); }
.hero h1 .display { display: inline; }
.hero .lead { margin: 0 0 32px; font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 34ch; }
.hero .reassure { margin: 24px 0 0; font-size: .85rem; color: var(--ink-mute); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero .reassure svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.hero-visual .phone { position: relative; z-index: 3; }
.hero-visual .sticker.s1 { top: 28px; right: 4px; }
.hero-visual .sticker.s2 { bottom: 56px; left: 8px; transform: rotate(7deg); }

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 10px; padding-top: 44px; padding-bottom: 52px; text-align: center; }
  .hero .lead { max-width: none; }
  .hero .stores, .hero .reassure, .eyebrow { justify-content: center; }
  .hero-visual { min-height: 470px; margin-top: 14px; }
}

/* ---------- Phone frame ---------- */
.phone {
  position: relative;
  width: 274px; max-width: 72vw; aspect-ratio: 274 / 560;
  background: #060b15; border-radius: 44px; padding: 10px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .08);
}
.phone::before {
  content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; background: #060b15; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone .screen { width: 100%; height: 100%; border-radius: 35px; overflow: hidden; background: #0b1320; }
.phone .screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ---------- Sections ---------- */
section { position: relative; padding-block: clamp(68px, 9vw, 112px); }
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { margin: 0 0 16px; font-family: var(--font-disp); font-weight: 900; font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: -.03em; line-height: 1.04; }
.section-head p { margin: 0; font-size: 1.1rem; color: var(--ink-soft); }

/* Feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row + .feature-row { margin-top: clamp(64px, 9vw, 116px); }
.feature-row .copy h3 { margin: 0 0 14px; font-family: var(--font-disp); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.02em; }
.feature-row .copy p { margin: 0 0 18px; color: var(--ink-soft); font-size: 1.05rem; }
.feature-row .copy ul { margin: 0; padding: 0; list-style: none; }
.feature-row .copy li { display: flex; gap: 11px; align-items: flex-start; padding: 7px 0; color: var(--ink-soft); font-size: 1rem; }
.feature-row .copy li svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 3px; }

.feature-row .shot {
  position: relative; display: flex; justify-content: center; align-items: center; padding: 40px;
  border-radius: var(--radius-lg);
  background: radial-gradient(80% 70% at 50% 30%, rgba(43, 134, 255, .18), transparent 70%), var(--bg-2);
  border: 1px solid var(--line-soft); overflow: hidden;
}
.feature-row:nth-child(even) .shot { order: -1; background: radial-gradient(80% 70% at 50% 30%, rgba(255, 178, 36, .16), transparent 70%), var(--bg-2); }
.feature-row .shot .decor { position: absolute; opacity: .92; filter: drop-shadow(0 16px 28px rgba(0,0,0,.5)); z-index: 1; }
.feature-row .shot .decor.shelf { width: 120px; left: 18px; bottom: -10px; }
.feature-row .shot .decor.box { width: 130px; right: 14px; bottom: 18px; }
.feature-row .shot .decor.towels { width: 140px; right: 18px; top: 18px; }
.feature-row .shot .phone { z-index: 2; }
@media (max-width: 820px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row:nth-child(even) .shot { order: 0; }
  .feature-row .copy { text-align: center; }
  .feature-row .copy li { text-align: left; }
  .feature-row .shot .decor { display: none; }
}

/* Steps */
.steps-wrap { background: var(--bg-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps.three { grid-template-columns: repeat(3, 1fr); }
.steps.three .step { padding: 32px 28px; }
.steps.three .num { width: 44px; height: 44px; font-size: 1.2rem; border-radius: 13px; }
.steps.three h4 { font-size: 1.22rem; }
.steps.three p { font-size: 1rem; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.step .num {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; background: var(--accent-fill); color: #fff;
  font-family: var(--font-disp); font-weight: 900; margin-bottom: 16px;
}
.step:nth-child(2) .num { background: var(--amber); color: var(--amber-ink); }
.step:nth-child(3) .num { background: #5aa3ff; color: #06122b; }
.step:nth-child(4) .num { background: var(--ink); color: var(--bg); }
.step h4 { margin: 0 0 6px; font-family: var(--font-disp); font-weight: 700; font-size: 1.1rem; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--ink-mute); font-size: .94rem; }
@media (max-width: 880px) { .steps, .steps.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps.three { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .15s var(--ease-out), border-color .15s var(--ease-out), background-color .15s var(--ease-out);
}
@media (hover: hover) { .card:hover { transform: translateY(-4px); border-color: var(--surface-2); background: var(--surface-2); } }
.card .ico { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 13px; background: rgba(43, 134, 255, .16); color: var(--accent); margin-bottom: 16px; }
.card:nth-child(3n+2) .ico { background: rgba(255, 178, 36, .16); color: var(--amber); }
.card:nth-child(3n) .ico { background: rgba(90, 163, 255, .18); color: #5aa3ff; }
.card .ico svg { width: 23px; height: 23px; }
.card h4 { margin: 0 0 6px; font-family: var(--font-disp); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--ink-mute); font-size: .95rem; }
@media (max-width: 880px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

/* CTA */
.cta-wrap { background: var(--bg); }
.cta {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 76px);
  background: var(--bg-2); border: 1px solid var(--line);
}
.cta .blob.blue { width: 440px; height: 440px; top: -210px; left: -120px; opacity: .5; }
.cta .blob.amber { width: 420px; height: 420px; bottom: -240px; right: -120px; }
.cta h2 { position: relative; z-index: 2; margin: 0 0 14px; font-family: var(--font-disp); font-weight: 900; font-size: clamp(2rem, 4.6vw, 3rem); letter-spacing: -.03em; line-height: 1.02; }
.cta p { position: relative; z-index: 2; margin: 0 0 30px; color: var(--ink-soft); font-size: 1.12rem; }
.cta .stores { position: relative; z-index: 2; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 50px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer nav a { color: var(--ink-soft); font-size: .9rem; }
.site-footer nav a:hover { color: var(--ink); }
.site-footer .copy { width: 100%; color: var(--ink-mute); font-size: .82rem; margin-top: 6px; }

/* ---------- Legal / inner pages ---------- */
.doc { max-width: 760px; margin: 0 auto; padding-block: clamp(48px, 7vw, 80px); }
.doc .back { display: inline-block; font-size: .9rem; font-weight: 600; margin-bottom: 22px; }
.doc h1 { margin: 0 0 6px; font-family: var(--font-disp); font-weight: 900; font-size: clamp(2.1rem, 4.4vw, 3rem); letter-spacing: -.03em; }
.doc .updated { margin: 0 0 36px; color: var(--ink-mute); font-size: .9rem; }
.doc h2 { margin: 40px 0 12px; font-family: var(--font-disp); font-weight: 700; font-size: 1.34rem; letter-spacing: -.02em; scroll-margin-top: 84px; }
.doc h3 { margin: 22px 0 8px; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.doc p, .doc li { color: var(--ink-soft); font-size: 1.02rem; }
.doc ul { padding-left: 1.3rem; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--ink); }
.doc .lede { font-size: 1.14rem; color: var(--ink); }
.doc .note { background: rgba(43, 134, 255, .1); border: 1px solid rgba(43, 134, 255, .32); border-radius: var(--radius); padding: 18px 20px; margin: 24px 0; }
.doc .note p { margin: 0; color: var(--ink-soft); }
.doc .toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 0 0 32px; }
.doc .toc strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); margin-bottom: 10px; }
.doc .toc ul { list-style: none; padding: 0; margin: 0; }
.doc .toc li { margin-bottom: 6px; }
.doc address { font-style: normal; color: var(--ink-soft); }

/* ---------- A11y / motion ---------- */
:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent); border-radius: 8px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
