:root {
  color-scheme: light;
  --ink: #3a2b18;
  --muted: #716047;
  --line: rgba(112, 68, 19, 0.16);
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #fffef8;
  --accent: #ffad0a;
  --accent-dark: #9a5000;
  --accent-soft: #ffd052;
  --glow: #ffc83d;
  --page: #ffefbd;
  --max: 1040px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% -8%, rgba(255, 184, 30, 0.3), transparent 34rem),
    linear-gradient(180deg, #fff9e4 0, var(--page) 40rem);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-dark); text-underline-offset: 3px; }
a:hover { color: var(--accent); }
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--glow);
  outline-offset: 4px;
  border-radius: 5px;
}

.site-header,
main,
footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 740;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(167, 105, 0, 0.22);
}

nav { display: flex; gap: 6px; }
nav a {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
  text-decoration: none;
}
nav a:hover,
nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  max-width: 920px;
  padding: clamp(70px, 10vw, 128px) 0 clamp(68px, 9vw, 112px);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(50px, 8.4vw, 92px);
  font-weight: 770;
}
h2 { margin-bottom: 18px; font-size: clamp(32px, 5vw, 48px); }
h3 { margin-bottom: 9px; font-size: 21px; }
p { margin-top: 0; }

.lede {
  max-width: 790px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.48;
  letter-spacing: -0.012em;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
  backdrop-filter: blur(12px);
}
.privacy-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 173, 10, 0.18);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(70px, 9vw, 110px);
}
.highlights article {
  min-height: 268px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(105, 78, 30, 0.07);
  backdrop-filter: blur(14px);
}
.highlights h2 { margin-bottom: 12px; font-size: 27px; }
.highlights p { margin-bottom: 0; color: var(--muted); }
.feature-mark {
  min-width: 43px;
  height: 43px;
  margin-bottom: 48px;
  padding: 0 10px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--accent-soft), var(--accent));
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 9px 22px rgba(167, 105, 0, 0.22);
}
.metal-mark {
  padding: 0;
  background: transparent;
  box-shadow: 0 9px 22px rgba(21, 82, 193, 0.2);
}
.metal-mark img {
  width: 43px;
  height: 43px;
  display: block;
  border-radius: 13px;
}
.save-mark::before {
  width: 17px;
  height: 17px;
  border: 3px solid var(--ink);
  border-radius: 4px;
  content: "";
}

.section {
  padding: clamp(68px, 9vw, 108px) 0;
  border-top: 1px solid var(--line);
}
.section-heading { max-width: 680px; margin-bottom: 42px; }
.section-heading > p { color: var(--muted); }

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}
.steps li,
.touch-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(105, 78, 30, 0.07);
  backdrop-filter: blur(14px);
}
.steps li {
  min-height: 178px;
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.steps p,
.touch-card p { margin-bottom: 0; color: var(--muted); }
.step-number {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--accent-soft), var(--accent));
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(167, 105, 0, 0.22);
}

.touch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.touch-card { padding: 27px; }
.touch-card h3 { font-size: 23px; }
.touch-card strong { color: var(--ink); }

.guided-access {
  margin-top: 18px;
  padding: clamp(28px, 5vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 68px);
  border-radius: 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 0, rgba(255, 247, 195, 0.5), transparent 23rem),
    linear-gradient(135deg, #ffd052, #f39216);
  box-shadow: 0 24px 70px rgba(154, 80, 0, 0.2);
}
.guided-access .eyebrow { color: #704600; }
.guided-access h3 { font-size: 30px; }
.guided-access p,
.guided-access li { color: rgba(58, 43, 24, 0.8); }
.guided-access strong { color: var(--ink); }
.guided-access .parent-setting {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(112, 70, 0, 0.2);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.24);
}
.guided-access a { color: #5c3900; }
.guided-access a:hover { color: #2e1c00; }
.guided-access ol { margin: 0; padding-left: 22px; }
.guided-access li + li { margin-top: 8px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  padding: 23px 40px 23px 0;
  position: relative;
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  position: absolute;
  right: 7px;
  color: var(--accent-dark);
  content: "+";
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 820px; padding: 0 40px 23px 0; color: var(--muted); }

.contact {
  margin: 52px 0 86px;
  padding: clamp(32px, 6vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 225, 112, 0.3), transparent 23rem),
    linear-gradient(135deg, #f39b13, #d9680b);
  color: white;
  box-shadow: 0 24px 70px rgba(132, 66, 5, 0.2);
}
.contact .eyebrow { color: #ffe7a1; }
.contact h2 { margin-bottom: 14px; }
.contact p { max-width: 610px; margin-bottom: 0; color: rgba(255, 255, 255, 0.8); }
.button {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 12px;
  background: white;
  color: #944500;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(84, 26, 7, 0.2);
}
.button:hover { color: var(--accent-dark); transform: translateY(-1px); }

.policy { max-width: 860px; }
.policy-intro {
  max-width: 860px;
  padding: clamp(68px, 10vw, 124px) 0 58px;
}
.policy-intro h1 { font-size: clamp(46px, 7vw, 72px); }
.updated { color: var(--muted); font-size: 15px; }
.policy-body {
  padding: 50px clamp(26px, 7vw, 74px) 70px;
  margin-bottom: 90px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface-strong);
  box-shadow: 0 22px 60px rgba(105, 78, 30, 0.08);
}
.policy-body h2 { margin-top: 48px; margin-bottom: 13px; font-size: 27px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body p,
.policy-body li { color: var(--muted); }
.policy-body li + li { margin-top: 7px; }

footer {
  min-height: 94px;
  padding: 25px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
footer > span:first-child { margin-right: auto; }
.footer-note { font-size: 13px; }

@media (max-width: 760px) {
  .site-header,
  main,
  footer { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 76px; }
  .brand img { width: 36px; height: 36px; }
  .brand span { max-width: 150px; line-height: 1.15; }
  nav a { padding: 6px 8px; }
  .hero { padding-top: 66px; }
  .highlights,
  .steps,
  .touch-grid,
  .guided-access { grid-template-columns: 1fr; }
  .highlights article,
  .steps li { min-height: 0; }
  .feature-mark { margin-bottom: 34px; }
  .contact { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; text-align: center; }
  footer { flex-wrap: wrap; gap: 10px 20px; }
  footer > span:first-child { flex-basis: 100%; }
}

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

@media print {
  body { background: white; color: black; }
  .site-header nav,
  .contact,
  footer { display: none; }
  .policy-body { padding: 0; border: 0; box-shadow: none; }
}
