@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #19140f;
  --muted: #73675d;
  --paper: #fffaf4;
  --panel: rgba(255, 255, 255, 0.82);
  --orange: #ff8629;
  --orange-dark: #d95b08;
  --line: rgba(73, 46, 23, 0.12);
  --shadow: 0 18px 60px rgba(89, 49, 13, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 5%, rgba(255, 134, 41, 0.20), transparent 28rem),
    radial-gradient(circle at 7% 48%, rgba(255, 203, 93, 0.13), transparent 25rem),
    var(--paper);
  font-family: "Baloo 2", -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  line-height: 1.68;
}

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.86);
  backdrop-filter: blur(18px);
}
.nav-inner {
  width: min(1080px, calc(100% - 36px));
  min-height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 5px 15px rgba(119, 62, 10, .18); }
.nav-links { display: flex; gap: 22px; font-size: .92rem; font-weight: 650; }
.nav-links a { color: var(--muted); }

.content { width: min(820px, calc(100% - 36px)); margin: auto; padding: 76px 0 92px; }
.hero { width: min(940px, calc(100% - 36px)); margin: auto; padding: 110px 0 90px; text-align: center; }
.hero img { width: 112px; height: 112px; border-radius: 28px; box-shadow: var(--shadow); }
h1 { margin: 24px 0 8px; font-size: clamp(2.3rem, 6vw, 4.5rem); line-height: 1.04; letter-spacing: -.045em; }
.content h1 { margin-top: 0; font-size: clamp(2.15rem, 6vw, 3.5rem); }
h2 { margin: 50px 0 12px; font-size: 1.45rem; line-height: 1.25; letter-spacing: -.02em; }
h3 { margin: 28px 0 8px; font-size: 1.08rem; }
p, li { color: #493f37; }
ul { padding-left: 22px; }
li { margin-bottom: 7px; }
.lead { max-width: 690px; margin: 18px auto 32px; color: var(--muted); font-size: 1.17rem; }
.date { color: var(--muted); font-size: .92rem; }
.eyebrow { color: var(--orange-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.card, .callout, .toc {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 9px 30px rgba(89, 49, 13, .06);
}
.card h2 { margin: 0 0 8px; font-size: 1.16rem; }
.card p { margin: 0 0 18px; font-size: .94rem; }
.button { display: inline-flex; padding: 11px 17px; border-radius: 999px; background: var(--orange); color: white; font-weight: 750; }
.button:hover { background: var(--orange-dark); text-decoration: none; }
.toc { margin: 34px 0; }
.toc h2 { margin-top: 0; }
.toc ul { margin-bottom: 0; }
.callout { margin: 28px 0; border-color: rgba(255, 134, 41, .30); }
.callout h2, .callout h3 { margin-top: 0; }
footer { padding: 38px 18px; border-top: 1px solid var(--line); text-align: center; color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-bottom: 12px; }

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, .92) 0 42px, transparent 44px),
    radial-gradient(circle at 92% 30%, rgba(255, 255, 255, .88) 0 68px, transparent 70px),
    linear-gradient(180deg, #8fd2fb 0%, #c5ebff 58%, #edf8df 100%);
  background-attachment: fixed;
}
.legal-nav {
  position: sticky;
  top: 14px;
  width: min(1080px, calc(100% - 28px));
  margin: 14px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .60), rgba(255, 255, 255, .28));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .76), 0 12px 36px rgba(40, 104, 145, .14);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}
