:root {
  color-scheme: light;
  --ink: #193c35;
  --forest: #274f43;
  --deep: #14352f;
  --paper: #fff3d6;
  --cream: #f5e9c7;
  --gold: #f1c777;
  --water: #71d2c2;
  --mist: #dce8d4;
  --line: rgba(25, 60, 53, .16);
  --shadow: 0 28px 70px rgba(20, 53, 47, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7f4e9;
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.brand img { border-radius: 12px; box-shadow: 0 8px 22px rgba(20, 53, 47, .2); }
.nav nav { display: flex; align-items: center; gap: 28px; }
.nav nav a { font-size: .94rem; font-weight: 700; text-decoration: none; }
.nav-cta { border: 1px solid var(--line); border-radius: 999px; padding: 10px 17px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(360px, .82fr);
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  padding: 70px max(32px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 73% 35%, rgba(113, 210, 194, .32), transparent 26%),
    linear-gradient(135deg, #f7f4e9 0 48%, #d8e3cf 48% 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 670px; }
.eyebrow { margin: 0 0 12px; color: #537669; font-size: .79rem; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.02; letter-spacing: -.045em; }
.hero h1 { max-width: 700px; font-size: clamp(3.7rem, 7vw, 7.2rem); }
.lede { max-width: 620px; margin: 28px 0; font-size: clamp(1.12rem, 2vw, 1.4rem); color: #47665d; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; padding: 0 24px; border-radius: 18px; font-weight: 900; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--deep); background: var(--gold); box-shadow: 0 7px 0 #b27642, 0 18px 35px rgba(178, 118, 66, .24); }
.button.secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, .46); }
.button[aria-disabled="true"] { cursor: default; }
.fine-print { max-width: 580px; margin-top: 20px; color: #638076; font-size: .82rem; }
.hero-art { position: relative; display: grid; justify-items: center; align-items: center; height: 680px; }
.glow { position: absolute; width: 440px; height: 440px; border-radius: 50%; background: rgba(255, 243, 214, .65); filter: blur(24px); }
.phone-shot { position: relative; width: min(410px, 82%); max-height: 650px; object-fit: cover; object-position: top; border: 10px solid rgba(255, 255, 255, .7); border-radius: 44px; box-shadow: var(--shadow); }

.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; width: min(1180px, calc(100% - 40px)); margin: 90px auto; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--line); }
.promise article { min-height: 280px; padding: 36px; background: #fffaf0; }
.promise span { display: block; color: #4d7467; font-family: Georgia, serif; font-size: 4rem; line-height: 1; }
.promise h2 { margin-top: 20px; font-family: inherit; font-size: 1.25rem; font-weight: 900; letter-spacing: -.02em; }
.promise p { color: #5d776f; }

.worlds { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; width: min(1180px, calc(100% - 40px)); margin: 110px auto; }
.section-copy h2, .beta-panel h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.section-copy > p:not(.eyebrow) { color: #58736b; font-size: 1.12rem; }
.section-copy ul { padding-left: 20px; }
.section-copy li { margin: 10px 0; padding-left: 5px; }
.worlds figure { margin: 0; }
.worlds figure img { border-radius: 30px; box-shadow: var(--shadow); }
.worlds figcaption { margin: 14px 8px 0; color: #6a8179; font-size: .82rem; }

.beta-panel { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; width: min(1180px, calc(100% - 40px)); margin: 80px auto 120px; padding: 44px; border-radius: 34px; color: var(--paper); background: linear-gradient(135deg, var(--forest), var(--deep)); box-shadow: var(--shadow); }
.beta-panel img { border-radius: 28px; box-shadow: 0 14px 36px rgba(0, 0, 0, .25); }
.beta-panel .eyebrow { color: #a9d3c3; }
.beta-panel h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.beta-panel p:not(.eyebrow) { max-width: 650px; color: #c6d8d0; }

.policy-wrap { width: min(900px, calc(100% - 40px)); margin: 70px auto 120px; }
.policy { padding: clamp(30px, 6vw, 72px); border: 1px solid var(--line); border-radius: 34px; background: #fffaf0; box-shadow: var(--shadow); }
.policy h1 { margin-bottom: 28px; font-size: clamp(3.3rem, 7vw, 6rem); }
.policy-intro { padding-bottom: 28px; border-bottom: 1px solid var(--line); color: #45685e; font-size: 1.3rem; }
.policy h2 { margin-top: 42px; font-family: inherit; font-size: 1.35rem; font-weight: 900; letter-spacing: -.02em; }
.policy p { color: #506d64; }
.policy a { font-weight: 800; }

footer { display: flex; justify-content: space-between; gap: 30px; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 32px 0 46px; border-top: 1px solid var(--line); color: #637c73; font-size: .86rem; }
footer div { display: flex; gap: 24px; }

@media (max-width: 820px) {
  .nav nav > a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; text-align: center; }
  .hero-copy { margin: auto; }
  .actions { justify-content: center; }
  .fine-print { margin-left: auto; margin-right: auto; }
  .hero-art { height: 600px; }
  .promise, .worlds { grid-template-columns: 1fr; }
  .worlds { gap: 40px; }
  .beta-panel { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .beta-panel .button { width: 100%; }
}

@media (max-width: 540px) {
  .brand span { max-width: 150px; line-height: 1.05; }
  .nav { width: min(100% - 26px, 1180px); }
  .nav-cta { padding: 9px 13px !important; }
  .hero { min-height: auto; padding: 54px 20px 70px; background: linear-gradient(155deg, #f7f4e9 0 52%, #d8e3cf 52%); }
  .hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .actions, .actions .button { width: 100%; }
  .hero-art { height: 520px; margin-top: 35px; }
  .phone-shot { width: 280px; max-height: 500px; border-radius: 34px; }
  .promise, .worlds, .beta-panel, footer { width: calc(100% - 26px); }
  .promise { margin: 55px auto; }
  .promise article { min-height: auto; }
  .worlds { margin: 70px auto; }
  .beta-panel { margin-bottom: 70px; padding: 28px 22px; }
  footer { flex-direction: column; }
}
