:root {
  color-scheme: light;
  --ink: #102d2d;
  --ink-soft: #486363;
  --night: #042f32;
  --night-deep: #022528;
  --paper: #fffdf8;
  --paper-muted: #f3f7f3;
  --line: #d8e4df;
  --coral: #ff674f;
  --coral-dark: #c7362b;
  --sun: #ffc94f;
  --mint: #b7ead7;
  --mint-dark: #0c6b60;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(1, 40, 42, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--mint-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--coral-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
  border-radius: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--night);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", Inter, ui-sans-serif, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.34rem;
}

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

.narrow-shell {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--night);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 228, 223, 0.82);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--night);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", ui-sans-serif, sans-serif;
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(0, 44, 48, 0.18);
}

.primary-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 750;
  padding: 9px 15px;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: #e9f3ee;
  color: var(--night);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 201, 79, 0.23), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(183, 234, 215, 0.18), transparent 28%),
    linear-gradient(145deg, var(--night-deep), #074146 70%, #0b4a4b);
  color: #d8ebe4;
}

.hero::after {
  position: absolute;
  right: -8rem;
  bottom: -15rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(183, 234, 215, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(183, 234, 215, 0.035),
    0 0 0 130px rgba(183, 234, 215, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  padding-block: 90px 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--mint-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--mint);
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--white);
}

.hero h1 em {
  color: var(--sun);
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: #cbe1da;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(255, 103, 79, 0.24);
  color: #1d2422;
}

.button-primary:hover {
  background: #ff7a65;
  color: #15201e;
}

.button-secondary {
  border-color: rgba(183, 234, 215, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(183, 234, 215, 0.55);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.routine-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 32px 80px rgba(0, 23, 25, 0.32);
  backdrop-filter: blur(18px);
}

.routine-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(255, 201, 79, 0.12);
  content: "";
}

.routine-time {
  margin: 30px 0;
  color: var(--white);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", ui-sans-serif, sans-serif;
  font-size: clamp(4.6rem, 9vw, 7.2rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.routine-list {
  display: grid;
  gap: 10px;
}

.routine-list > div {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(0, 24, 27, 0.25);
  color: #e6f2ed;
  padding: 12px 14px;
}

.step-number {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--night);
  font-size: 0.76rem;
  font-weight: 900;
}

.privacy-chip {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #acc8c0;
  font-size: 0.8rem;
  padding-top: 18px;
  text-align: center;
}

.trust-section,
.publisher-section,
.support-content,
.email-section {
  padding-block: 100px;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p,
.support-card p,
.support-card li {
  color: var(--ink-soft);
}

.feature-card p:last-child,
.support-card p:last-child {
  margin-bottom: 0;
}

.feature-mark {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--coral-dark);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.publisher-section {
  padding-top: 10px;
}

.publisher-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 55px;
  border-radius: var(--radius-lg);
  background: var(--paper-muted);
  padding: clamp(32px, 6vw, 64px);
}

.publisher-card h2 {
  margin-bottom: 0;
}

.publisher-details {
  display: grid;
  gap: 0;
  margin: 0;
}

.publisher-details div {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-block: 15px;
}

.publisher-details div:first-child {
  padding-top: 0;
}

.publisher-details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.publisher-details dt {
  color: var(--ink-soft);
}

.publisher-details dd {
  margin: 0;
  font-weight: 800;
}

.page-hero {
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 201, 79, 0.18), transparent 24%),
    linear-gradient(145deg, var(--night-deep), #074145);
  color: #d4e8e1;
  padding-block: 80px 84px;
}

.page-hero h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 5.8rem);
}

.page-hero .narrow-shell > p:not(.eyebrow):not(.support-address) {
  max-width: 760px;
  color: #cae0d9;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.policy-meta span {
  border: 1px solid rgba(183, 234, 215, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #cfe3dc;
  font-size: 0.82rem;
  padding: 8px 12px;
}

.policy-meta strong {
  color: var(--white);
}

.content-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  justify-content: center;
  gap: clamp(40px, 7vw, 82px);
  padding-block: 74px 110px;
}

.contents-card {
  position: sticky;
  top: 28px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f7faf7;
  padding: 20px;
}

.contents-card > p {
  margin-bottom: 12px;
  color: var(--night);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contents-card nav {
  display: grid;
  gap: 3px;
}

.contents-card a {
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  padding: 6px 8px;
  text-decoration: none;
}

.contents-card a:hover {
  background: #e8f1ed;
  color: var(--night);
}

.policy-article section {
  border-bottom: 1px solid var(--line);
  padding-block: 0 52px;
  margin-bottom: 52px;
}

.policy-article section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-article h2 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

.policy-article p,
.policy-article li,
.definition-list dd {
  color: var(--ink-soft);
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--coral-dark) !important;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.promise-grid div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-muted);
  padding: 16px;
}

