:root {
  color-scheme: light;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dbe4ef;
  --line-soft: #e9eff6;
  --paper: #ffffff;
  --wash: #f0f4f8;
  --wash-blue: #e8effd;
  --blue: #4a70c7;
  --blue-dark: #345797;
  --blue-ink: #244579;
  --indigo-wash: #e0e7ff;
  --green-wash: #dcfce7;
  --orange-wash: #ffedd5;
  --shadow: 0 24px 70px rgba(38, 61, 97, 0.13);
  --shadow-soft: 0 12px 32px rgba(38, 61, 97, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--wash);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--blue-ink);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(74, 112, 199, 0.35);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 228, 239, 0.88);
  background: rgba(240, 244, 248, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #6b8fd4, var(--blue-dark));
  box-shadow: 0 7px 18px rgba(74, 112, 199, 0.28);
  color: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 1rem;
  font-weight: 760;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue-ink);
}

main {
  min-height: calc(100vh - 240px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
}

.hero::before {
  position: absolute;
  top: -220px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 212, 0.24), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(74, 112, 199, 0.11);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  font-weight: 780;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.button-primary {
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(74, 112, 199, 0.24);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--blue-dark);
  color: var(--paper);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-soft);
}

.button-secondary:hover {
  border-color: #c7d5e5;
  background: var(--paper);
  color: var(--ink);
}

.availability {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 620;
}

.day-card {
  position: relative;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.day-card::after {
  position: absolute;
  inset: 9px;
  z-index: -1;
  border-radius: 30px;
  background: var(--paper);
  content: "";
}

.day-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.day-card-header strong {
  font-size: 1.05rem;
}

.status-pill {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--indigo-wash);
  color: #3730a3;
  font-size: 0.74rem;
  font-weight: 760;
}

.now-card {
  margin-bottom: 12px;
  padding: 17px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #566fcb, #6f86dc);
  color: var(--paper);
}

.now-label,
.event-time {
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.04em;
  opacity: 0.78;
  text-transform: uppercase;
}

.now-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.now-title strong {
  font-size: 1.15rem;
}

.timer {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 1.3rem;
  font-weight: 740;
  letter-spacing: -0.04em;
}

.event-list {
  display: grid;
  gap: 9px;
}

.event {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: var(--paper);
}

.event-dot {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 820;
}

.event-dot.feed {
  background: var(--green-wash);
  color: #166534;
}

.event-dot.meal {
  background: var(--orange-wash);
  color: #9a3412;
}

.event-dot.temp {
  background: #fee2e2;
  color: #991b1b;
}

.event-copy {
  min-width: 0;
}

.event-copy strong,
.event-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-copy strong {
  font-size: 0.9rem;
}

.event-copy span {
  color: var(--muted);
  font-size: 0.75rem;
}

.event-time {
  color: var(--muted);
  white-space: nowrap;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: var(--paper);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card,
.trust-card,
.support-card {
  padding: 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.feature-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: var(--wash-blue);
  color: var(--blue-ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card h3,
.trust-card h3,
.support-card h2,
.support-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.feature-card p,
.trust-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
}

.trust-card {
  box-shadow: none;
}

.trust-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-ink);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statement {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

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

.statement-copy {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #e8eef7;
  box-shadow: var(--shadow);
}

.statement-copy p {
  margin: 0 0 18px;
  font-size: 1.09rem;
}

.statement-copy p:last-child {
  margin-bottom: 0;
  color: #aebcce;
  font-size: 0.92rem;
}

.statement-copy a {
  color: #dbeafe;
}

.statement-copy a:hover {
  color: var(--paper);
}

.page-hero {
  padding: 70px 0 48px;
}

.page-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 6vw, 4.7rem);
}

.page-hero .lede {
  max-width: 710px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.meta-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-wrap {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(38px, 8vw, 100px);
  align-items: start;
  padding-bottom: 90px;
}

.toc {
  position: sticky;
  top: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
}

.toc strong {
  display: block;
  margin-bottom: 9px;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.toc ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  color: var(--muted);
  font-size: 0.87rem;
  text-decoration: none;
}

.toc a:hover {
  color: var(--blue-dark);
}

.legal-card {
  padding: clamp(25px, 5vw, 54px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.legal-card section + section {
  margin-top: 44px;
  padding-top: 4px;
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.legal-card h3 {
  margin: 26px 0 9px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

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

.legal-card p {
  margin: 0 0 15px;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.3rem;
}

.legal-card li + li {
  margin-top: 8px;
}

.notice {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 4px var(--radius-sm) var(--radius-sm) 4px;
  background: var(--wash-blue);
  color: var(--blue-ink);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.support-grid {
  margin-bottom: 54px;
}

.support-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
}

.support-card a:last-child {
  margin-top: auto;
  padding-top: 20px;
  font-weight: 730;
}

.support-content {
  max-width: 800px;
  margin-bottom: 90px;
}

.support-content section {
  scroll-margin-top: 100px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.support-content h2 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.support-content h3 {
  margin: 27px 0 8px;
  font-size: 1.05rem;
}

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

.support-content ol,
.support-content ul {
  padding-left: 1.35rem;
}

.reset-shell {
  display: grid;
  min-height: calc(100vh - 230px);
  place-items: center;
  padding: 70px 20px 90px;
}

.reset-card {
  width: min(100%, 590px);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.reset-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: var(--wash-blue);
  color: var(--blue-ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 1.25rem;
  font-weight: 800;
}

.reset-card h1 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.reset-card > p {
  margin: 0 auto;
  color: var(--ink-soft);
}

.reset-card .button {
  width: 100%;
  margin-top: 28px;
}

.reset-steps {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding: 0;
  text-align: left;
  list-style: none;
  counter-reset: reset-step;
}

.reset-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--ink-soft);
  counter-increment: reset-step;
}

.reset-steps li::before {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--wash);
  color: var(--blue-ink);
  content: counter(reset-step);
  font-size: 0.77rem;
  font-weight: 800;
}

.reset-help {
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #e9eff6;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: end;
  padding: 42px 0;
}

.footer-brand p {
  max-width: 470px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(203, 213, 225, 0.85);
  color: var(--muted);
  font-size: 0.78rem;
}

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

  .hero-grid {
    gap: 56px;
  }

  .day-card {
    width: min(100%, 540px);
    transform: none;
  }

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

  .feature-card:last-child,
  .trust-card:last-child,
  .support-card:last-child {
    grid-column: 1 / -1;
  }

  .legal-wrap {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .section-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-links li:nth-child(1),
  .nav-links li:nth-child(3) {
    display: none;
  }

  .nav-links a {
    padding-inline: 10px;
  }

  .hero {
    padding: 66px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.15rem);
  }

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

  .feature-card:last-child,
  .trust-card:last-child,
  .support-card:last-child {
    grid-column: auto;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding-top: 52px;
  }

  .legal-card {
    border-radius: 22px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-meta {
    display: grid;
  }
}

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

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