:root {
  color-scheme: light;
  --cream: #f5efe4;
  --paper: #fffaf2;
  --ink: #1f211c;
  --muted: #645f55;
  --forest: #465c3d;
  --forest-deep: #263622;
  --moss: #8ea878;
  --clay: #b8663f;
  --sun: #d99a43;
  --line: rgba(31, 33, 28, 0.14);
  --shadow: 0 24px 70px rgba(38, 54, 34, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 33, 28, 0.08);
  background: rgba(245, 239, 228, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 7px 18px rgba(38, 54, 34, 0.18); }

.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.92rem; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--forest); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--paper) !important;
  background: var(--forest-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 47%;
  height: 560px;
  background: radial-gradient(circle at 44% 34%, rgba(217, 154, 67, 0.31), transparent 30%),
              radial-gradient(circle at 56% 46%, rgba(142, 168, 120, 0.42), transparent 52%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -0.045em; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(3.4rem, 7vw, 6.5rem); line-height: 0.94; font-weight: 700; }
h1 em { color: var(--forest); font-style: italic; font-weight: 400; }
h2 { margin-bottom: 20px; font-size: clamp(2.35rem, 4.7vw, 4.6rem); line-height: 1.02; }
h3 { margin-bottom: 8px; font-size: 1.18rem; line-height: 1.3; }

.hero-copy { max-width: 620px; margin: 0 0 32px; color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--forest-deep);
  border-radius: 999px;
  background: var(--forest-deep);
  color: #fffaf2;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); background: var(--forest); }
.button.secondary { background: transparent; color: var(--forest-deep); }
.button.secondary:hover { background: rgba(70, 92, 61, 0.08); }
.availability { margin-top: 18px; color: var(--muted); font-size: 0.88rem; }

.phone-stage { position: relative; display: grid; place-items: center; min-height: 650px; }
.phone {
  position: relative;
  width: min(340px, 78vw);
  overflow: hidden;
  border: 10px solid #171813;
  border-radius: 52px;
  background: #171813;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}
.phone img { width: 100%; }
.watch-float {
  position: absolute;
  right: 2%;
  bottom: 7%;
  width: 176px;
  padding: 8px;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 42px;
  background: #090909;
  box-shadow: 0 22px 46px rgba(25, 28, 22, 0.28);
  transform: rotate(-6deg);
}

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,250,242,0.56); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px 20px; border-right: 1px solid var(--line); text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--forest); font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: 0.84rem; }

.section { padding: 112px 0; }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading p { max-width: 640px; margin: 0; color: var(--muted); font-size: 1.08rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 252px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,250,242,0.65);
}
.feature-card .icon { display: grid; width: 48px; height: 48px; margin-bottom: 42px; place-items: center; border-radius: 15px; background: var(--forest); color: white; font-weight: 800; }
.feature-card:nth-child(2) .icon { background: var(--clay); }
.feature-card:nth-child(3) .icon { background: var(--sun); color: var(--ink); }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

.showcase { background: var(--forest-deep); color: var(--paper); }
.showcase .section-heading p { color: rgba(255,250,242,0.7); }
.showcase-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 7vw, 90px); align-items: center; }
.screen-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: end; }
.screen-card { overflow: hidden; border: 8px solid #11120f; border-radius: 38px; box-shadow: 0 28px 70px rgba(0,0,0,0.3); }
.screen-card:last-child { transform: translateY(42px); }
.check-list { display: grid; gap: 22px; margin-top: 34px; }
.check { display: grid; grid-template-columns: 30px 1fr; gap: 12px; }
.check-mark { color: #c4dcaa; font-weight: 900; }
.check p { margin: 3px 0 0; color: rgba(255,250,242,0.7); font-size: 0.95rem; }

.privacy-panel {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 64px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: var(--paper);
  box-shadow: 0 16px 48px rgba(38, 54, 34, 0.08);
}
.privacy-panel p { color: var(--muted); }
.privacy-facts { display: grid; gap: 14px; }
.privacy-fact { padding: 17px 20px; border-radius: 18px; background: rgba(70, 92, 61, 0.09); font-weight: 700; }

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 82px);
  border-radius: 40px;
  background: var(--clay);
  color: #fffaf2;
  text-align: center;
}
.price-card::after { content: ""; position: absolute; inset: auto -110px -210px auto; width: 420px; height: 420px; border: 80px solid rgba(255,250,242,0.1); border-radius: 50%; }
.price-card h2 { position: relative; margin-bottom: 16px; }
.price-card p { position: relative; max-width: 590px; margin: 0 auto 28px; color: rgba(255,250,242,0.84); }
.price { position: relative; margin: 10px 0 28px; font: 700 clamp(3rem, 6vw, 5rem)/1 Georgia, serif; }
.price small { display: block; margin-top: 10px; font: 650 0.9rem/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.price-card .button { position: relative; background: var(--paper); color: var(--forest-deep); border-color: var(--paper); }

.site-footer { padding: 46px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.footer-copy { max-width: 470px; color: var(--muted); font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.9rem; font-weight: 650; }
.footer-links a { text-underline-offset: 4px; }

.legal-page { width: min(780px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 90px; }
.legal-page .back { display: inline-block; margin-bottom: 36px; color: var(--forest); font-weight: 750; text-decoration: none; }
.legal-page .lede { color: var(--muted); font-size: 1.12rem; }
.legal-page .date { color: var(--clay); font-size: 0.84rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.legal-page section { margin-top: 38px; }
.legal-page h1 { font-size: clamp(3rem, 8vw, 5rem); }
.legal-page h2 { color: var(--forest); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1.35rem; letter-spacing: -0.02em; }
.legal-page p, .legal-page li { max-width: 70ch; }
.summary { margin: 32px 0; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }

@media (max-width: 900px) {
  .hero-grid, .showcase-grid, .privacy-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .phone-stage { min-height: 620px; }
  .phone { width: 320px; }
  .watch-float { right: calc(50% - 230px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-card .icon { margin-bottom: 28px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav { min-height: 66px; }
  .brand img { width: 36px; height: 36px; border-radius: 10px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 13px; }
  .hero { padding: 48px 0 66px; }
  h1 { font-size: clamp(3.2rem, 17vw, 4.8rem); }
  .phone-stage { min-height: 540px; }
  .phone { width: min(285px, 76vw); border-width: 8px; border-radius: 44px; }
  .watch-float { right: 0; bottom: 4%; width: 138px; border-radius: 34px; }
  .section { padding: 80px 0; }
  .screen-pair { gap: 10px; }
  .screen-card { border-width: 5px; border-radius: 24px; }
  .screen-card:last-child { transform: translateY(24px); }
  .privacy-panel { gap: 30px; border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
}

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