.promise-grid strong,
.promise-grid span {
  display: block;
}

.promise-grid strong {
  color: var(--night);
}

.promise-grid span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--night);
  content: "✓";
  font-size: 0.69rem;
  font-weight: 950;
}

.definition-list {
  margin: 28px 0;
}

.definition-list div {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 18px;
}

.definition-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.definition-list dt {
  color: var(--night);
  font-weight: 850;
}

.definition-list dd {
  margin: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.contact-panel p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-muted);
  padding: 16px;
  font-size: 0.9rem;
}

.contact-panel strong {
  color: var(--night);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-hero .button {
  margin-top: 12px;
}

.support-address {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 24px 0 0;
  color: #bcd4cc;
  font-size: 0.86rem;
}

.support-address a {
  color: var(--mint);
}

.compact-heading {
  margin-bottom: 42px;
}

.compact-heading h2 {
  margin-bottom: 18px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.support-card {
  position: relative;
  padding: 30px;
}

.support-card h3 {
  max-width: 440px;
  margin: 28px 0 18px;
  font-size: 1.55rem;
}

.support-card ol {
  margin: 0 0 22px;
  padding-left: 1.4rem;
}

.support-card li {
  margin-bottom: 7px;
  padding-left: 4px;
}

.support-number {
  color: var(--coral-dark);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.email-section {
  padding-top: 0;
}

.email-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  align-items: center;
  gap: 52px;
  border-radius: var(--radius-lg);
  background: var(--night);
  color: #cbe0d9;
  padding: clamp(30px, 6vw, 62px);
}

.email-card h2 {
  color: var(--white);
}

.email-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: #c3d8d1;
}

.email-action {
  display: grid;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 40px;
}

.email-action span {
  color: #a9c5bd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.email-action strong {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.1rem;
}

.email-action .button {
  justify-self: start;
}

.safety-note {
  margin-top: 18px;
  border: 1px solid #ead8a8;
  border-radius: 14px;
  background: #fff7dc;
  color: #5f512e;
  padding: 16px 19px;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #eef4f0;
  padding-block: 26px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-footer a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 201, 79, 0.2), transparent 25%),
    linear-gradient(145deg, var(--night-deep), #074145);
  padding: 28px;
}

.not-found-card {
  width: min(100%, 660px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  color: #cce0da;
  padding: clamp(30px, 7vw, 58px);
  text-align: center;
}

.not-found-card img {
  margin: 0 auto 24px;
  border-radius: 20px;
}

.not-found-card .eyebrow {
  justify-content: center;
}

.not-found-card h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 7vw, 4rem);
}

.not-found-card .button-row {
  justify-content: center;
  margin-top: 26px;
}

@media (max-width: 900px) {
  .hero-grid,
  .publisher-card,
  .email-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 76px;
  }

  .routine-card {
    max-width: 620px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-mark {
    margin-bottom: 24px;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contents-card {
    position: static;
  }

  .contents-card nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .email-action {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 1.16rem;
  }

  .primary-nav a {
    padding: 8px 10px;
  }

  .hero-grid {
    gap: 42px;
    padding-block: 60px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .routine-card {
    padding: 24px;
  }

  .routine-time {
    font-size: 4.8rem;
  }

  .trust-section,
  .publisher-section,
  .support-content,
  .email-section {
    padding-block: 70px;
  }

  .publisher-section,
  .email-section {
    padding-top: 0;
  }

  .publisher-card {
    gap: 34px;
  }

  .publisher-details div,
  .definition-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .page-hero {
    padding-block: 62px;
  }

  .policy-meta {
    display: grid;
  }

  .content-layout {
    padding-block: 54px 76px;
  }

  .promise-grid,
  .contact-panel,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .contents-card nav {
    grid-template-columns: 1fr;
  }

  .support-card {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .support-address {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .contents-card,
  .button {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 11pt;
  }

  .page-hero {
    background: white;
    color: black;
    padding-block: 20px;
  }

  .page-hero h1,
  .page-hero .narrow-shell > p:not(.eyebrow):not(.support-address),
  .policy-meta span {
    color: black;
  }

  .policy-meta span {
    border-color: #aaa;
  }

  .content-layout {
    display: block;
    padding-block: 20px;
  }

  .policy-article section {
    break-inside: avoid;
  }
}
