/* Gammy public site styles.
   Constraints: ASCII only, no JavaScript, no inline styles (CSP style-src 'self').
   Palette anchors: Play theme color #2e75b6, keypad green/gold/red from the product UI. */

:root {
  color-scheme: light dark;
  --bg: #f6f2ea;
  --bg-tint: #efe8da;
  --panel: #fffdf8;
  --text: #26221b;
  --muted: #5f5a4e;
  --line: #e2dbcb;
  --line-strong: #cfc6b1;
  --accent: #2e75b6;
  --accent-deep: #245e93;
  --green: #2e7d5b;
  --green-deep: #256648;
  --red: #b3382e;
  --gold: #c9a227;
  --gold-soft: #f1e8cf;
  --dark: #171410;
  --dark-soft: #221e17;
  --dark-line: #3a342a;
  --dark-text: #f4efe4;
  --dark-muted: #c9c1af;
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  /* Keep skip-link and anchor targets clear of the sticky header. */
  scroll-padding-top: 84px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Long URLs and package names in the legal pages must wrap on phones. */
  overflow-wrap: break-word;
}

a {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

img {
  max-width: 100%;
}

/* Skip link for keyboard users */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 18px;
  background: var(--dark);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(246, 242, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  width: 14px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--green), var(--gold) 55%, var(--red));
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px clamp(4px, 1vw, 10px);
  font-size: 16px;
}

.nav a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a:focus {
  color: var(--text);
  background: var(--bg-tint);
}

.nav a.active {
  color: var(--text);
  font-weight: 700;
  background: var(--gold-soft);
}

/* Hero */