.legal-nav .nav-inner { width: 100%; min-height: 62px; padding: 0 14px 0 10px; }
.legal-nav .brand img { width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .62); }
.legal-nav .nav-links a { color: #3e687f; }
.legal-content {
  width: min(880px, calc(100% - 28px));
  margin: 38px auto 56px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 32px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 70px rgba(47, 103, 137, .14), inset 0 1px 0 white;
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}
.legal-content h1 { color: #203b49; text-shadow: 0 2px 0 rgba(255, 255, 255, .8); }
.legal-content h2, .legal-content h3 { color: #294d60; }
.legal-content p, .legal-content li { color: #435965; }
.legal-content .eyebrow, .legal-content a { color: #e66813; }
.legal-content .toc, .legal-content .callout {
  border-color: rgba(94, 154, 188, .22);
  background: rgba(232, 247, 255, .72);
  box-shadow: none;
}
.legal-footer {
  border-top: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .46);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.legal-footer a { color: #3e687f; }

.landing-page { background: #91d3f8; overflow: hidden; }
.landing-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  width: min(1080px, calc(100% - 28px));
  transform: translateX(-50%);
  color: white;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 24px;
  background: rgba(255, 255, 255, .18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .78),
    inset 0 -1px 0 rgba(255, 255, 255, .16),
    0 12px 38px rgba(31, 92, 130, .18);
  backdrop-filter: blur(30px) saturate(125%) brightness(1.06);
  -webkit-backdrop-filter: blur(30px) saturate(125%) brightness(1.06);
}
.landing-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% -35%, rgba(255, 255, 255, .52), transparent 43%);
}
.landing-nav .nav-inner { width: 100%; min-height: 62px; padding: 0 16px 0 11px; }
.landing-nav .brand,
.landing-nav .nav-links a { color: white; text-shadow: 0 2px 16px rgba(0, 0, 0, .45); }
.landing-nav .brand { position: relative; z-index: 1; flex: 0 0 auto; }
.landing-nav .brand span { display: inline-block !important; visibility: visible; white-space: nowrap; }
.landing-nav .nav-links { position: relative; z-index: 1; flex: 0 1 auto; }
.landing-nav .brand img { width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .42); }
.video-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #8fd2fb 0%, #b9e5ff 58%, #e7f7dc 100%);
}
.responsive-scenery {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.cloud {
  position: absolute;
  width: clamp(100px, 13vw, 210px);
  height: clamp(35px, 4.8vw, 76px);
  border-radius: 999px;
  background: #ffffff;
  filter: drop-shadow(0 10px 16px rgba(74, 151, 199, .10));
}
.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  bottom: 14%;
  border-radius: 50%;
  background: inherit;
}
.cloud::before { left: 17%; width: 44%; aspect-ratio: 1; }
.cloud::after { right: 13%; width: 55%; aspect-ratio: 1; }
.cloud-one { top: 17%; left: -2%; transform: scale(.72); }
.cloud-two { top: 24%; right: 7%; transform: scale(1.05); }
.cloud-three { top: 48%; left: 10%; transform: scale(.58); }
.cloud-four { top: 51%; right: -2%; transform: scale(.76); }
.cloud-one { width: clamp(130px, 17vw, 250px); height: clamp(30px, 3.8vw, 58px); }
.cloud-one::before { left: 12%; bottom: 8%; width: 34%; }
.cloud-one::after { right: 16%; bottom: 12%; width: 43%; }
.cloud-two { width: clamp(105px, 12vw, 180px); height: clamp(45px, 5.8vw, 88px); }
.cloud-two::before { left: 7%; bottom: 5%; width: 52%; }
.cloud-two::after { right: 5%; bottom: 10%; width: 66%; }
.cloud-three { width: clamp(88px, 9vw, 135px); height: clamp(38px, 4vw, 62px); }
.cloud-three::before { left: 24%; bottom: 16%; width: 51%; }
.cloud-three::after { right: 4%; bottom: 3%; width: 37%; }
.cloud-four { width: clamp(135px, 14vw, 210px); height: clamp(38px, 4vw, 62px); border-radius: 999px; }
.cloud-four::before { left: 14%; bottom: 10%; width: 46%; }
.cloud-four::after { right: 12%; bottom: 8%; width: 42%; }
.ground-hill {
  position: absolute;
  right: 50%;
  bottom: -20%;
  width: min(980px, 82vw);
  height: 42%;
  transform: translateX(50%);
  border-radius: 55% 55% 0 0 / 85% 85% 0 0;
  background: linear-gradient(180deg, #bce98b 0%, #dff4ad 47%, #f2f8c9 100%);
  box-shadow: inset 0 20px 35px rgba(255, 255, 255, .24);
}
.hero-title {
  position: absolute;
  z-index: 3;
  top: clamp(98px, 13vh, 145px);
  left: 50%;
  width: min(760px, calc(100% - 40px));
  transform: translateX(-50%);
  color: white;
  text-align: center;
  text-shadow: 0 3px 18px rgba(53, 29, 8, .34);
}
.hero-title span {
  font-size: clamp(.76rem, 1.5vw, .9rem);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-title h1 { margin: 4px 0 0; font-size: clamp(3.2rem, 8vw, 5.4rem); }
.hero-actions {
  position: relative;
  z-index: 4;
  align-self: end;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 24px clamp(26px, 4vh, 48px);
  text-align: center;
}
.hero-actions p { margin: 0 auto 17px; color: #5e5045; font-size: clamp(.96rem, 2vw, 1.1rem); font-weight: 700; }
.welcome-mist {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(210px, 32vh, 320px);
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .58) 42%, rgba(255, 255, 255, .94) 100%);
}
.dino-source {
  position: absolute;
  width: 2px;
  height: 2px;
  opacity: .001;
  pointer-events: none;
}
.dino-canvas {
  --dino-x: calc(-50% - 25px);
  --dino-y: calc(-50% + 106px);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  height: min(74svh, 800px);
  width: auto;
  aspect-ratio: 9 / 16;
  opacity: 0;
  transform: translate(var(--dino-x), var(--dino-y)) scale(.035);
  transform-origin: center center;
  filter: drop-shadow(0 18px 24px rgba(43, 24, 8, .12));
  pointer-events: none;
}
.dino-canvas.is-ready { animation: dino-grow-in 1.2s ease-in-out forwards; }
@keyframes dino-grow-in {
  0% { opacity: .72; transform: translate(var(--dino-x), var(--dino-y)) scale(.035); }
  100% { opacity: 1; transform: translate(var(--dino-x), var(--dino-y)) scale(1); }
}
.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  padding: 9px 17px 10px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
  color: white;
  background: rgba(0, 0, 0, .88);
  text-align: left;
  text-shadow: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
  transition: transform .18s ease, background .18s ease;
}
.app-store-button:hover { transform: translateY(-2px); background: #000; text-decoration: none; }
.app-store-button small, .app-store-button strong { display: block; line-height: 1; }
.app-store-button small { margin-bottom: 4px; font-size: .68rem; }
.app-store-button strong { font-size: 1.28rem; letter-spacing: -.025em; }
.apple-mark {
  display: grid;
  width: 29px;
  place-items: center;
}
.apple-mark svg { display: block; width: 29px; height: 34px; fill: currentColor; }

@media (max-width: 720px) {
  .nav-links { gap: 13px; font-size: .82rem; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 74px; }
  .content { padding-top: 54px; }
  .dino-canvas { --dino-x: calc(-50% - 12px); --dino-y: calc(-50% + 135px); height: 72svh; }
  .landing-nav { top: 9px; width: calc(100% - 18px); border-radius: 21px; }
  .landing-nav .nav-inner { min-height: 58px; padding-right: 12px; }
  .legal-nav { top: 9px; width: calc(100% - 18px); margin-top: 9px; border-radius: 21px; }
  .legal-nav .nav-inner { min-height: 58px; padding-right: 12px; }
  .legal-content { width: calc(100% - 18px); margin-top: 24px; margin-bottom: 32px; border-radius: 24px; }
  .cloud-one { top: 18%; left: -16%; }
  .cloud-two { top: 39%; right: -13%; transform: scale(.82); }
  .cloud-three { top: 60%; left: -18%; }
  .cloud-four { display: none; }
  .ground-hill { bottom: -12%; width: 135vw; height: 31%; }
}

@media (min-width: 721px) and (max-width: 1100px) and (orientation: portrait) {
  .dino-canvas {
    --dino-x: -50%;
    --dino-y: calc(-50% + 125px);
    height: min(64svh, 650px);
  }
  .ground-hill { bottom: -14%; width: 120vw; height: 33%; }
}
@media (max-width: 440px) {
  .nav-inner { min-height: 64px; }
  .brand img { width: 38px; height: 38px; }
  .landing-nav .nav-inner { gap: 10px; padding-left: 9px; padding-right: 10px; }
  .landing-nav .brand { gap: 6px; font-size: .94rem; }
  .landing-nav .nav-links { gap: 9px; font-size: .74rem; }
  .hero-title h1 { font-size: clamp(3rem, 17vw, 4.5rem); }
  .hero-actions { padding-right: 10px; padding-left: 10px; }
}

@media (max-width: 370px) {
  .landing-nav .nav-links a:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .dino-source { display: none; }
  .app-store-button { transition: none; }
  .dino-canvas.is-ready { animation: none; opacity: 1; transform: translate(var(--dino-x), var(--dino-y)) scale(1); }
}
