:root {
  color-scheme: dark;
  font-family:
    ui-rounded, "SF Pro Rounded", "SF Pro Display", system-ui,
    -apple-system, BlinkMacSystemFont, sans-serif;
  --ink: #071a2d;
  --ink-light: #0e2a46;
  --paper: #f4e7d5;
  --paper-muted: #b8ac9e;
  --coral: #ee6948;
  --amber: #ffb15f;
  --line: rgb(255 222 184 / 16%);
  background: var(--ink);
  color: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 15%, rgb(41 78 112 / 48%), transparent 28rem),
    radial-gradient(circle at 12% 46%, rgb(238 105 72 / 8%), transparent 30rem),
    linear-gradient(145deg, #0b243d 0%, var(--ink) 48%, #061524 100%);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-radial-gradient(
      circle at 17% 23%,
      rgb(255 255 255 / 5%) 0 0.04rem,
      transparent 0.06rem 0.3rem
    );
  background-size: 0.55rem 0.51rem;
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: min(74rem, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.5rem;
}

.brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 630;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgb(255 222 184 / 20%);
  border-radius: 0.68rem;
  box-shadow: 0 0.5rem 1.4rem rgb(0 0 0 / 24%);
}

.platform-label,
.coming-soon {
  color: var(--paper-muted);
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: calc(100svh - 6.5rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  gap: clamp(3rem, 8vw, 7.5rem);
  align-items: center;
  padding: 4rem 0 8rem;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(4.35rem, 9vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.lede {
  max-width: 33rem;
  margin: 2.5rem 0 0;
  color: var(--paper-muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.coming-soon {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2rem;
  padding: 0.68rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 3%);
}

.status-light {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0.8rem var(--amber);
}

.brand-figure {
  position: relative;
  width: min(100%, 34rem);
  margin: 0 auto;
}

.brand-figure::before {
  position: absolute;
  z-index: -1;
  inset: 8% 5% -3%;
  border-radius: 50%;
  background: rgb(255 139 77 / 11%);
  content: "";
  filter: blur(3.2rem);
}

.icon-frame {
  overflow: hidden;
  border: 1px solid rgb(255 222 184 / 16%);
  border-radius: clamp(2rem, 7vw, 5rem);
  background: var(--ink-light);
  box-shadow:
    0 2.7rem 7rem rgb(0 0 0 / 42%),
    0 0 0 0.65rem rgb(255 255 255 / 1.8%);
  transform: rotate(1.35deg);
}

.icon-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-figure figcaption {
  margin: 1.35rem 0 0;
  color: #837f7a;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.promise {
  padding: 8rem 0 9rem;
  border-top: 1px solid var(--line);
}

.promise h2 {
  max-width: 14ch;
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.promise-grid {
  display: grid;
  margin-top: 5rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--line);
}

.promise-grid article {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background: rgb(8 29 49 / 86%);
}

.number {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: clamp(1.2rem, 2.6vw, 2.4rem);
  color: var(--amber);
  font-size: clamp(10rem, 17vw, 15.5rem);
  font-variant-numeric: tabular-nums;
  font-weight: 300;
  letter-spacing: -0.095em;
  line-height: 0.72;
  opacity: 0.09;
  pointer-events: none;
  transform: translateY(-43%);
  user-select: none;
}

.promise-grid article:nth-child(2) .number {
  color: #6d9ac0;
}

.promise-grid article:nth-child(3) .number {
  color: var(--coral);
}

.promise-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.promise-grid h3,
.promise-grid p {
  position: relative;
  z-index: 1;
}

.promise-grid p {
  max-width: 16rem;
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.closing {
  display: grid;
  min-height: 36rem;
  place-items: center;
  align-content: center;
  margin-bottom: 4rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    radial-gradient(circle, rgb(255 176 93 / 13%), transparent 29%),
    rgb(8 27 46 / 64%);
  box-shadow: inset 0 1px rgb(255 255 255 / 3%);
  text-align: center;
}

.closing-heart {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  color: var(--coral);
  font-size: 2.2rem;
  text-shadow: 0 0 2rem rgb(238 105 72 / 44%);
}

.closing p {
  margin: 1rem 0 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  letter-spacing: -0.045em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 7rem;
  border-top: 1px solid var(--line);
  color: #807c78;
  font-size: 0.8rem;
}

.site-footer a {
  text-underline-offset: 0.25rem;
}

.site-footer nav {
  display: flex;
  gap: 1.25rem;
}

.site-footer a:hover {
  color: var(--paper);
}

.site-footer a:focus-visible,
.brand:focus-visible,
.back-link:focus-visible {
  border-radius: 0.25rem;
  outline: 2px solid var(--amber);
  outline-offset: 0.35rem;
}

.privacy-main {
  max-width: 56rem;
  padding: 6rem 0 9rem;
}

.back-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 4rem;
  color: var(--paper-muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.back-link:hover {
  color: var(--paper);
}

.privacy-main h1 {
  max-width: none;
  font-size: clamp(3.5rem, 9vw, 6.7rem);
}

.effective-date {
  margin: 1.5rem 0 4rem;
  color: #837f7a;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-intro {
  max-width: 43rem;
  margin: 0 0 5rem;
  color: var(--paper-muted);
  font-size: clamp(1.18rem, 2.3vw, 1.45rem);
  line-height: 1.65;
}

.policy-section {
  display: grid;
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 0.66fr);
  gap: 2.5rem;
}

.policy-section h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.policy-section p,
.policy-section li {
  color: var(--paper-muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.policy-section p {
  margin: 0 0 1rem;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 0;
  padding-left: 1.1rem;
}

.policy-section li + li {
  margin-top: 0.75rem;
}

.policy-section a {
  color: var(--paper);
  text-underline-offset: 0.22rem;
}

@media (max-width: 800px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 2rem, 42rem);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 5rem 0 7rem;
  }

  .hero-copy {
    text-align: center;
  }

  h1,
  .lede {
    margin-inline: auto;
  }

  .brand-figure {
    width: min(92%, 29rem);
  }

  .promise {
    padding: 6rem 0;
  }

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

  .promise-grid article {
    min-height: 15rem;
  }

  .number {
    top: 48%;
    font-size: clamp(10rem, 46vw, 13rem);
    transform: translateY(-42%);
  }

  .closing {
    min-height: 27rem;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 5.5rem;
  }

  .platform-label {
    max-width: 7rem;
    line-height: 1.45;
    text-align: right;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(3.65rem, 19vw, 5.2rem);
  }

  .icon-frame {
    border-radius: 2.3rem;
  }

  .promise-grid {
    margin-top: 3.5rem;
  }

  .privacy-main {
    padding-top: 3rem;
  }
}

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