.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(201, 162, 39, 0.14), rgba(201, 162, 39, 0)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-split {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.hero .lede {
  margin: 22px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 21px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* Keypad chips: the product's three famous buttons, as a small motif. */

.key-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.key {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-bottom: 3px solid rgba(0, 0, 0, 0.25);
}

.key-call {
  color: #ffffff;
  background: var(--green);
}

.key-ok {
  color: #2b2410;
  background: linear-gradient(180deg, #dcb63a, #c9a227);
}

.key-end {
  color: #ffffff;
  background: var(--red);
}

.key-caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* Phone frame around real screenshots */

.phone-frame {
  margin: 0;
  padding: 12px 12px 18px;
  background: #10100e;
  border: 1px solid #2c2a24;
  border-radius: 26px;
  box-shadow: 0 24px 48px -28px rgba(38, 34, 27, 0.55);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #050607;
}

.phone-frame figcaption {
  margin-top: 12px;
  color: #b9b19e;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.hero-art {
  width: min(320px, 100%);
  margin: 0 auto;
}

/* Sections */

.section {
  padding: clamp(52px, 8vw, 100px) clamp(20px, 5vw, 56px);
}

.section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.section h1,
.section h2 {
  margin: 0 0 18px;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.14;
}

.section .eyebrow {
  margin-bottom: 12px;
}

.section p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17.5px;
}

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

.tint {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-band {
  color: var(--dark-text);
  background: var(--dark);
}

.dark-band h1,
.dark-band h2,
.dark-band strong {
  color: #ffffff;
}

.dark-band p,
.dark-band li {
  color: var(--dark-muted);
}

/* Scope the light-blue link color to real links, not buttons: otherwise it
   overrode .btn-primary text and made dark-band CTAs light-blue-on-light-blue. */
.dark-band a:not(.btn) {
  color: #9cc4e8;
}

/* Feature list (three-up, ruled) */

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.feature-list li {
  padding-top: 16px;
  border-top: 3px solid var(--gold);
  color: var(--muted);
  font-size: 16.5px;
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 19px;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(38, 34, 27, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  color: var(--text);
}

.card p,
.card li {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.dark-band .card {
  background: var(--dark-soft);
  border-color: var(--dark-line);
  box-shadow: none;
}

.dark-band .card h3 {
  color: #ffffff;
}

.dark-band .card p,
.dark-band .card li {
  color: var(--dark-muted);
}

/* Edition cards (Focus / Full / Managed) */

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.mode-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
}

.mode-card.mode-focus {
  border-top-color: var(--green);
}

.mode-card.mode-full {
  border-top-color: var(--accent);
}

.mode-card.mode-managed {
  border-top-color: var(--gold);
}

.mode-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  color: var(--text);
}

.mode-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.dark-band .mode-card {
  background: var(--dark-soft);
  border-color: var(--dark-line);
}

.dark-band .mode-card.mode-focus {
  border-top-color: var(--green);
}

.dark-band .mode-card.mode-full {
  border-top-color: var(--accent);
}

.dark-band .mode-card.mode-managed {
  border-top-color: var(--gold);
}

.dark-band .mode-card h3 {
  color: #ffffff;
}

.dark-band .mode-card p {
  color: var(--dark-muted);
}

/* Screenshot gallery */

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

/* Split section (text + art) */

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
}

.feature-art {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #101418;
}

/* Steps */

.step-list {
  counter-reset: step;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.step-list li {
  position: relative;
  padding-left: 66px;
  color: var(--muted);
  font-size: 17px;
  min-height: 46px;
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: #2b2410;
  background: linear-gradient(180deg, #dcb63a, #c9a227);
  border-radius: 12px;
}

.step-list strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 4px;
}

/* FAQ */

.faq-group {
  margin-top: 40px;
}

.faq-group h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.6vw, 28px);
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

.faq-item p + p {
  margin-top: 10px;
}

/* Notices */

.notice {
  max-width: 860px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-left: 5px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 0 10px 10px 0;
  color: #4d4636;
  font-size: 16px;
}

.dark-band .notice {
  background: var(--dark-soft);
  border-color: var(--dark-line);
  border-left-color: var(--gold);
  color: var(--dark-muted);
}

/* Pricing and availability */

.price-table {
  max-width: 860px;
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 32px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-info h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
}

.price-info p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}

.price-tag {
  margin: 0;
  flex: none;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-align: right;
  white-space: nowrap;
}

.price-tag span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.price-footnote {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 720px) {
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .price-tag {
    text-align: left;
    white-space: normal;
  }
}

/* Gammy Studios homepage — organic, editorial, and distinctly keypad-first. */
.home-page { --ink: #173e35; --ink-dark: #0f2923; --paper: #f8f5ee; --cream: #efe9dc; --lime: #d9e95c; --coral: #ff785e; --golden: #f3bd56; --line-home: rgba(23, 62, 53, .18); color: var(--ink); background: var(--paper); }
.home-page .site-header { color: var(--ink); background: rgba(248,245,238,.92); border-bottom-color: var(--line-home); }
.home-page .brand { color: var(--ink); font-family: Arial, sans-serif; font-weight: 900; font-size: 25px; letter-spacing: -.08em; }
.home-page .brand-mark { width: 12px; height: 24px; border-radius: 8px 8px 3px 3px; background: var(--coral); }
.home-page .nav a { color: var(--ink); font-size: 14px; font-weight: 700; }
.home-page .nav a:hover, .home-page .nav a:focus { background: var(--cream); }
.header-link { padding: 9px 0; color: var(--ink); font-size: 14px; font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--ink); }
.studio-hero { position: relative; overflow: hidden; min-height: 700px; color: #fff; background: var(--ink); }
.studio-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.13fr) minmax(360px, .87fr); align-items: center; width: min(1250px, 100%); min-height: 700px; margin: 0 auto; padding: 72px clamp(24px, 5.7vw, 72px) 64px; }
.hero-intro { max-width: 680px; padding-bottom: 16px; }
.hero-kicker, .section-label { margin: 0; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-kicker { display: flex; align-items: center; gap: 10px; color: #d7e5c6; }
.hero-kicker span { display:block; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.hero-intro h1 { max-width: 720px; margin: 27px 0 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(48px, 5.8vw, 82px); font-weight: 400; line-height: .98; letter-spacing: -.065em; }
.hero-intro h1 em, .product-copy-panel h2 em, .closing-section h2 em { color: var(--lime); font-style: italic; }
.hero-summary { max-width: 500px; margin: 30px 0 0; color: #d2ddd8; font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 23px; margin-top: 34px; }
.hero-button { display: inline-flex; align-items: center; gap: 24px; padding: 15px 18px 15px 21px; color: var(--ink); font-size: 14px; font-weight: 900; text-decoration: none; border-radius: 100px; }
.hero-button span { font-size: 18px; line-height: .8; }
.hero-button-primary { background: var(--lime); }
.hero-button-primary:hover, .hero-button-primary:focus { color: #fff; background: var(--coral); }
.hero-text-link { color: #fff; font-size: 14px; font-weight: 800; text-decoration: none; border-bottom: 1px solid #90a89f; }
.hero-text-link:hover, .hero-text-link:focus { border-bottom-color: #fff; }
.hero-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 64px; color: #aebfb9; font-size: 12px; font-weight: 700; }
.hero-proof i { width: 3px; height: 3px; border-radius: 50%; background: var(--coral); }
.hero-device-area { position: relative; height: 560px; }
.hero-phone-shell { position: absolute; z-index: 2; top: 20px; left: 50%; width: min(260px, 75%); padding: 13px 11px 20px; overflow: hidden; background: #161a18; border: 2px solid #577166; border-radius: 35px; box-shadow: -18px 25px 0 rgba(0,0,0,.12), 0 38px 55px rgba(0,0,0,.36); transform: translateX(-45%) rotate(5deg); }
.hero-phone-shell img { display: block; width: 100%; border-radius: 24px; }
.hero-phone-speaker { width: 42px; height: 5px; margin: 0 auto 10px; border-radius: 10px; background: #52665e; }
.hero-phone-controls { display: flex; justify-content: center; gap: 12px; padding: 12px 0 0; }
.hero-phone-controls span { width: 10px; height: 10px; border-radius: 50%; background: #425a51; }
.hero-phone-controls span:nth-child(2) { width: 32px; border-radius: 9px; }
.hero-device-shadow { position:absolute; z-index: 0; top: 64px; left: 50%; width: 290px; height: 435px; border: 1px solid rgba(217,233,92,.5); border-radius: 140px; transform: translateX(-42%) rotate(25deg); }
.hero-caption { position: absolute; z-index: 3; color: #d7e5c6; font-family: Georgia, serif; font-size: 15px; font-style: italic; line-height: 1.25; }
.hero-caption-top { top: 72px; right: 0; padding-left: 20px; border-left: 1px solid var(--lime); }
.hero-caption-bottom { bottom: 41px; left: 2%; color: #fff; }
.hero-caption-bottom strong { color: var(--coral); font-family: Arial, sans-serif; font-size: 11px; letter-spacing: .1em; }
.studio-orbit { position:absolute; border-radius: 50%; border: 1px solid rgba(217,233,92,.19); }
.orbit-one { right: -120px; top: -240px; width: 760px; height: 760px; }
.orbit-two { right: -10px; bottom: -520px; width: 700px; height: 700px; border-color: rgba(255,120,94,.18); }
.hero-scroll { position: absolute; right: 30px; bottom: 35px; z-index:2; display: flex; align-items: center; gap: 12px; color: #aebfb9; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll b { display: block; width: 1px; height: 32px; background: var(--lime); }
.belief-band { display: grid; grid-template-columns: .7fr 1.3fr; gap: 32px; padding: clamp(62px,9vw,130px) clamp(24px,8vw,120px); background: var(--lime); }
.belief-label { align-self: start; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }.belief-label span{margin-left:12px;font-size:17px}.display-copy { max-width: 875px; margin: 0; font-family: Georgia, serif; font-size: clamp(37px,5.2vw,68px); line-height: 1.03; letter-spacing: -.055em; }.display-copy em{color:var(--coral);font-style:italic}.belief-detail { max-width: 480px; margin: 32px 0 0; font-size: 17px; line-height: 1.6; }
.button-story { padding: clamp(76px,11vw,145px) clamp(24px,8vw,120px) clamp(56px,8vw,105px); background: var(--paper); }.story-heading{display:flex;justify-content:space-between;gap:30px;align-items:flex-end}.section-label{color:#56766a}.story-heading h2,.everyone-header h2,.edition-heading h2,.family-band h2,.closing-section h2{margin:0;font-family:Georgia,serif;font-size:clamp(42px,5.2vw,69px);font-weight:400;line-height:.98;letter-spacing:-.06em}.button-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:58px; }.button-card { min-height: 345px; padding: 24px; border-radius: 14px; color:var(--ink); }.button-card-call { background:#cceee6; }.button-card-ok { background:var(--golden); }.button-card-end { background:#ffb4a7; }.button-symbol { display:grid; place-items:center; width:64px;height:64px;border:1px solid rgba(23,62,53,.5);border-radius:50%;font-size:34px; }.card-index{margin:62px 0 5px;font-family:Arial,sans-serif;font-size:11px;font-weight:900;letter-spacing:.12em}.button-card h3{margin:0;font-family:Georgia,serif;font-size:40px;font-weight:400;letter-spacing:-.04em}.button-card p:last-child{max-width:240px;margin:8px 0 0;font-size:15px;line-height:1.45}.story-note { margin: 20px 0 0; color:#58766d; font-size:14px; font-weight:700; }
.product-split { display:grid; grid-template-columns: 1fr 1fr; min-height:675px; }.product-screen-panel { position:relative; overflow:hidden; padding: 26px clamp(24px,6vw,88px); background:#f6c9b6; }.screen-panel-header{position:relative;z-index:2;display:flex;justify-content:space-between;color:#6f4e45;font-size:10px;font-weight:900;letter-spacing:.11em}.screen-stack{position:relative;height:520px;margin:22px auto 0}.screen-stack img{position:absolute;display:block;width:230px;border:10px solid #1b2d28;border-radius:25px;box-shadow:0 25px 45px rgba(89,51,41,.25)}.screen-back{top:70px;left:24%;transform:rotate(-11deg);opacity:.55}.screen-front{top:0;right:19%;transform:rotate(8deg)}.screen-panel-caption{position:relative;z-index:2;max-width:270px;margin:0;color:#754c41;font-size:14px;font-style:italic;line-height:1.4}.product-copy-panel{padding:clamp(65px,9vw,128px) clamp(28px,7vw,100px);background:var(--ink);color:#fff}.product-copy-panel .section-label{color:var(--lime)}.product-copy-panel h2{margin:25px 0 0;font-family:Georgia,serif;font-size:clamp(43px,5vw,67px);font-weight:400;line-height:.98;letter-spacing:-.06em}.product-copy-panel>p:not(.section-label){max-width:430px;margin:26px 0 0;color:#cbdbd4;font-size:16px;line-height:1.6}.arrow-link{display:inline-flex;gap:20px;align-items:center;margin-top:30px;color:inherit;font-size:14px;font-weight:900;text-decoration:none;border-bottom:1px solid currentColor}.arrow-link:hover,.arrow-link:focus{color:var(--coral)}.feature-pair{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:72px;padding-top:20px;border-top:1px solid rgba(255,255,255,.24)}.feature-pair span{color:var(--coral);font-size:11px;font-weight:900;letter-spacing:.1em}.feature-pair strong{display:block;margin-top:7px;font-size:15px}.feature-pair p{margin:7px 0 0;color:#b5c9c1;font-size:13px;line-height:1.4}
.for-everyone{padding:clamp(76px,11vw,150px) clamp(24px,8vw,120px);background:var(--cream)}.everyone-header{display:flex;justify-content:space-between;align-items:flex-end;gap:30px}.audience-grid{display:grid;grid-template-columns:1.05fr 1fr 1fr;gap:16px;margin-top:55px}.audience-card{display:flex;flex-direction:column;justify-content:space-between;min-height:390px;padding:22px;text-decoration:none;color:var(--ink);border-radius:14px;transition:transform .18s ease}.audience-card:hover,.audience-card:focus{color:var(--ink);transform:translateY(-6px)}.audience-card-focus{background:#d9e95c}.audience-card-family{background:#c7e7e0}.audience-card-new{background:#f2ba55}.audience-number{font-size:11px;font-weight:900;letter-spacing:.12em}.audience-card p{margin:0;color:#416158;font-size:10px;font-weight:900;letter-spacing:.12em}.audience-card h3{max-width:320px;margin:10px 0 18px;font-family:Georgia,serif;font-size:clamp(31px,3.2vw,45px);font-weight:400;line-height:1;letter-spacing:-.05em}.audience-card div>span{display:block;max-width:280px;font-size:14px;line-height:1.45}.audience-card b{display:inline-block;margin-left:8px;font-size:18px}
.edition-section{padding:clamp(76px,11vw,145px) clamp(24px,8vw,120px);background:var(--paper)}.edition-heading{display:grid;grid-template-columns:.7fr 1.3fr;gap:30px}.edition-heading>p:last-child{max-width:385px;margin:20px 0 0;color:#53726a;font-size:16px;line-height:1.55}.edition-list{margin-top:64px;border-top:1px solid var(--line-home)}.edition-row{display:grid;grid-template-columns:56px 1.05fr 1.45fr .6fr;gap:25px;align-items:center;padding:26px 0;border-bottom:1px solid var(--line-home)}.edition-marker{display:grid;place-items:center;width:42px;height:42px;color:#fff;border-radius:50%;background:var(--ink);font-weight:900}.edition-focus .edition-marker{background:#75920e}.edition-full .edition-marker{background:var(--coral)}.edition-managed .edition-marker{background:#d88a13}.edition-name span{color:#627d74;font-size:10px;font-weight:900;letter-spacing:.1em}.edition-name h3{margin:4px 0 0;font-family:Georgia,serif;font-size:28px;font-weight:400;letter-spacing:-.04em}.edition-row>p{margin:0;color:#547068;font-size:14px;line-height:1.45}.edition-row>strong{font-family:Georgia,serif;font-size:22px;font-weight:400;text-align:right;white-space:nowrap}.edition-row small{font-family:Arial,sans-serif;font-size:11px;font-weight:700}.edition-note{margin:18px 0 0;color:#647d75;font-size:13px}
.family-band{position:relative;display:grid;grid-template-columns:.8fr 1.2fr;min-height:530px;overflow:hidden;color:#fff;background:var(--coral)}.family-band-art{position:relative;overflow:hidden}.family-arch{position:absolute;top:40px;right:-80px;width:500px;height:500px;border:1px solid rgba(255,255,255,.65);border-radius:50%}.family-dot{position:absolute;top:155px;right:140px;width:78px;height:78px;border-radius:50%;background:var(--lime)}.family-line{position:absolute;top:194px;right:0;width:220px;height:1px;background:var(--ink)}.family-band-copy{position:relative;z-index:1;padding:clamp(70px,9vw,125px) clamp(28px,8vw,112px);background:var(--ink)}.family-band-copy .section-label{color:var(--lime)}.family-band h2{margin-top:24px}.family-band-copy>p:not(.section-label){max-width:440px;margin:25px 0 0;color:#cad9d3;font-size:16px;line-height:1.55}.hero-button-light{margin-top:32px;color:var(--ink);background:#fff}.hero-button-light:hover,.hero-button-light:focus{background:var(--lime)}
.closing-section{padding:clamp(85px,12vw,165px) 24px;text-align:center;background:var(--lime)}.closing-section .section-label{color:var(--ink)}.closing-section h2{margin-top:25px}.closing-section h2 em{color:var(--coral)}.closing-section>p:not(.section-label){max-width:540px;margin:28px auto 0;font-size:17px;line-height:1.55}.closing-actions{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:26px;margin-top:34px}.closing-actions .hero-button-primary{background:var(--ink);color:#fff}.closing-actions .hero-button-primary:hover,.closing-actions .hero-button-primary:focus{background:var(--coral)}.closing-actions .arrow-link{margin:0}
.studio-footer{padding:48px clamp(24px,8vw,120px) 28px;color:#d0dfd9;background:var(--ink-dark)}.footer-top{display:flex;align-items:center;justify-content:space-between;gap:24px;padding-bottom:44px;border-bottom:1px solid rgba(255,255,255,.2)}.studio-footer .brand{color:#fff}.studio-footer .brand-mark{background:var(--lime)}.footer-top p{margin:0;font-family:Georgia,serif;font-size:18px;font-style:italic}.footer-top>a{color:#d0dfd9;font-size:14px;font-weight:800}.footer-links-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;padding:38px 0}.footer-links-grid div{display:grid;gap:10px;align-content:start}.footer-links-grid span{margin-bottom:4px;color:#7ca499;font-size:10px;font-weight:900;letter-spacing:.13em}.footer-links-grid a{color:#d0dfd9;font-size:14px;text-decoration:none}.footer-links-grid a:hover,.footer-links-grid a:focus{color:var(--lime)}.footer-bottom{display:flex;justify-content:space-between;gap:20px;padding-top:20px;color:#7ca499;border-top:1px solid rgba(255,255,255,.2);font-size:11px;font-weight:700;letter-spacing:.05em}
@media (max-width: 880px){.home-page .site-header{justify-content:space-between}.header-link{display:none}.studio-hero-inner{grid-template-columns:1fr;min-height:0;padding-top:66px}.hero-device-area{height:490px;margin-top:10px}.hero-phone-shell{left:50%;width:230px}.hero-caption-top{right:10%}.hero-caption-bottom{left:8%}.hero-scroll{display:none}.belief-band,.edition-heading{grid-template-columns:1fr}.belief-copy{max-width:850px}.product-split,.family-band{grid-template-columns:1fr}.product-screen-panel{min-height:600px}.family-band-art{height:160px}.family-arch{top:-280px;right:6%;width:430px;height:430px}.family-dot{top:45px;right:30%;width:50px;height:50px}.family-line{top:70px}.family-band-copy{padding-top:70px}.edition-heading>p:last-child{margin-top:0}.edition-row{grid-template-columns:48px 1fr .8fr}.edition-row>p{grid-column:2/4}.edition-row>strong{grid-column:3;grid-row:1/3}.footer-top{align-items:flex-start;flex-direction:column}}
@media (max-width: 640px){.home-page .site-header{padding:13px 18px}.home-page .nav{gap:0;font-size:12px}.home-page .nav a{padding:6px 7px}.studio-hero{min-height:0}.studio-hero-inner{padding:50px 24px 34px}.hero-intro h1{font-size:clamp(45px,14vw,65px)}.hero-summary{font-size:16px}.hero-proof{margin-top:42px}.hero-device-area{height:420px}.hero-phone-shell{width:190px;top:20px}.hero-device-shadow{width:235px;height:335px;top:44px}.hero-caption{font-size:12px}.hero-caption-top{top:49px;right:0}.hero-caption-bottom{bottom:22px;left:0}.belief-band,.button-story,.for-everyone,.edition-section{padding-left:24px;padding-right:24px}.button-card-grid,.audience-grid{grid-template-columns:1fr}.button-card{min-height:240px}.card-index{margin-top:30px}.story-heading,.everyone-header{display:block}.story-heading h2,.everyone-header h2{margin-top:18px}.product-screen-panel{min-height:510px;padding-left:24px;padding-right:24px}.screen-stack{height:420px}.screen-stack img{width:185px}.screen-back{left:8%}.screen-front{right:10%}.feature-pair{margin-top:48px}.edition-row{grid-template-columns:45px 1fr;gap:13px;padding:21px 0}.edition-row>p{grid-column:2;margin-top:-4px}.edition-row>strong{grid-column:2;grid-row:auto;text-align:left}.family-band-copy{padding:60px 24px}.closing-section{padding-left:24px;padding-right:24px}.footer-links-grid{grid-template-columns:1fr 1fr}.footer-links-grid div:last-child{grid-column:span 2}.footer-bottom{flex-direction:column}.studio-footer{padding-left:24px;padding-right:24px}}

/* Buttons */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.22);
}

.btn-primary {
  color: #ffffff;
  background: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-deep);
}

.btn-ghost {
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-bottom-width: 3px;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--muted);
}

.dark-band .btn-ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.dark-band .btn-ghost:hover,
.dark-band .btn-ghost:focus {
  border-color: #ffffff;
}

/* Plain content pages (privacy, data deletion, support, 404) */

.plain-page {
  padding: clamp(28px, 5vw, 64px) clamp(18px, 4vw, 44px);
}

.content {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.content h1 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.1;
}

.content h2 {
  margin: 34px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 24px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 17px;
}

.content ul {
  display: grid;
  gap: 8px;
}

.content code {
  padding: 2px 5px;
  background: var(--bg-tint);
  border-radius: 5px;
  font-size: 0.92em;
}

.meta {
  color: var(--muted);
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.contact-table th,
.contact-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.contact-table th {
  width: 190px;
  color: var(--text);
}

/* Footer */

.site-footer {
  padding: clamp(36px, 6vw, 56px) clamp(18px, 4vw, 48px) 40px;
  color: var(--muted);
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  font-size: 15.5px;
}

.footer-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.footer-brand p {
  margin: 10px 0 0;
  max-width: 340px;
}

.footer-col h2 {
  margin: 4px 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus {
  color: var(--text);
  text-decoration: underline;
}

.footer-note {
  width: min(1080px, 100%);
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}

.footer-note p {
  margin: 0 0 4px;
}

.footer-social {
  width: min(1080px, 100%);
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
    width: min(250px, 70%);
  }

  .card-grid,
  .mode-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .card-grid,
  .mode-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .site-header {
    justify-content: center;
  }

  .nav {
    justify-content: center;
    font-size: 15px;
  }

  .contact-table th,
  .contact-table td {
    display: block;
    width: 100%;
  }

  .contact-table td {
    padding-top: 0;
  }

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

/* Dark scheme */

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16130e;
    --bg-tint: #1d1913;
    --panel: #211d16;
    --text: #f4efe4;
    --muted: #bfb7a5;
    --line: #37312a;
    --line-strong: #474034;
    --gold-soft: #2c2517;
    --accent: #6ea8dd;
    --accent-deep: #8abbe8;
  }

  body {
    background: var(--bg);
  }

  .site-header {
    background: rgba(22, 19, 14, 0.92);
  }

  .hero {
    background:
      radial-gradient(1100px 500px at 85% -10%, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0)),
      var(--bg);
  }

  .badge::before {
    background: #4caf82;
  }

  .btn-primary {
    color: #10100e;
    background: #8abbe8;
  }

  .btn-primary:hover,
  .btn-primary:focus {
    background: #a9cdf0;
  }

  .btn-ghost {
    color: var(--text);
  }

  .notice {
    color: var(--muted);
  }

  .phone-frame {
    border-color: #3a3a34;
  }

  .eyebrow {
    color: #7fbc9f;
  }

  .mode-card h3,
  .card h3 {
    color: var(--text);
  }
}

/* --- Homepage redesign (folded in from the reviewed preview) --- */

/* De-stripe: hairline borders + a small accent square, not thick single-edge stripes */
.mode-card {
  border: 1px solid var(--line-strong);
}
.mode-card.mode-focus,
.mode-card.mode-full,
.mode-card.mode-managed {
  border-top-color: var(--line-strong);
}
.mode-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mode-card h3::before {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent);
}
.mode-card.mode-focus h3::before { background: var(--green); }
.mode-card.mode-full h3::before { background: var(--accent); }
.mode-card.mode-managed h3::before { background: var(--gold); }

.notice {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}

.feature-list li {
  position: relative;
  border-top: 1px solid var(--line-strong);
}
.feature-list li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}

/* "Who Gammy is for": asymmetric 1-lead + 2-supporting */
.persona-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.persona-lead {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.persona-lead h3 {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.15;
}
.persona-lead p {
  font-size: 17px;
}

/* "What's included": 2-column ruled list */
.include-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
}
.include-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16.5px;
}
.include-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 18px;
}

/* Footer re-archetype: mast-headed (brand + social inline), links row, fine print */
.footer-mast {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
}
.footer-redesign .footer-social {
  width: auto;
  margin: 0;
}
.footer-links {
  width: min(1080px, 100%);
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 15.5px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--text);
  text-decoration: underline;
}

/* Vary the vertical rhythm instead of one uniform section padding */
.section.pad-tight {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
}
.section.pad-loose {
  padding-top: clamp(64px, 10vw, 128px);
  padding-bottom: clamp(64px, 10vw, 128px);
}

@media (max-width: 720px) {
  .persona-grid {
    grid-template-columns: 1fr;
  }
  .persona-lead {
    grid-row: auto;
  }
  .include-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-mast {
    flex-direction: column;
    align-items: flex-start;
  }
}
