:root {
  --paper: #f7f4ec;
  --ink: #141414;
  --muted: #64615c;
  --line: rgba(20,20,20,.13);
  --amber: #e7a128;
  --coral: #ef5c47;
  --purple: #8057eb;
  --green: #16a366;
  --blue: #3978e8;
  --radius: 30px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: inherit; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 22px; font-weight: 820; letter-spacing: -.04em; }
.brand img { border-radius: 10px; box-shadow: 0 7px 22px rgba(18,18,18,.16); }
.site-header nav, .site-footer nav { display: flex; gap: 26px; }
.site-header nav a, .site-footer nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 650; }
.site-header nav a:hover, .site-footer nav a:hover { color: var(--ink); }

.hero { min-height: 720px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; padding-block: 70px 90px; }
.eyebrow { margin: 0 0 17px; font-size: 12px; font-weight: 850; letter-spacing: .16em; }
.coral { color: var(--coral); }
.purple { color: var(--purple); }
.green { color: var(--green); }
.blue { color: var(--blue); }
.amber { color: var(--amber); }
.hero h1 { margin: 0; font-size: clamp(58px, 7.2vw, 104px); line-height: .91; letter-spacing: -.073em; }
.hero h1 span { color: var(--coral); }
.lede { margin: 30px 0; max-width: 600px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-size: 15px; font-weight: 760; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--coral); box-shadow: 0 14px 34px rgba(239,92,71,.24); }
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.button.dark { color: #fff; background: var(--ink); box-shadow: 0 14px 34px rgba(20,20,20,.18); }
.microcopy { color: #8a867f; margin: 18px 0 0; font-size: 12px; font-weight: 620; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; isolation: isolate; overflow: clip; }
.halo { position: absolute; border-radius: 999px; filter: blur(2px); z-index: -2; }
.halo-one { width: 470px; height: 470px; background: radial-gradient(circle at 50% 45%, #ffe0d8 0, #ffdcd1 35%, rgba(255,220,209,0) 72%); }
.halo-two { width: 250px; height: 250px; top: 25px; right: 0; background: rgba(255,255,255,.7); }
.watch-shell { position: relative; width: min(420px, 85%); padding: 24px 20px; border-radius: 110px; background: linear-gradient(145deg,#292929,#050505 58%); box-shadow: 0 42px 90px rgba(36,25,19,.28), inset 0 0 0 3px #464646; }
.watch-shell::before, .watch-shell::after { content: ""; position: absolute; left: 25%; width: 50%; height: 90px; background: #151515; z-index: -1; }
.watch-shell::before { top: -64px; border-radius: 35px 35px 10px 10px; }
.watch-shell::after { bottom: -64px; border-radius: 10px 10px 35px 35px; }
.watch-shell img { width: 100%; border-radius: 85px; }
.watch-crown { position: absolute; right: -22px; top: 31%; width: 22px; height: 68px; border-radius: 0 16px 16px 0; background: #202020; }
.pulse { position: absolute; width: 15px; height: 15px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 9px rgba(239,92,71,.13), 0 0 0 20px rgba(239,92,71,.06); animation: pulse 1s ease-out infinite; }
.pulse-one { left: 4%; top: 30%; }
.pulse-two { right: 6%; bottom: 20%; animation-delay: .5s; }
@keyframes pulse { 50% { transform: scale(1.28); } }

.statement { padding: 120px 0; border-block: 1px solid var(--line); }
.statement p { margin: 0; font-size: clamp(54px, 8.3vw, 118px); line-height: .93; font-weight: 850; letter-spacing: -.075em; }

.feature-grid { padding-block: 90px; display: grid; gap: 28px; }
.feature { min-height: 600px; border-radius: var(--radius); padding: clamp(28px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 54px; overflow: hidden; }
.feature-purple { background: radial-gradient(circle at 85% 12%,#fff 0 6%,transparent 28%),#eee7ff; }
.feature-green { background: radial-gradient(circle at 10% 90%,#fff 0 6%,transparent 28%),#dcf3e5; }
.feature-blue { background: radial-gradient(circle at 80% 10%,#fff 0 5%,transparent 26%),#e1ebff; grid-template-columns: .8fr 1.2fr; }
.feature.reverse .feature-copy { order: 2; }
.feature h2, .section-heading h2, .privacy-callout h2, .final-cta h2, .contact-panel h2 { margin: 0 0 20px; font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.055em; }
.feature-copy > p:last-child, .section-heading > p:last-child, .privacy-callout p { color: var(--muted); font-size: 18px; line-height: 1.6; }
.feature-media { display: grid; place-items: center; }
.watch-card img { width: min(380px, 100%); border-radius: 82px; box-shadow: 0 28px 60px rgba(25,20,22,.2); }
.visual-trio { min-height: 420px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; gap: 12px; }
.visual-trio img { border-radius: 44px; box-shadow: 0 18px 40px rgba(25,20,22,.17); }
.visual-trio img:nth-child(2) { transform: translateY(-25px); }

.phone-section { padding: 100px 0 130px; }
.section-heading { max-width: 820px; margin-bottom: 52px; }
.phone-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.phone-gallery img { border-radius: 36px; box-shadow: 0 25px 60px rgba(20,20,20,.13); }
.phone-gallery img:nth-child(2) { transform: translateY(34px); }

.privacy-callout { padding: 70px; border-radius: var(--radius); background: #dff3e7; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.privacy-callout p { margin-top: 0; }
.text-link { font-weight: 760; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.final-cta { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 24px; }
.final-cta img { border-radius: 26px; box-shadow: 0 22px 60px rgba(20,20,20,.17); }
.final-cta h2 { max-width: 700px; margin: 0; }

.site-footer { min-height: 110px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; color: var(--muted); font-size: 13px; }
.footer-brand { color: var(--ink); font-weight: 820; font-size: 18px; }
.footer-brand span { color: var(--muted); font-size: 12px; font-weight: 600; }
.site-footer > p { text-align: right; }

.legal { max-width: 780px; padding-block: 90px 120px; }
.legal h1 { margin: 0; font-size: clamp(56px, 9vw, 92px); line-height: .94; letter-spacing: -.065em; }
.updated { margin: 16px 0 46px; color: var(--muted); font-size: 14px; }
.legal-summary { padding: 28px 30px; margin-bottom: 54px; background: #dff3e7; border-radius: 22px; }
.blue-summary { background: #e1ebff; }
.legal-summary strong { display: block; margin-bottom: 8px; font-size: 20px; }
.legal-summary p { margin: 0; }
.legal h2 { margin: 42px 0 12px; font-size: 25px; letter-spacing: -.025em; }
.legal p { color: #504d48; font-size: 17px; line-height: 1.72; }
.legal a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.legal-footer { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line); font-weight: 720; }
.support-intro { margin: 18px 0 50px; font-size: 20px !important; }
.faq-grid { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; background: rgba(255,255,255,.48); }
summary { cursor: pointer; font-weight: 760; font-size: 17px; }
details p { margin: 14px 0 0; font-size: 15px !important; }
.contact-panel { margin-top: 70px; padding: 44px; border-radius: 26px; background: #ffe4dd; }
.contact-panel h2 { font-size: 48px; }

@media (max-width: 820px) {
  .site-header nav { gap: 14px; }
  .site-header nav a:first-child { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; gap: 35px; }
  .hero-visual { min-height: 520px; }
  .feature, .feature-blue { grid-template-columns: 1fr; min-height: 0; }
  .feature.reverse .feature-copy { order: initial; }
  .feature-media { order: 2; }
  .privacy-callout { grid-template-columns: 1fr; padding: 42px 28px; gap: 15px; }
  .site-footer { grid-template-columns: 1fr; padding-block: 34px; }
  .site-footer > p { text-align: left; }
}

@media (max-width: 560px) {
  .shell, .site-header { width: min(100% - 24px,1180px); }
  .site-header nav a { font-size: 12px; }
  .brand span { font-size: 19px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: 57px; }
  .hero-visual { min-height: 430px; }
  .watch-shell { border-radius: 78px; }
  .watch-shell img { border-radius: 60px; }
  .statement { padding-block: 78px; }
  .feature-grid { padding-block: 55px; }
  .feature { padding: 34px 22px; gap: 30px; border-radius: 24px; }
  .feature h2, .section-heading h2, .privacy-callout h2, .final-cta h2 { font-size: 42px; }
  .watch-card img { border-radius: 58px; }
  .visual-trio { min-height: 250px; }
  .visual-trio img { border-radius: 24px; }
  .phone-gallery { gap: 8px; }
  .phone-gallery img { border-radius: 15px; }
  .phone-section { padding-block: 70px 100px; }
  .legal { padding-block: 60px 90px; }
  .legal h1 { font-size: 58px; }
  .contact-panel { padding: 32px 24px; }
}

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