:root {
  --ink: #10182B;
  --ink-soft: #26334d;
  --paper: #F8F7F2;
  --paper-deep: #eee9dc;
  --amber: #FFB547;
  --amber-deep: #e98b2d;
  --teal: #55D6BE;
  --line: rgba(16, 24, 43, 0.17);
  --white-line: rgba(248, 247, 242, 0.25);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 0px;
  --shadow: 0 24px 60px rgba(16, 24, 43, 0.18);
  --font-body: var(--mrc-font-en);
  --font-display: var(--mrc-font-en);
  --ease-out: cubic-bezier(.2, .76, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body), Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-shell {
  position: relative;
  min-height: min(790px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-backdrop,
.hero-backdrop::after {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(128deg, var(--ink) 0 49.4%, var(--paper) 49.55% 100%);
}

.hero-backdrop::after {
  z-index: 1;
  content: "";
  background:
    linear-gradient(128deg, rgba(16, 24, 43, 0.12) 0 48%, rgba(248, 247, 242, 0.25) 48.1% 100%),
    radial-gradient(circle at 77% 24%, rgba(255, 181, 71, 0.38), transparent 25%),
    radial-gradient(circle at 16% 78%, rgba(85, 214, 190, 0.17), transparent 26%);
  mix-blend-mode: normal;
  transition: background 900ms ease;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
}

.hero-bg-mobile {
  display: none;
}

html[data-daypart="morning"] .hero-backdrop::after {
  background:
    linear-gradient(128deg, rgba(16, 24, 43, 0.08) 0 48%, rgba(248, 247, 242, 0.2) 48.1% 100%),
    radial-gradient(circle at 69% 15%, rgba(255, 220, 123, 0.52), transparent 28%),
    radial-gradient(circle at 13% 70%, rgba(85, 214, 190, 0.22), transparent 30%);
}

html[data-daypart="midday"] .hero-backdrop::after {
  background:
    linear-gradient(128deg, rgba(16, 24, 43, 0.1) 0 48%, rgba(248, 247, 242, 0.23) 48.1% 100%),
    radial-gradient(circle at 76% 34%, rgba(255, 181, 71, 0.53), transparent 27%),
    radial-gradient(circle at 15% 80%, rgba(85, 214, 190, 0.17), transparent 30%);
}

html[data-daypart="evening"] .hero-backdrop::after {
  background:
    linear-gradient(128deg, rgba(16, 24, 43, 0.24) 0 48%, rgba(248, 247, 242, 0.19) 48.1% 100%),
    radial-gradient(circle at 70% 22%, rgba(233, 139, 45, 0.43), transparent 27%),
    radial-gradient(circle at 10% 72%, rgba(85, 214, 190, 0.16), transparent 29%);
}

.site-header {
  position: relative;
  z-index: 4;
  padding: 22px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.93rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.mark-dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid var(--amber);
  border-radius: 50%;
}

.mark-dot::before,
.mark-dot::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 50%;
  width: 1.5px;
  background: var(--amber);
  transform-origin: bottom;
}

.mark-dot::before {
  height: 5px;
  transform: translateX(-50%) rotate(0deg);
}

.mark-dot::after {
  height: 4px;
  transform: translateX(-50%) rotate(125deg);
}

.header-note {
  margin: 0;
  color: rgba(248, 247, 242, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(min(790px, 100svh) - 76px);
  align-items: center;
  padding: 70px 0 84px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: var(--paper);
}

.time-kicker,
.policy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.time-kicker {
  color: var(--teal);
}

.time-kicker::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-lead {
  max-width: 590px;
  margin: 28px auto 0;
  color: rgba(248, 247, 242, 0.92);
  font-size: clamp(1rem, 1.6vw, 1.19rem);
  line-height: 1.58;
  text-wrap: balance;
}

.hero-detail {
  margin: 12px auto 0;
  color: rgba(248, 247, 242, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 32px;
  padding: 0 24px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(105deg, var(--amber) 0%, #ffd271 50%, var(--teal) 100%);
  box-shadow: 0 10px 0 rgba(16, 24, 43, 0.26), 0 18px 30px rgba(16, 24, 43, 0.23);
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.primary-cta::after {
  position: absolute;
  inset: -45% auto -45% -35%;
  width: 24%;
  content: "";
  background: rgba(255, 255, 255, 0.62);
  transform: skewX(-24deg) translateX(-260%);
  pointer-events: none;
}

.primary-cta svg {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.primary-cta span {
  position: relative;
  z-index: 1;
}

.primary-cta:hover {
  box-shadow: 0 7px 0 rgba(16, 24, 43, 0.28), 0 22px 34px rgba(16, 24, 43, 0.28);
  transform: translateY(3px);
}

.primary-cta:hover::after {
  animation: cta-sheen 950ms var(--ease-out) 1;
}

.primary-cta:active {
  box-shadow: 0 2px 0 rgba(16, 24, 43, 0.28);
  transform: translateY(8px);
}

.hero-art {
  position: absolute;
  z-index: 1;
  top: 52%;
  left: 67%;
  width: min(50vw, 690px);
  margin: 0;
  pointer-events: none;
  transform: translate(-7%, -39%) rotate(-2deg);
}

.hero-art img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 28px 25px rgba(16, 24, 43, 0.21));
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.clock-readout {
  position: absolute;
  top: 48%;
  left: 47%;
  display: flex;
  min-width: 110px;
  flex-direction: column;
  padding: 9px 10px 8px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(16, 24, 43, 0.22);
  transform: translate(-50%, -50%) rotate(2deg);
}

.clock-label {
  color: var(--teal);
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.clock-readout strong {
  font-family: var(--font-display), monospace;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-row {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 0;
  border-top: 1px solid var(--white-line);
}

.footer-row p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.footer-row p span {
  margin-left: 4px;
  color: rgba(248, 247, 242, 0.56);
  font-weight: 500;
}

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

.footer-links a {
  color: rgba(248, 247, 242, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--amber);
  text-decoration-color: currentColor;
}

.legal-page {
  background:
    linear-gradient(90deg, rgba(255, 181, 71, 0.09) 1px, transparent 1px),
    var(--paper);
  background-size: 74px 74px;
}

.legal-page .site-header {
  background: var(--ink);
}

.legal-main {
  padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 9vw, 112px);
}

.policy-card {
  width: min(850px, var(--shell));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  background: rgba(248, 247, 242, 0.93);
  box-shadow: 12px 12px 0 var(--amber);
}

.policy-eyebrow {
  color: var(--amber-deep);
}

.policy-eyebrow::before {
  width: 20px;
  height: 1px;
  content: "";
  background: currentColor;
}

.policy-card h1 {
  max-width: 670px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.93;
  text-wrap: balance;
}

.policy-date {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.policy-intro {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}

.policy-card section {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.policy-card section:first-of-type {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  margin: 0;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.policy-card section p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.policy-card section p a {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: var(--amber-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.policy-card section p a:hover {
  color: var(--amber-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cta-sheen {
  from {
    transform: skewX(-24deg) translateX(-260%);
  }
  to {
    transform: skewX(-24deg) translateX(680%);
  }
}

@media (max-width: 800px) {
  .hero-shell {
    min-height: 100svh;
  }

  .hero-backdrop {
    background: linear-gradient(154deg, var(--ink) 0 51%, var(--paper) 51.2% 100%);
  }

  .hero-bg-desktop {
    display: none;
  }

  .hero-bg-mobile {
    display: block;
  }

  .hero-backdrop::after,
  html[data-daypart="morning"] .hero-backdrop::after,
  html[data-daypart="midday"] .hero-backdrop::after,
  html[data-daypart="evening"] .hero-backdrop::after {
    background:
      linear-gradient(154deg, rgba(16, 24, 43, 0.16) 0 50%, rgba(248, 247, 242, 0.21) 50.2% 100%),
      radial-gradient(circle at 72% 57%, rgba(255, 181, 71, 0.42), transparent 25%);
  }

  .hero {
    min-height: calc(100svh - 72px);
    align-items: start;
    padding: clamp(62px, 13vh, 110px) 0 50px;
  }

  .hero-content {
    max-width: 610px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }

  .hero-lead {
    max-width: 510px;
  }

  .hero-art {
    top: auto;
    bottom: -19px;
    left: 50%;
    width: min(132vw, 620px);
    transform: translateX(-49%) rotate(-2deg);
  }

  .hero-art img {
    opacity: 0.68;
  }

  .clock-readout {
    top: 47%;
    left: 48%;
    min-width: 98px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

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

@media (max-width: 480px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 18px 0;
  }

  .header-note {
    display: none;
  }

  .hero {
    padding-top: 65px;
  }

  .time-kicker {
    margin-bottom: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.99rem;
  }

  .hero-detail {
    font-size: 0.84rem;
  }

  .primary-cta {
    display: flex;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    padding-inline: 16px;
    font-size: 0.91rem;
  }

  .hero-art {
    bottom: 2px;
    width: 142vw;
  }

  .clock-readout {
    min-width: 90px;
    padding: 7px 8px;
  }

  .clock-readout strong {
    font-size: 1.06rem;
  }

  .footer-row {
    min-height: 142px;
  }

  .footer-links {
    gap: 8px 14px;
  }

  .policy-card {
    box-shadow: 7px 7px 0 var(--amber);
  }

  .policy-card section {
    padding: 21px 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}