
:root {
  --paper: #f3f0e9;
  --paper-light: #faf9f5;
  --ink: #1d1e1b;
  --muted: #6f716b;
  --line: #d8d3c8;
  --orange: #df4c08;
  --orange-dark: #b73a03;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.studio-mark {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: 13px;
}
.studio-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; }
.site-header nav, .site-footer nav { display: flex; gap: 28px; }
.site-header nav a, .site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.site-header nav a:hover, .site-footer nav a:hover { color: var(--orange); }

.hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 74px;
  align-items: center;
  min-height: 760px;
  padding-block: 76px 92px;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  margin: 0 0 25px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.margin-wordmark {
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: .84;
  letter-spacing: -.075em;
  font-weight: 900;
  color: var(--orange);
}
.margin-wordmark span { color: var(--ink); }
.margin-wordmark.small { font-size: 42px; }
.hero h1 {
  max-width: 620px;
  margin: 34px 0 22px;
  font-size: clamp(37px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 700;
}
.lede {
  max-width: 585px;
  margin: 0 0 31px;
  color: #555750;
  font-size: 20px;
  line-height: 1.55;
}
.store-button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}
.store-button:not(.is-coming):hover { background: var(--orange-dark); }
.store-button.is-coming { background: transparent; color: var(--orange); cursor: default; }
.store-button.secondary { background: var(--paper-light); color: var(--orange); border-color: var(--paper-light); }
.availability { margin: 17px 0 0; color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; height: 650px; }
.panel {
  position: absolute;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid #e3ded4;
  box-shadow: 0 28px 70px rgba(41, 35, 26, .14);
}
.panel img { width: 100%; height: auto; }
.panel-back { width: 56%; left: 0; top: 88px; height: 500px; transform: rotate(-2deg); opacity: .9; }
.panel-front { width: 61%; right: 3%; top: 0; height: 650px; border-radius: 15px; }
.total-chip {
  position: absolute;
  right: 0;
  bottom: 41px;
  min-width: 285px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: white;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,.19);
}
.total-chip span { color: #ffb48e; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.total-chip strong { font-size: 22px; }

.positioning { border-top: 1px solid var(--line); padding-block: 104px 68px; }
.positioning-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; }
.positioning h2, .product-view h2, .privacy-note h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.positioning-grid > p, .product-view-copy > p:last-child, .privacy-note > div:last-child p {
  margin: 3px 0 0;
  color: #555750;
  font-size: 20px;
  line-height: 1.62;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card { min-height: 325px; padding: 47px 38px 50px 0; }
.feature-card + .feature-card { border-left: 1px solid var(--line); padding-left: 38px; }
.feature-number { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.feature-card h3 { margin: 58px 0 18px; font-size: 26px; line-height: 1.12; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }

.product-view { padding-block: 118px; }
.product-view-copy { max-width: 720px; margin-bottom: 54px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 70px; align-items: end; }
.product-view-copy .section-kicker { grid-column: 1 / -1; margin-bottom: -35px; }
.product-view h2 { font-size: clamp(37px, 4vw, 54px); }
.screenshot-frame { overflow: hidden; border: 1px solid var(--line); background: var(--paper-light); box-shadow: 0 26px 70px rgba(41,35,26,.10); }
.screenshot-frame img { width: 100%; }

.privacy-note {
  padding-block: 95px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}
.privacy-note h2 { max-width: 500px; }
.text-link { display: inline-block; margin-top: 24px; color: var(--orange); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.final-cta { background: var(--orange); color: white; }
.final-cta-inner { min-height: 365px; display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.final-cta .margin-wordmark { color: white; margin-bottom: 34px; }
.final-cta .margin-wordmark span { color: var(--ink); }
.final-cta h2 { max-width: 740px; }
.site-footer { min-height: 128px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 13px; }

.legal-page { min-height: 100vh; }
.legal-main { max-width: 800px; padding-block: 86px 120px; }
.legal-main .margin-wordmark { font-size: 42px; margin-bottom: 70px; }
.legal-main h1 { margin: 0 0 18px; font-size: clamp(42px, 6vw, 70px); letter-spacing: -.05em; }
.legal-intro { color: #555750; font-size: 21px; line-height: 1.55; }
.legal-updated { margin: 30px 0 60px; color: var(--muted); font-size: 13px; }
.legal-section { padding-block: 34px; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 15px; font-size: 23px; }
.legal-section p, .legal-section li { color: #555750; font-size: 16px; line-height: 1.7; }
.legal-section ul { padding-left: 20px; }
.back-link { color: var(--orange); text-decoration: none; font-weight: 800; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 45px; padding-top: 65px; }
  .hero-visual { height: 570px; max-width: 620px; width: 100%; margin-inline: auto; }
  .positioning-grid, .privacy-note { grid-template-columns: 1fr; gap: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; padding: 40px 0; }
  .feature-card + .feature-card { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .feature-card h3 { margin-top: 30px; }
  .product-view-copy { grid-template-columns: 1fr; gap: 20px; }
  .product-view-copy .section-kicker { margin-bottom: 5px; }
  .final-cta-inner { padding-block: 80px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 72px; }
  .site-header nav a:first-child { display: none; }
  .hero { min-height: auto; padding-block: 56px 70px; }
  .margin-wordmark { font-size: 58px; }
  .hero h1 { font-size: 39px; }
  .lede { font-size: 18px; }
  .hero-visual { height: 470px; }
  .panel-back { width: 59%; height: 360px; top: 64px; }
  .panel-front { width: 65%; height: 470px; }
  .total-chip { min-width: 235px; padding: 13px 15px; bottom: 28px; }
  .total-chip strong { font-size: 18px; }
  .positioning, .product-view, .privacy-note { padding-block: 74px; }
  .product-view-copy { margin-bottom: 35px; }
  .screenshot-frame img { width: 155%; max-width: none; transform: translateX(-36%); }
  .final-cta h2 { font-size: 40px; }
  .site-footer { padding-block: 35px; align-items: flex-start; flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; gap: 17px 24px; }
}
