:root {
  color-scheme: light;
  --paper: #fff8f3;
  --surface: #ffffff;
  --surface-soft: #faece2;
  --ink: #35253a;
  --muted: #725f68;
  --line: #dfd2cb;
  --accent: #f8894d;
  --accent-strong: #c94f2f;
  --success: #277a58;
  --warning: #9a5a19;
  --focus: #2463a9;
  --shadow: 0 10px 26px rgba(63, 42, 36, 0.13);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #8d321f;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(36, 99, 169, 0.35);
  outline-offset: 3px;
}

.draft-banner {
  background: #fff1ca;
  border-bottom: 1px solid #e3c67c;
  color: #67430e;
  font-size: 14px;
  padding: 8px 20px;
  text-align: center;
}

.site-header {
  background: rgba(255, 248, 243, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner,
.page-shell,
.footer-inner {
  margin: 0 auto;
  max-width: 1120px;
  min-width: 0;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  min-height: 68px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  height: 38px;
  width: 38px;
}

.site-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 11px;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.page-shell {
  padding-bottom: 80px;
  padding-top: 54px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) 260px;
  min-height: 410px;
  padding: 24px 0 54px;
}

.hero-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.hero-mark img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  height: 152px;
  width: 152px;
}

.eyebrow,
.meta-line {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 750;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  line-height: 1.3;
  letter-spacing: 0;
}

h1 {
  font-size: 42px;
  margin: 0 0 18px;
}

h2 {
  font-size: 26px;
  margin: 48px 0 16px;
}

h3 {
  font-size: 19px;
  margin: 30px 0 10px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  margin: 0;
  max-width: 720px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 7px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 46px;
  padding: 9px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #291b21;
}

.button:hover {
  box-shadow: var(--shadow);
  color: var(--ink);
}

.band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 0 calc(50% - 50vw);
  padding: 44px max(24px, calc(50vw - 536px));
}

.band.surface {
  background: var(--surface);
}

.feature-grid,
.link-grid,
.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.link-tile,
.contact-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 22px;
}

.feature h3,
.link-tile h3,
.contact-item h3 {
  margin-top: 0;
}

.feature p,
.link-tile p,
.contact-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.link-tile {
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.link-tile:hover {
  box-shadow: var(--shadow);
  color: var(--ink);
}

.document-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  min-width: 0;
  padding-bottom: 28px;
}

.document-header h1 {
  font-size: 36px;
}

.document-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px 22px;
}

.notice {
  background: #fff1ca;
  border: 1px solid #e3c67c;
  border-radius: 7px;
  color: #67430e;
  margin: 22px 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 14px 16px;
}

.notice.critical {
  background: #fff0ed;
  border-color: #e7a99d;
  color: #7b2c22;
}

.notice.success {
  background: #ecf7f1;
  border-color: #a5d5bd;
  color: #175b40;
}

.status {
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  padding: 3px 9px;
  white-space: nowrap;
}

.status.pending {
  color: var(--warning);
}

.status.keep {
  color: var(--success);
}

.status.remove {
  color: #a2352a;
}

.doc-toc {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  margin: 28px 0 34px;
  max-width: 100%;
  min-width: 0;
  padding: 18px 22px;
}

.doc-toc strong {
  display: block;
  margin-bottom: 8px;
}

.doc-toc ul {
  column-count: 2;
  margin: 0;
  padding-left: 20px;
}

table {
  border-collapse: collapse;
  display: block;
  font-size: 14px;
  margin: 20px 0 34px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  width: 100%;
}

th,
td {
  border: 1px solid var(--line);
  min-width: 150px;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-soft);
  color: var(--ink);
}

code {
  background: var(--surface-soft);
  border-radius: 4px;
  font-size: 0.92em;
  padding: 2px 5px;
}

.timeline {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.timeline li {
  border-left: 3px solid var(--line);
  margin-left: 8px;
  padding: 0 0 28px 24px;
  position: relative;
}

.timeline li::before {
  background: var(--accent);
  border: 3px solid var(--paper);
  border-radius: 50%;
  content: "";
  height: 13px;
  left: -8px;
  position: absolute;
  top: 5px;
  width: 13px;
}

.site-footer {
  background: #35253a;
  color: #f8eee8;
  padding: 38px 0;
}

.footer-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffd3bb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
}

.filing-placeholder {
  color: #cabdc5;
  font-size: 13px;
  margin-top: 8px !important;
}

@media (max-width: 820px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .site-nav {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero {
    gap: 28px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-mark {
    grid-row: 1;
    justify-self: start;
    width: 180px;
  }

  .hero-mark img {
    height: 110px;
    width: 110px;
  }

  .feature-grid,
  .link-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .header-inner,
  .page-shell,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-shell {
    padding-bottom: 54px;
    padding-top: 34px;
  }

  h1,
  .document-header h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 23px;
  }

  .lead {
    font-size: 17px;
  }

  .band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-grid,
  .link-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .doc-toc ul {
    column-count: 1;
  }

  .actions .button {
    width: 100%;
  }
}

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

/* --------------------------------------------------------------------------
   Weisi brand refresh · warm editorial table
   -------------------------------------------------------------------------- */

:root {
  --paper: #fff4ec;
  --paper-deep: #f9e3d5;
  --surface: #fffaf6;
  --surface-soft: #fcece3;
  --surface-warm: #f6d8c5;
  --ink: #462f4d;
  --muted: #73503d;
  --muted-soft: #987969;
  --line: rgba(115, 80, 61, 0.16);
  --accent: #f2894f;
  --accent-strong: #dc6d38;
  --plum: #462f4d;
  --plum-soft: #a485ad;
  --success: #277a58;
  --warning: #9a5a19;
  --focus: #7b5d84;
  --shadow-soft: 0 24px 70px rgba(86, 53, 43, 0.1);
  --shadow-card: 0 18px 40px rgba(74, 45, 39, 0.09);
  --shadow-stage: 0 34px 90px rgba(54, 34, 59, 0.22);
  font-family: "Montserrat", "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html {
  background: var(--paper);
}

body {
  background:
    radial-gradient(circle at 9% 11%, rgba(242, 137, 79, 0.09), transparent 23rem),
    radial-gradient(circle at 92% 30%, rgba(164, 133, 173, 0.09), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.72;
}

body::before,
body::after {
  border: 1px solid rgba(242, 137, 79, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body::before {
  height: 410px;
  left: -238px;
  top: -154px;
  transform: rotate(18deg);
  width: 520px;
}

body::after {
  height: 310px;
  left: -170px;
  top: -94px;
  transform: rotate(31deg);
  width: 400px;
}

::selection {
  background: rgba(242, 137, 79, 0.3);
  color: var(--ink);
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 1px;
}

a:hover {
  color: #b8542d;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(164, 133, 173, 0.22);
}

.draft-banner {
  background: var(--plum);
  border: 0;
  color: rgba(255, 244, 236, 0.78);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.04em;
  padding: 9px 20px;
}

.draft-banner span {
  color: #ffd7bd;
  font-weight: 750;
  margin-right: 10px;
}

.site-header {
  background: rgba(255, 244, 236, 0.98);
  border: 0;
  box-shadow: 0 12px 34px rgba(70, 47, 77, 0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner,
.page-shell,
.footer-inner {
  max-width: 1180px;
  padding-left: 30px;
  padding-right: 30px;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 30px;
  min-height: 84px;
}

.brand {
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  gap: 11px;
  letter-spacing: -0.04em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(70, 47, 77, 0.14);
  height: 42px;
  width: 42px;
}

.site-nav {
  align-items: center;
  background: rgba(249, 227, 213, 0.72);
  border-radius: 20px;
  display: flex;
  gap: 2px;
  margin-left: auto;
  overflow: visible;
  padding: 5px;
}

.site-nav a {
  border-radius: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  padding: 8px 11px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--surface);
  color: var(--ink);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.page-shell {
  padding-bottom: 110px;
  padding-top: 72px;
}

body:not(.home-page) .page-shell {
  max-width: 940px;
  min-height: 65vh;
}

.home-shell {
  max-width: 1180px;
  padding-top: 50px;
}

.eyebrow,
.meta-line {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow-dot {
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin-right: 5px;
  width: 8px;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(46px, 6.6vw, 82px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.13;
}

h3 {
  font-size: 20px;
  line-height: 1.32;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(44px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.85fr);
  min-height: 680px;
  padding: 44px 0 92px;
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 26px;
  max-width: 650px;
}

.hero h1 span {
  display: block;
}

.title-accent {
  color: var(--accent-strong);
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
  font-size: 0.88em;
  font-weight: 700;
  letter-spacing: -0.06em;
  margin-top: 5px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
}

.actions {
  gap: 12px;
  margin-top: 32px;
}

.button {
  border: 0;
  border-radius: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 730;
  gap: 18px;
  min-height: 56px;
  padding: 12px 22px;
  transition: box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.button.primary {
  background: var(--accent);
  border: 0;
  box-shadow: 0 14px 28px rgba(242, 137, 79, 0.26);
  color: var(--surface);
}

.button.quiet,
.button:not(.primary) {
  background: var(--paper-deep);
  color: var(--muted);
}

.button:hover {
  box-shadow: 0 18px 34px rgba(70, 47, 77, 0.13);
  color: var(--ink);
  transform: translateY(-2px);
}

.button.primary:hover {
  background: var(--accent-strong);
  color: white;
}

.hero-points {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 46px 0 0;
  max-width: 590px;
  padding: 0;
}

.hero-points li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.hero-points strong {
  color: var(--accent-strong);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding-top: 3px;
}

.hero-points span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.hero-scene {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 40%),
    var(--plum);
  border-radius: 64px 64px 150px 64px;
  box-shadow: var(--shadow-stage);
  height: 610px;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.scene-ring {
  border: 1px solid rgba(255, 244, 236, 0.18);
  border-radius: 50%;
  position: absolute;
}

.ring-one {
  height: 430px;
  right: -235px;
  top: -90px;
  transform: rotate(-20deg);
  width: 530px;
}

.ring-two {
  bottom: -190px;
  height: 390px;
  left: -220px;
  transform: rotate(28deg);
  width: 490px;
}

.scene-glow {
  background: var(--accent);
  border-radius: 46% 54% 67% 33% / 39% 40% 60% 61%;
  filter: none;
  height: 360px;
  opacity: 0.96;
  position: absolute;
  right: -105px;
  top: 138px;
  transform: rotate(-11deg);
  width: 360px;
  z-index: -1;
}

.phone-preview {
  background: var(--surface);
  border-radius: 38px;
  box-shadow: 0 30px 65px rgba(30, 18, 33, 0.28);
  left: 50%;
  min-height: 455px;
  padding: 28px 24px 24px;
  position: absolute;
  top: 56px;
  transform: translateX(-50%) rotate(-3.5deg);
  width: 288px;
  z-index: 3;
}

.phone-topline {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 16px;
  font-weight: 780;
  justify-content: space-between;
}

.people-count {
  background: var(--paper-deep);
  border-radius: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 9px;
}

.meal-card {
  align-items: center;
  background: var(--surface-soft);
  border-radius: 24px;
  display: flex;
  gap: 14px;
  margin-top: 23px;
  padding: 13px;
}

.meal-card strong,
.meal-card small {
  display: block;
}

.meal-card strong {
  font-size: 13px;
}

.meal-card small {
  color: var(--muted-soft);
  font-size: 9px;
  margin-top: 4px;
}

.meal-plate {
  align-items: center;
  background: var(--accent);
  border-radius: 18px;
  display: flex;
  flex: 0 0 auto;
  height: 62px;
  justify-content: center;
  position: relative;
  width: 62px;
}

.meal-plate::before,
.meal-plate::after,
.meal-plate span {
  border-radius: 50%;
  content: "";
  position: absolute;
}

.meal-plate::before {
  background: var(--surface);
  height: 42px;
  width: 42px;
}

.meal-plate::after {
  background: #f5c84a;
  height: 18px;
  transform: translate(5px, -3px);
  width: 18px;
}

.meal-plate span {
  background: #70a269;
  height: 9px;
  transform: translate(-9px, 7px) rotate(-20deg);
  width: 17px;
  z-index: 2;
}

.choice-label {
  color: var(--muted-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 20px 0 8px;
}

.choice-row {
  display: flex;
  gap: 7px;
}

.choice-row span {
  background: var(--paper-deep);
  border-radius: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  padding: 7px 9px;
}

.progress-card {
  background: #f7efe9;
  border-radius: 19px;
  color: var(--muted);
  display: grid;
  font-size: 9px;
  grid-template-columns: 1fr auto;
  margin-top: 16px;
  padding: 12px;
}

.progress-card strong {
  color: var(--ink);
  font-size: 10px;
}

.progress-card i {
  background: var(--paper-deep);
  border-radius: 4px;
  display: block;
  grid-column: 1 / -1;
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
}

.progress-card b {
  background: var(--accent);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 74%;
}

.phone-action {
  background: var(--accent);
  border-radius: 18px;
  color: white;
  display: flex;
  font-size: 10px;
  font-weight: 730;
  justify-content: space-between;
  margin-top: 16px;
  padding: 12px 14px;
}

.floating-note {
  align-items: center;
  animation: note-float 5s ease-in-out infinite;
  background: rgba(255, 250, 246, 0.96);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(31, 19, 34, 0.25);
  display: flex;
  gap: 11px;
  padding: 11px 13px;
  position: absolute;
  z-index: 5;
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  color: var(--ink);
  font-size: 10px;
}

.floating-note small {
  color: var(--muted-soft);
  font-size: 8px;
  margin-top: 1px;
}

.note-icon {
  align-items: center;
  background: var(--paper-deep);
  border-radius: 13px;
  color: var(--accent-strong);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.note-family {
  left: 18px;
  top: 152px;
}

.note-safe {
  animation-delay: -2.3s;
  bottom: 115px;
  right: 14px;
}

.note-safe .note-icon {
  background: #e7f3eb;
  color: var(--success);
}

.scene-caption {
  align-items: center;
  bottom: 35px;
  color: rgba(255, 244, 236, 0.72);
  display: flex;
  font-size: 8px;
  font-weight: 650;
  gap: 8px;
  left: 50%;
  letter-spacing: 0.05em;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.scene-caption i {
  background: rgba(255, 244, 236, 0.35);
  height: 1px;
  width: 15px;
}

@keyframes note-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  max-width: 780px;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.split-heading > p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 5px;
  max-width: 430px;
}

.band {
  border: 0;
  margin: 0 calc(50% - 50vw);
  padding: 82px max(30px, calc(50vw - 560px));
}

.journey-band {
  background: var(--surface);
  border-radius: 74px 74px 0 0;
  position: relative;
}

.journey-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey-grid article {
  background: var(--surface-soft);
  border-radius: 30px;
  min-height: 280px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.journey-grid article:nth-child(2),
.journey-grid article:nth-child(4) {
  background: var(--paper-deep);
  transform: translateY(24px);
}

.journey-grid article:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.journey-grid article:nth-child(2):hover,
.journey-grid article:nth-child(4):hover {
  transform: translateY(19px);
}

.step-number {
  color: var(--muted-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.step-mark {
  align-items: center;
  background: var(--accent);
  border-radius: 20px;
  color: white;
  display: flex;
  font-size: 25px;
  height: 62px;
  justify-content: center;
  margin: 30px 0 25px;
  transform: rotate(-6deg);
  width: 62px;
}

.step-mark::before {
  transform: rotate(6deg);
}

.mark-menu::before { content: "≋"; }
.mark-safe::before { content: "✓"; }
.mark-shop::before { content: "⌁"; }
.mark-cook::before { content: "✦"; }

.journey-grid article:nth-child(2) .step-mark,
.journey-grid article:nth-child(4) .step-mark {
  background: var(--plum);
}

.journey-grid h3 {
  margin: 0 0 10px;
}

.journey-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.feature-story,
.compliance-section {
  padding: 110px 0;
}

.feature-grid {
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
}

.feature {
  border: 0;
  border-radius: 40px;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.feature:first-child {
  grid-row: span 2;
  min-height: 678px;
}

.feature-recipe {
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.16), transparent 18rem),
    var(--accent);
  padding-top: 390px;
}

.feature-recipe::before,
.feature-recipe::after {
  border-radius: 50%;
  content: "";
  position: absolute;
}

.feature-recipe::before {
  background: var(--surface);
  box-shadow: 0 26px 50px rgba(112, 55, 29, 0.16);
  height: 245px;
  left: 50%;
  top: 82px;
  transform: translateX(-50%);
  width: 245px;
}

.feature-recipe::after {
  background:
    radial-gradient(circle at 52% 42%, #f5c84a 0 15%, transparent 16%),
    radial-gradient(ellipse at 35% 59%, #72a76e 0 11%, transparent 12%),
    radial-gradient(ellipse at 66% 63%, #e9643e 0 13%, transparent 14%),
    radial-gradient(ellipse at 53% 62%, #f0b54d 0 16%, transparent 17%),
    #f6e1bd;
  height: 195px;
  left: 50%;
  top: 107px;
  transform: translateX(-50%) rotate(-7deg);
  width: 195px;
}

.feature-safety {
  background: var(--plum);
  color: var(--surface);
}

.feature-flow {
  background: var(--paper-deep);
}

.feature h3,
.feature p,
.feature-kicker,
.feature-index {
  position: relative;
  z-index: 2;
}

.feature h3 {
  font-size: clamp(25px, 3vw, 34px);
  margin: 10px 0 12px;
}

.feature p {
  color: var(--muted);
  margin: 0;
  max-width: 460px;
}

.feature-recipe h3,
.feature-recipe p,
.feature-recipe .feature-kicker {
  color: white;
}

.feature-safety h3,
.feature-safety p,
.feature-safety .feature-kicker {
  color: var(--surface);
}

.feature-safety p {
  color: rgba(255, 244, 236, 0.72);
}

.feature-kicker {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.feature-index {
  bottom: 20px;
  color: rgba(70, 47, 77, 0.14);
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.08em;
  position: absolute;
  right: 28px;
}

.feature-recipe .feature-index,
.feature-safety .feature-index {
  color: rgba(255, 255, 255, 0.11);
}

.compliance-section {
  border-top: 1px solid var(--line);
}

.link-grid {
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-tile {
  align-items: flex-start;
  background: var(--surface);
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  min-height: 156px;
  padding: 23px;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.link-tile:hover {
  background: var(--paper-deep);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  transform: translateY(-4px);
}

.link-number {
  color: var(--accent-strong);
  font-size: 9px;
  font-weight: 750;
  padding-top: 6px;
}

.link-tile h3 {
  font-size: 18px;
  margin: 0 0 7px;
}

.link-tile p {
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.tile-arrow {
  align-items: center;
  background: var(--surface-soft);
  border-radius: 13px;
  color: var(--accent-strong);
  display: flex;
  height: 34px;
  justify-content: center;
  transition: transform 180ms ease;
  width: 34px;
}

.link-tile:hover .tile-arrow {
  transform: rotate(8deg) translate(2px, -2px);
}

.operator-band {
  align-items: end;
  background: var(--paper-deep);
  border-radius: 0 0 74px 74px;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 10px;
}

.operator-band h2 {
  font-size: clamp(26px, 3.8vw, 43px);
  margin: 0;
}

.operator-contact {
  display: grid;
  gap: 10px;
}

.operator-contact p {
  color: var(--muted-soft);
  font-size: 11px;
  margin: 0;
}

.operator-contact a {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
  text-decoration: none;
}

/* Document and utility pages */

.document-header {
  background:
    radial-gradient(circle at 90% 8%, rgba(242, 137, 79, 0.18), transparent 16rem),
    var(--paper-deep);
  border: 0;
  border-radius: 42px;
  margin-bottom: 42px;
  overflow: hidden;
  padding: 48px;
  position: relative;
}

.document-header::after {
  border: 1px solid rgba(242, 137, 79, 0.28);
  border-radius: 50%;
  content: "";
  height: 210px;
  position: absolute;
  right: -95px;
  top: -105px;
  transform: rotate(22deg);
  width: 280px;
}

.document-header h1 {
  font-size: clamp(38px, 6vw, 58px);
  margin: 0 0 18px;
  max-width: 720px;
}

.document-header .lead {
  font-size: 16px;
  margin: 0;
  max-width: 660px;
}

.document-meta {
  color: var(--muted);
  font-size: 12px;
  gap: 8px 10px;
}

.document-meta span {
  background: rgba(255, 250, 246, 0.66);
  border-radius: 14px;
  padding: 6px 10px;
}

body:not(.home-page) .page-shell > h2 {
  font-size: 28px;
  margin: 64px 0 18px;
}

body:not(.home-page) .page-shell > h3 {
  margin-top: 42px;
}

body:not(.home-page) .page-shell > p,
body:not(.home-page) .page-shell > ul,
body:not(.home-page) .page-shell > ol {
  color: var(--muted);
}

.notice {
  background: #fff0cf;
  border: 0;
  border-radius: 22px;
  color: #67430e;
  line-height: 1.75;
  margin: 26px 0 34px;
  padding: 19px 22px;
}

.notice.critical {
  background: #ffe5df;
  border: 0;
  color: #7b2c22;
}

.notice.success {
  background: #e8f4ed;
  border: 0;
  color: #175b40;
}

.doc-toc {
  background: var(--surface);
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  margin: 34px 0 46px;
  padding: 24px 28px;
}

.doc-toc strong {
  color: var(--ink);
  font-size: 13px;
}

.doc-toc a {
  color: var(--muted);
  font-size: 13px;
  text-decoration-color: rgba(115, 80, 61, 0.3);
}

table {
  border-collapse: separate;
  border-spacing: 0 8px;
  font-size: 13px;
  margin: 26px 0 40px;
}

th,
td {
  border: 0;
  min-width: 145px;
  padding: 15px 16px;
}

th {
  background: transparent;
  color: var(--muted-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  background: rgba(255, 250, 246, 0.9);
  color: var(--muted);
}

tbody tr td:first-child {
  border-radius: 18px 0 0 18px;
  color: var(--ink);
  font-weight: 650;
}

tbody tr td:last-child {
  border-radius: 0 18px 18px 0;
}

code {
  background: var(--surface-soft);
  border-radius: 7px;
  color: var(--ink);
  padding: 3px 7px;
}

.status {
  border: 0;
  border-radius: 999px;
  padding: 5px 10px;
}

.status.pending {
  background: #fff0cf;
}

.status.keep {
  background: #e8f4ed;
}

.status.remove {
  background: #ffe5df;
}

.contact-grid {
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-item {
  background: var(--surface);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(74, 45, 39, 0.06);
  padding: 26px;
}

.contact-item h3 {
  margin: 0 0 10px;
}

.contact-item p {
  color: var(--muted);
  font-size: 13px;
}

.contact-item a {
  display: inline-block;
  font-size: 12px;
  margin-top: 10px;
  overflow-wrap: anywhere;
}

.timeline li {
  border-left-color: var(--paper-deep);
}

.timeline li::before {
  border-color: var(--paper);
}

.site-footer {
  background: var(--plum);
  color: rgba(255, 244, 236, 0.82);
  margin-top: 34px;
  overflow: hidden;
  padding: 54px 0;
  position: relative;
}

.site-footer::before {
  border: 1px solid rgba(255, 244, 236, 0.11);
  border-radius: 50%;
  content: "";
  height: 360px;
  position: absolute;
  right: -160px;
  top: -230px;
  transform: rotate(-18deg);
  width: 470px;
}

.footer-inner {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr auto;
  position: relative;
  z-index: 2;
}

.site-footer strong {
  color: white;
  font-size: 19px;
}

.site-footer a {
  color: #ffd6bd;
  text-decoration: none;
}

.footer-links {
  gap: 10px 22px;
}

.filing-placeholder {
  color: rgba(255, 244, 236, 0.48);
  font-size: 11px;
  margin-top: 9px !important;
}

@media (max-width: 1040px) {
  .site-nav a {
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero {
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

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

  .journey-grid article:nth-child(2),
  .journey-grid article:nth-child(4) {
    transform: none;
  }

  .journey-grid article:nth-child(2):hover,
  .journey-grid article:nth-child(4):hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 880px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  .site-nav {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(8, minmax(54px, 1fr));
    margin-left: 0;
    overflow-x: auto;
    width: 100%;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 26px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-scene {
    justify-self: center;
    max-width: 590px;
    width: 100%;
  }

  .split-heading {
    align-items: start;
    gap: 20px;
    grid-template-columns: 1fr;
  }

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

  .feature:first-child {
    grid-row: auto;
  }

  .feature-recipe {
    min-height: 630px;
  }

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

  .operator-band {
    align-items: start;
    gap: 36px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .page-shell,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .draft-banner {
    font-size: 10px;
    line-height: 1.55;
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-inner {
    gap: 10px;
  }

  .brand img {
    height: 37px;
    width: 37px;
  }

  .site-nav {
    background: transparent;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
  }

  .site-nav a {
    background: rgba(249, 227, 213, 0.72);
    padding: 7px 5px;
  }

  .page-shell {
    padding-bottom: 72px;
    padding-top: 42px;
  }

  .home-shell {
    padding-top: 28px;
  }

  .hero {
    gap: 42px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 62px);
    margin-bottom: 20px;
  }

  .title-accent {
    letter-spacing: -0.07em;
  }

  .lead {
    font-size: 15px;
  }

  .actions .button {
    width: 100%;
  }

  .hero-points {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-points br {
    display: none;
  }

  .hero-scene {
    border-radius: 42px 42px 96px 42px;
    height: 570px;
  }

  .phone-preview {
    top: 47px;
    width: 260px;
  }

  .note-family {
    left: 5px;
    top: 178px;
  }

  .note-safe {
    bottom: 88px;
    right: 5px;
  }

  .floating-note {
    padding: 9px 10px;
  }

  .floating-note small {
    display: none;
  }

  .scene-caption {
    bottom: 24px;
  }

  .band {
    padding: 64px 18px;
  }

  .journey-band {
    border-radius: 44px 44px 0 0;
  }

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

  .journey-grid article {
    min-height: 240px;
  }

  .feature-story,
  .compliance-section {
    padding: 78px 0;
  }

  .feature {
    border-radius: 30px;
    min-height: 300px;
    padding: 27px;
  }

  .feature-recipe {
    min-height: 580px;
    padding-top: 350px;
  }

  .feature-recipe::before {
    height: 215px;
    top: 72px;
    width: 215px;
  }

  .feature-recipe::after {
    height: 170px;
    top: 95px;
    width: 170px;
  }

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

  .link-tile {
    min-height: 132px;
  }

  .operator-band {
    border-radius: 0 0 44px 44px;
  }

  .document-header {
    border-radius: 30px;
    padding: 32px 24px;
  }

  .document-header h1 {
    font-size: 38px;
  }

  .document-meta span {
    width: 100%;
  }

  body:not(.home-page) .page-shell > h2 {
    font-size: 25px;
    margin-top: 52px;
  }

  .doc-toc {
    border-radius: 24px;
    padding: 20px;
  }

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

  .footer-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   G2 homepage · Figma V3 implementation
   Desktop node 973:32 · Mobile node 988:32
   -------------------------------------------------------------------------- */

body.g2-home {
  --g2-page: #fff3eb;
  --g2-form: #fcece3;
  --g2-item: #f9e3d5;
  --g2-primary: #f2894f;
  --g2-deep: #462f4d;
  --g2-body: #73503d;
  --g2-inverse: #fff3eb;
  --g2-divider: #eac3aa;
  background: var(--g2-page);
  color: var(--g2-deep);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.g2-home::before,
body.g2-home::after {
  display: none;
}

.g2-home *,
.g2-home *::before,
.g2-home *::after {
  box-sizing: border-box;
}

.g2-home img {
  display: block;
  max-width: 100%;
}

.g2-home h1,
.g2-home h2,
.g2-home h3,
.g2-home h4,
.g2-home p {
  margin: 0;
}

.g2-home a {
  color: inherit;
  text-decoration: none;
}

.g2-home a:focus-visible {
  border-radius: 28px;
  box-shadow: 0 0 0 5px rgba(164, 133, 173, 0.28);
  outline: none;
}

#how,
#decide,
#cook {
  scroll-margin-top: 96px;
}

.g2-skip-link {
  background: var(--g2-deep);
  color: var(--g2-inverse) !important;
  left: 20px;
  padding: 12px 18px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.g2-skip-link:focus {
  top: 14px;
}

.g2-header {
  align-items: center;
  background: rgba(255, 243, 235, 0.94);
  backdrop-filter: blur(12px);
  display: flex;
  gap: 38px;
  height: 96px;
  justify-content: space-between;
  padding: 18px clamp(32px, 5.56vw, 80px);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
}

.g2-brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  white-space: nowrap;
}

.g2-brand strong,
.g2-footer-row > strong {
  font-family: Montserrat, "Noto Sans SC", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 32px;
}

.g2-brand strong span,
.g2-footer-row > strong span {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.g2-brand small {
  color: var(--g2-body);
  font-size: 14px;
  font-weight: 500;
}

.g2-nav {
  align-items: center;
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.g2-nav a {
  color: var(--g2-body);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.g2-nav a::after {
  background: var(--g2-primary);
  border-radius: 2px;
  bottom: -9px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
  width: 22px;
}

.g2-nav a:hover::after,
.g2-nav a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.g2-button {
  align-items: center;
  border: 0;
  border-radius: 28px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  line-height: 20px;
  min-height: 60px;
  padding: 20px 32px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.g2-button:hover {
  box-shadow: 0 12px 30px rgba(70, 47, 77, 0.16);
  color: inherit;
  transform: translateY(-3px);
}

.g2-button:active {
  transform: scale(0.98);
}

.g2-button-primary {
  background: var(--g2-primary);
  color: var(--g2-deep) !important;
}

.g2-button-secondary {
  background: var(--g2-deep);
  color: var(--g2-inverse) !important;
}

.g2-hero {
  align-items: center;
  background: var(--g2-page);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 610px) minmax(0, 590px);
  justify-content: space-between;
  min-height: 900px;
  overflow: hidden;
  padding: 72px clamp(32px, 5.56vw, 80px);
}

.g2-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 610px;
}

.g2-overline {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 18px;
}

.g2-hero h1 {
  color: var(--g2-deep);
  font-size: clamp(58px, 5.28vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.g2-lead,
.g2-feature-copy > p {
  color: var(--g2-body);
  font-size: 20px;
  line-height: 32px;
}

.g2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.g2-hero-visual {
  height: 756px;
  justify-self: end;
  max-width: 590px;
  position: relative;
  width: 100%;
}

.g2-hero-main-photo {
  height: 610px;
  left: 70px;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 520px;
}

.g2-hero-main-photo,
.g2-import-visual > img,
.g2-cook-intro > img,
.g2-final-card > img {
  border-radius: 48px;
}

.g2-hero-dessert {
  border-radius: 28px;
  height: 220px;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 500px;
  width: 220px;
}

.g2-float-card,
.g2-link-bar,
.g2-recipe-card {
  background: var(--g2-form);
  box-shadow: 3px 4px 8px rgba(53, 37, 19, 0.31);
}

.g2-match-card {
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 0;
  padding: 20px;
  position: absolute;
  top: 92px;
  width: 326px;
}

.g2-match-card strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.g2-match-card span,
.g2-match-card b {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.g2-match-card span {
  color: var(--g2-body);
}

.g2-vote-card {
  align-items: center;
  border-radius: 28px;
  display: flex;
  gap: 16px;
  height: 80px;
  left: 244px;
  padding: 18px;
  position: absolute;
  top: 640px;
  width: 346px;
}

.g2-vote-card strong {
  font-size: 15px;
  font-weight: 500;
}

.g2-avatars {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.g2-avatars i {
  align-items: center;
  background: var(--g2-deep);
  border-radius: 50%;
  color: var(--g2-inverse);
  display: inline-flex;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  margin-left: -8px;
  width: 44px;
}

.g2-avatars i:first-child {
  margin-left: 0;
}

.g2-story {
  background: var(--g2-deep);
  color: var(--g2-inverse);
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 260px;
  padding: 44px clamp(32px, 5.56vw, 80px);
}

.g2-story article {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.g2-story b {
  color: var(--g2-primary);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

.g2-story h2 {
  color: var(--g2-inverse);
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}

.g2-story p {
  color: var(--g2-inverse);
  font-size: 15px;
  line-height: 22px;
}

.g2-feature {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 620px) minmax(0, 520px);
  justify-content: space-between;
  min-height: 960px;
  overflow: hidden;
  padding: 96px clamp(32px, 5.56vw, 80px);
}

.g2-import {
  background: var(--g2-form);
}

.g2-import-visual {
  height: 720px;
  max-width: 620px;
  position: relative;
  width: 100%;
}

.g2-import-visual > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.g2-link-bar {
  align-items: center;
  border-radius: 28px;
  display: flex;
  gap: 14px;
  height: 78px;
  left: 38px;
  padding: 12px 16px;
  position: absolute;
  top: 40px;
  width: calc(100% - 76px);
}

.g2-link-bar i {
  align-items: center;
  background: var(--g2-deep);
  border-radius: 50%;
  color: var(--g2-inverse);
  display: flex;
  flex: 0 0 42px;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  height: 42px;
  justify-content: center;
}

.g2-link-bar span {
  flex: 1;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  min-width: 0;
}

.g2-link-bar strong {
  font-size: 13px;
  font-weight: 500;
}

.g2-recipe-card {
  align-items: center;
  border-radius: 28px;
  bottom: 46px;
  display: flex;
  gap: 18px;
  height: 174px;
  left: 70px;
  padding: 16px;
  position: absolute;
  width: calc(100% - 140px);
}

.g2-recipe-card > img {
  border-radius: 16px;
  height: 142px;
  object-fit: cover;
  width: 142px;
}

.g2-recipe-card h3 {
  font-size: 22px;
  line-height: 30px;
}

.g2-recipe-card p {
  color: var(--g2-body);
  font-size: 14px;
  margin: 8px 0;
}

.g2-recipe-card strong {
  font-size: 13px;
  font-weight: 500;
}

.g2-feature-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 690px;
}

.g2-step-tag {
  background: var(--g2-item);
  border-radius: 16px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding: 12px 20px;
}

.g2-step-tag-accent {
  background: var(--g2-primary);
}

.g2-feature-copy h2 {
  color: var(--g2-deep);
  font-size: clamp(40px, 3.62vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.23;
}

.g2-proof {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.g2-decision {
  background: var(--g2-page);
  grid-template-columns: minmax(0, 520px) minmax(0, 620px);
}

.g2-decision-board {
  background: var(--g2-form);
  border-radius: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 740px;
  max-width: 620px;
  padding: 32px;
  width: 100%;
}

.g2-board-head {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: space-between;
}

.g2-board-head h3 {
  font-size: 30px;
  line-height: 40px;
}

.g2-board-head p {
  color: var(--g2-body);
  font-size: 14px;
}

.g2-meal-options {
  display: grid;
  flex: 1;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 0;
}

.g2-meal-options article {
  background: var(--g2-item);
  border-radius: 28px;
  min-width: 0;
  overflow: hidden;
  padding: 10px 10px 14px;
}

.g2-meal-options article.is-selected {
  background: var(--g2-primary);
}

.g2-meal-options img {
  border-radius: 16px;
  height: 292px;
  object-fit: cover;
  width: 100%;
}

.g2-meal-options h4 {
  font-size: 15px;
  line-height: 22px;
  margin: 12px 0;
}

.g2-meal-options p {
  color: var(--g2-body);
  font-size: 12px;
  font-weight: 500;
}

.g2-meal-options .is-selected p {
  color: var(--g2-deep);
}

.g2-decision-confirmed {
  align-items: center;
  background: var(--g2-deep);
  border-radius: 28px;
  color: var(--g2-inverse);
  display: flex;
  flex: 0 0 72px;
  font-size: 15px;
  justify-content: space-between;
  padding: 18px 22px;
}

.g2-decision-confirmed b {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
}

.g2-cook {
  background: var(--g2-item);
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 1120px;
  padding: 60px clamp(32px, 5.56vw, 80px);
}

.g2-cook-intro {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 690px) minmax(0, 500px);
  justify-content: space-between;
  min-height: 300px;
}

.g2-cook-intro .g2-feature-copy {
  gap: 22px;
}

.g2-cook-intro .g2-feature-copy > p {
  font-size: 17px;
  line-height: 28px;
}

.g2-cook-intro > img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.g2-video-demo {
  background: var(--g2-deep);
  border-radius: 48px;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 700px) minmax(0, 458px);
  height: 660px;
  padding: 32px;
}

.g2-player {
  border-radius: 28px;
  height: 596px;
  overflow: hidden;
  position: relative;
}

.g2-player > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.g2-play {
  align-items: center;
  background: var(--g2-primary);
  border-radius: 50%;
  display: flex;
  font-size: 24px;
  height: 72px;
  justify-content: center;
  left: 50%;
  padding-left: 4px;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 72px;
}

.g2-player-meta {
  background: rgba(70, 47, 77, 0.94);
  bottom: 0;
  color: var(--g2-inverse);
  display: flex;
  flex-direction: column;
  gap: 16px;
  left: 0;
  min-height: 120px;
  padding: 20px 26px;
  position: absolute;
  right: 0;
}

.g2-player-meta strong {
  font-size: 20px;
  line-height: 28px;
}

.g2-player-meta span {
  color: var(--g2-primary);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.g2-step-nav {
  color: var(--g2-inverse);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  padding-top: 12px;
}

.g2-step-nav h3 {
  color: var(--g2-inverse);
  font-size: 28px;
  line-height: 38px;
}

.g2-step-nav > p {
  color: var(--g2-primary);
  font-size: 15px;
  line-height: 24px;
}

.g2-step-nav ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.g2-step-nav li {
  align-items: center;
  background: var(--g2-form);
  border-radius: 16px;
  color: var(--g2-deep);
  display: flex;
  gap: 20px;
  min-height: 90px;
  padding: 20px;
}

.g2-step-nav li.is-active {
  background: var(--g2-item);
}

.g2-step-nav li > b {
  align-items: center;
  background: var(--g2-deep);
  border-radius: 50%;
  color: var(--g2-inverse);
  display: flex;
  flex: 0 0 40px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  height: 40px;
  justify-content: center;
}

.g2-step-nav li.is-active > b {
  background: var(--g2-primary);
  color: var(--g2-deep);
}

.g2-step-nav li div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.g2-step-nav li strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.g2-step-nav li span {
  color: var(--g2-body);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.g2-step-nav li.is-active span {
  color: var(--g2-deep);
}

.g2-manifesto {
  align-items: center;
  background: var(--g2-deep);
  color: var(--g2-inverse);
  display: flex;
  flex-direction: column;
  height: 600px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.g2-manifesto img {
  border-radius: 28px;
  object-fit: cover;
  position: absolute;
}

.g2-manifesto-left {
  height: 210px;
  left: 4.86%;
  top: 70px;
  width: 210px;
}

.g2-manifesto-right {
  height: 220px;
  right: 4.16%;
  top: 60px;
  width: 220px;
}

.g2-manifesto-bottom {
  bottom: 60px;
  height: 155px;
  object-position: 50% 55%;
  right: 6.94%;
  width: 300px;
}

.g2-manifesto h2 {
  color: var(--g2-inverse);
  font-size: clamp(50px, 4.45vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.25;
  max-width: 840px;
  position: relative;
  z-index: 2;
}

.g2-manifesto p {
  color: var(--g2-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.g2-manifesto > span {
  background: var(--g2-primary);
  border-radius: 16px;
  color: var(--g2-deep);
  font-size: 14px;
  font-weight: 500;
  margin-top: 44px;
  padding: 12px 20px;
  position: relative;
  z-index: 2;
}

.g2-final {
  background: var(--g2-page);
  padding: 56px clamp(32px, 5.56vw, 80px);
}

.g2-final-card {
  align-items: center;
  background: var(--g2-primary);
  border-radius: 48px;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 650px) minmax(0, 400px);
  justify-content: space-between;
  min-height: 500px;
  padding: 60px;
}

.g2-final-card > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.g2-final h2 {
  color: var(--g2-deep);
  font-size: clamp(48px, 4.17vw, 60px);
  line-height: 1.23;
}

.g2-final p {
  color: var(--g2-deep);
  font-size: 20px;
  line-height: 32px;
}

.g2-final-card > img {
  height: 380px;
  object-fit: cover;
  width: 100%;
}

.g2-footer {
  background: var(--g2-page);
  color: var(--g2-body);
  padding: 0 clamp(32px, 5.56vw, 80px) 32px;
}

.g2-footer-row {
  align-items: center;
  border-top: 1px solid var(--g2-divider);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  min-height: 72px;
}

.g2-footer-row p {
  font-size: 13px;
  text-align: center;
}

.g2-footer-row nav {
  display: flex;
  gap: 20px;
}

.g2-footer-row nav a {
  color: var(--g2-deep);
  font-size: 13px;
  font-weight: 500;
}

.g2-filing {
  color: rgba(115, 80, 61, 0.65);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 8px 16px;
  justify-content: center;
  text-align: center;
}

.g2-filing a {
  color: inherit;
  text-underline-offset: 3px;
}

@media (min-width: 721px) {
  .g2-hero-copy,
  .g2-hero-visual,
  .g2-feature-copy,
  .g2-import-visual,
  .g2-decision-board,
  .g2-video-demo {
    animation: g2-rise 700ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }

  .g2-hero-visual,
  .g2-decision-board {
    animation-delay: 90ms;
  }
}

@keyframes g2-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .g2-header {
    gap: 24px;
  }

  .g2-nav {
    gap: 20px;
  }

  .g2-hero,
  .g2-feature {
    gap: 42px;
  }

  .g2-hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  }

  .g2-hero-visual {
    transform: scale(0.88);
    transform-origin: center right;
  }

  .g2-video-demo {
    gap: 28px;
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, 1fr);
  }

  .g2-step-nav li {
    gap: 12px;
    padding: 16px;
  }
}

@media (max-width: 920px) {
  .g2-brand small,
  .g2-nav {
    display: none;
  }

  .g2-header {
    height: 82px;
  }

  .g2-hero,
  .g2-feature,
  .g2-cook-intro {
    grid-template-columns: 1fr;
  }

  .g2-hero {
    min-height: auto;
  }

  .g2-hero-visual {
    justify-self: center;
    transform: none;
  }

  .g2-feature {
    min-height: auto;
  }

  .g2-feature-copy {
    max-width: 680px;
  }

  .g2-import .g2-feature-copy {
    grid-row: 2;
  }

  .g2-import-visual,
  .g2-decision-board {
    justify-self: center;
  }

  .g2-cook-intro > img {
    height: 360px;
  }

  .g2-video-demo {
    grid-template-columns: 1fr;
    height: auto;
  }

  .g2-player {
    height: 480px;
  }

  .g2-step-nav {
    padding: 12px 8px 8px;
  }

  .g2-manifesto-left {
    left: 2%;
  }

  .g2-manifesto-right {
    right: 2%;
  }

  .g2-manifesto-bottom {
    right: 3%;
  }

  .g2-final-card {
    grid-template-columns: 1fr;
  }

  .g2-final-card > img {
    height: 420px;
  }
}

@media (max-width: 720px) {
  #how,
  #decide,
  #cook {
    scroll-margin-top: 72px;
  }

  .g2-header {
    height: 72px;
    padding: 14px 20px;
  }

  .g2-brand strong {
    font-size: 24px;
  }

  .g2-header-cta {
    min-height: 44px;
    padding: 12px 16px;
  }

  .g2-hero {
    gap: 36px;
    padding: 48px 20px 52px;
  }

  .g2-hero-copy {
    gap: 20px;
  }

  .g2-overline {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .g2-hero h1 {
    font-size: clamp(40px, 11.3vw, 44px);
    line-height: 1.23;
  }

  .g2-lead,
  .g2-feature-copy > p {
    font-size: 16px;
    line-height: 26px;
  }

  .g2-actions {
    gap: 12px;
  }

  .g2-actions .g2-button {
    min-height: 60px;
    padding: 20px 24px;
  }

  .g2-hero-visual {
    height: 438px;
    max-width: 350px;
  }

  .g2-hero-main-photo {
    height: 362px;
    left: 42px;
    width: calc(100% - 42px);
  }

  .g2-hero-dessert {
    height: 140px;
    top: 294px;
    width: 140px;
  }

  .g2-match-card {
    border-radius: 20px;
    gap: 7px;
    padding: 14px;
    top: 52px;
    width: 235px;
  }

  .g2-match-card strong {
    font-size: 12px;
    line-height: 16px;
  }

  .g2-match-card span,
  .g2-match-card b {
    font-size: 9px;
    line-height: 12px;
  }

  .g2-vote-card {
    border-radius: 20px;
    gap: 10px;
    height: 58px;
    left: auto;
    padding: 13px;
    right: 0;
    top: 370px;
    width: 250px;
  }

  .g2-vote-card strong {
    font-size: 11px;
  }

  .g2-vote-card .g2-avatars i {
    font-size: 10px;
    height: 32px;
    margin-left: -6px;
    width: 32px;
  }

  .g2-story {
    gap: 28px;
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .g2-story article {
    gap: 6px;
  }

  .g2-story b {
    font-size: 12px;
  }

  .g2-story h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .g2-story p {
    font-size: 14px;
  }

  .g2-feature {
    gap: 40px;
    padding: 64px 20px;
  }

  .g2-import-visual {
    height: 430px;
    max-width: 350px;
  }

  .g2-import-visual > img,
  .g2-cook-intro > img,
  .g2-final-card > img {
    border-radius: 48px;
  }

  .g2-link-bar {
    border-radius: 18px;
    gap: 9px;
    height: 48px;
    left: 7px;
    padding: 7px 10px;
    top: 18px;
    width: calc(100% - 14px);
  }

  .g2-link-bar i {
    flex-basis: 26px;
    font-size: 10px;
    height: 26px;
  }

  .g2-link-bar span,
  .g2-link-bar strong {
    font-size: 8px;
  }

  .g2-recipe-card {
    border-radius: 18px;
    bottom: 25px;
    gap: 12px;
    height: 112px;
    left: 22px;
    padding: 10px;
    width: calc(100% - 44px);
  }

  .g2-recipe-card > img {
    border-radius: 10px;
    height: 91px;
    width: 91px;
  }

  .g2-recipe-card h3 {
    font-size: 14px;
    line-height: 19px;
  }

  .g2-recipe-card p {
    font-size: 9px;
    margin: 5px 0;
  }

  .g2-recipe-card strong {
    font-size: 8px;
  }

  .g2-feature-copy {
    gap: 22px;
  }

  .g2-step-tag {
    font-size: 12px;
    padding: 10px 16px;
  }

  .g2-feature-copy h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .g2-proof {
    font-size: 13px;
    line-height: 20px;
  }

  .g2-decision-board {
    border-radius: 27px;
    gap: 16px;
    height: 418px;
    max-width: 350px;
    padding: 18px;
  }

  .g2-board-head {
    height: 46px;
  }

  .g2-board-head h3 {
    font-size: 17px;
    line-height: 23px;
  }

  .g2-board-head p {
    font-size: 8px;
  }

  .g2-board-head .g2-avatars i {
    font-size: 8px;
    height: 25px;
    margin-left: -5px;
    width: 25px;
  }

  .g2-meal-options {
    gap: 8px;
  }

  .g2-meal-options article {
    border-radius: 16px;
    padding: 6px 6px 8px;
  }

  .g2-meal-options img {
    border-radius: 9px;
    height: 165px;
  }

  .g2-meal-options h4 {
    font-size: 9px;
    line-height: 12px;
    margin: 7px 0;
  }

  .g2-meal-options p {
    font-size: 7px;
  }

  .g2-decision-confirmed {
    border-radius: 16px;
    flex-basis: 41px;
    font-size: 9px;
    padding: 10px 12px;
  }

  .g2-decision-confirmed b {
    font-size: 7px;
  }

  .g2-cook {
    gap: 32px;
    min-height: auto;
    padding: 64px 20px;
  }

  .g2-cook-intro {
    gap: 28px;
  }

  .g2-cook-intro .g2-feature-copy {
    gap: 20px;
  }

  .g2-cook-intro .g2-feature-copy h2 {
    font-size: 36px;
  }

  .g2-cook-intro .g2-feature-copy > p {
    font-size: 16px;
    line-height: 26px;
  }

  .g2-cook-intro > img {
    height: 210px;
  }

  .g2-video-demo {
    border-radius: 48px;
    display: block;
    height: auto;
    padding: 0 0 20px;
  }

  .g2-player {
    border-radius: 28px;
    height: 300px;
  }

  .g2-player-meta {
    gap: 8px;
    min-height: 96px;
    padding: 16px;
  }

  .g2-player-meta strong {
    font-size: 16px;
    line-height: 24px;
  }

  .g2-player-meta span {
    font-size: 11px;
  }

  .g2-play {
    top: 42%;
  }

  .g2-step-nav {
    gap: 12px;
    padding: 32px 16px 0;
  }

  .g2-step-nav h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .g2-step-nav > p {
    font-size: 15px;
    line-height: 24px;
  }

  .g2-step-nav ol {
    gap: 12px;
  }

  .g2-step-nav li {
    gap: 14px;
    min-height: 82px;
    padding: 16px;
  }

  .g2-step-nav li strong {
    font-size: 14px;
  }

  .g2-step-nav li span {
    font-size: 10px;
  }

  .g2-manifesto {
    height: 600px;
  }

  .g2-manifesto-left {
    height: 116px;
    left: 20px;
    top: 34px;
    width: 116px;
  }

  .g2-manifesto-right {
    height: 126px;
    right: 20px;
    top: 46px;
    width: 126px;
  }

  .g2-manifesto-bottom {
    bottom: 22px;
    height: 92px;
    right: 22px;
    width: 170px;
  }

  .g2-manifesto h2 {
    font-size: 42px;
    line-height: 52px;
    max-width: 342px;
  }

  .g2-manifesto p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 28px;
    max-width: 330px;
  }

  .g2-manifesto > span {
    margin-top: 32px;
  }

  .g2-final {
    padding: 48px 20px 28px;
  }

  .g2-final-card {
    border-radius: 48px;
    gap: 32px;
    min-height: auto;
    padding: 32px;
  }

  .g2-final-card > div {
    gap: 20px;
  }

  .g2-final h2 {
    font-size: 38px;
    line-height: 48px;
  }

  .g2-final p {
    font-size: 15px;
    line-height: 24px;
  }

  .g2-final-card > img {
    height: 240px;
  }

  .g2-footer {
    padding: 0 20px 32px;
  }

  .g2-footer-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 0 18px;
    text-align: center;
  }

  .g2-footer-row > strong {
    font-size: 20px;
  }

  .g2-footer-row nav {
    gap: 16px;
  }
}

@media (max-width: 390px) {
  .g2-actions .g2-button {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .g2-meal-options img {
    height: 46vw;
    max-height: 165px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .g2-home *,
  .g2-home *::before,
  .g2-home *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   G2 inner pages · shared editorial and release system
   -------------------------------------------------------------------------- */

body.g2-inner {
  --g2-page: #fff3eb;
  --g2-form: #fcece3;
  --g2-item: #f9e3d5;
  --g2-primary: #f2894f;
  --g2-deep: #462f4d;
  --g2-body: #73503d;
  --g2-inverse: #fff3eb;
  --g2-divider: #eac3aa;
  background: var(--g2-page);
  color: var(--g2-deep);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.g2-inner::before,
body.g2-inner::after {
  display: none;
}

.g2-inner *,
.g2-inner *::before,
.g2-inner *::after {
  box-sizing: border-box;
}

.g2-inner h1,
.g2-inner h2,
.g2-inner h3,
.g2-inner p {
  margin-top: 0;
}

.g2-inner a {
  color: inherit;
}

.g2-inner a:focus-visible {
  border-radius: 18px;
  box-shadow: 0 0 0 5px rgba(164, 133, 173, 0.28);
  outline: none;
}

.g2-inner .draft-banner {
  background: var(--g2-deep);
  color: rgba(255, 243, 235, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  min-height: 34px;
  padding: 8px 24px;
}

.g2-inner .g2-header {
  border-bottom: 1px solid rgba(234, 195, 170, 0.52);
}

.g2-inner .g2-brand {
  color: var(--g2-deep);
  text-decoration: none;
}

.g2-inner .g2-brand,
.g2-inner .g2-nav a,
.g2-inner .g2-button {
  text-decoration: none;
}

.g2-inner .g2-brand > span,
.g2-inner .g2-brand > strong {
  font-family: Montserrat, "Noto Sans SC", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.g2-inner .g2-nav a[aria-current="page"] {
  color: var(--g2-deep);
  font-weight: 700;
}

.g2-inner .g2-nav a[aria-current="page"]::after {
  transform: translateX(-50%) scaleX(1);
}

body.g2-inner .page-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 72px 32px 120px;
  width: 100%;
}

body.g2-inner.g2-data-page .page-shell {
  max-width: 1320px;
}

.g2-inner .eyebrow {
  color: var(--g2-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.g2-inner .document-header {
  background:
    linear-gradient(130deg, rgba(255, 243, 235, 0.02), transparent 46%),
    var(--g2-deep);
  border: 0;
  border-radius: 48px;
  color: var(--g2-inverse);
  isolation: isolate;
  margin: 0 0 52px;
  min-height: 390px;
  overflow: hidden;
  padding: 64px;
  position: relative;
}

.g2-inner .document-header::before {
  bottom: 28px;
  color: rgba(255, 243, 235, 0.12);
  content: attr(data-document);
  font-family: Montserrat, "Noto Sans SC", sans-serif;
  font-size: clamp(46px, 7vw, 90px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  position: absolute;
  right: 36px;
  white-space: nowrap;
  z-index: -1;
}

.g2-inner .document-header::after {
  background: var(--g2-primary);
  border: 0;
  border-radius: 45% 55% 63% 37% / 42% 38% 62% 58%;
  content: "";
  height: 260px;
  opacity: 0.96;
  position: absolute;
  right: -90px;
  top: -120px;
  transform: rotate(-16deg);
  width: 260px;
  z-index: -2;
}

.g2-inner .document-header h1 {
  color: var(--g2-inverse);
  font-size: clamp(50px, 6.7vw, 76px);
  letter-spacing: -0.055em;
  line-height: 1.06;
  margin: 0 0 22px;
  max-width: 720px;
}

.g2-inner .document-summary {
  color: rgba(255, 243, 235, 0.72);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 590px;
}

.g2-inner .document-meta {
  color: var(--g2-inverse);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 8px;
  margin-top: 26px;
}

.g2-inner .document-meta span {
  background: rgba(255, 243, 235, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
}

.g2-document-page .page-shell > p,
.g2-document-page .page-shell > ul,
.g2-document-page .page-shell > ol {
  color: var(--g2-body);
  font-size: 16px;
  line-height: 1.95;
  max-width: 880px;
}

.g2-document-page .page-shell > h2 {
  color: var(--g2-deep);
  font-size: clamp(27px, 3vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin: 76px 0 18px;
  max-width: 880px;
}

.g2-document-page .page-shell > h2::before {
  background: var(--g2-primary);
  border-radius: 4px;
  content: "";
  display: block;
  height: 6px;
  margin-bottom: 16px;
  width: 34px;
}

.g2-document-page .page-shell > ul,
.g2-document-page .page-shell > ol:not(.timeline) {
  background: var(--g2-form);
  border-radius: 28px;
  list-style-position: inside;
  padding: 24px 28px;
}

.g2-document-page .page-shell > ul li + li,
.g2-document-page .page-shell > ol:not(.timeline) li + li {
  margin-top: 10px;
}

.g2-inner .notice {
  background: #ffedc7;
  border: 0;
  border-radius: 26px;
  color: #67430e;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 44px;
  max-width: none;
  padding: 22px 26px;
}

.g2-inner .notice.critical {
  background: #ffe2dc;
  color: #7b2c22;
}

.g2-inner .notice.success {
  background: #e4f3ea;
  color: #175b40;
}

/* Permissions page: translate the Android audit into user-facing moments. */
.g2-permissions-page .notice {
  margin-bottom: 18px;
}

.g2-permission-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 96px;
}

.g2-permission-card {
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.g2-permission-card::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 210px;
  opacity: 0.1;
  position: absolute;
  right: -90px;
  top: -92px;
  width: 210px;
}

.g2-permission-card-network {
  background: var(--g2-deep);
  color: var(--g2-inverse);
}

.g2-permission-card-location {
  background: var(--g2-item);
  color: var(--g2-deep);
}

.g2-permission-card-notification {
  background: var(--g2-primary);
  color: var(--g2-deep);
}

.g2-permission-card-auth {
  background: var(--g2-form);
  color: var(--g2-deep);
}

.g2-permission-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}

.g2-permission-number {
  font-family: Montserrat, "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.g2-permission-type {
  background: rgba(70, 47, 77, 0.09);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 11px;
}

.g2-permission-card-network .g2-permission-type {
  background: rgba(255, 243, 235, 0.12);
}

.g2-permission-type.is-required {
  color: var(--g2-primary);
}

.g2-permission-card h2 {
  color: inherit;
  font-size: clamp(30px, 3.2vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 16px;
}

.g2-permission-intro {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  max-width: 460px;
  opacity: 0.82;
}

.g2-permission-facts {
  border-top: 1px solid currentColor;
  margin: auto 0 18px;
  padding-top: 20px;
}

.g2-permission-facts > div {
  display: grid;
  gap: 16px;
  grid-template-columns: 72px 1fr;
}

.g2-permission-facts > div + div {
  margin-top: 11px;
}

.g2-permission-facts dt,
.g2-permission-facts dd {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.g2-permission-facts dt {
  font-weight: 800;
}

.g2-permission-facts dd {
  opacity: 0.78;
}

.g2-permission-card small {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.035em;
  opacity: 0.48;
}

.g2-permission-promise {
  background: var(--g2-deep);
  border-radius: 46px;
  color: var(--g2-inverse);
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: 54px;
}

.g2-permission-promise .eyebrow {
  margin-bottom: 22px;
}

.g2-permission-promise h2 {
  color: var(--g2-inverse);
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  margin: 0;
}

.g2-promise-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.g2-promise-list li {
  align-items: start;
  border-top: 1px solid rgba(255, 243, 235, 0.16);
  display: grid;
  gap: 16px;
  grid-template-columns: 34px 1fr;
  padding: 20px 0;
}

.g2-promise-list li:last-child {
  border-bottom: 1px solid rgba(255, 243, 235, 0.16);
}

.g2-promise-list b {
  color: var(--g2-primary);
  font-family: Montserrat, "Noto Sans SC", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.g2-promise-list div {
  display: grid;
  gap: 6px;
}

.g2-promise-list strong {
  color: var(--g2-inverse);
  font-size: 15px;
}

.g2-promise-list span {
  color: rgba(255, 243, 235, 0.64);
  font-size: 12px;
  line-height: 1.75;
}

.g2-document-page .page-shell > .g2-permission-more {
  font-size: 13px;
  margin: 24px 0 0;
}

.g2-permission-more a {
  color: var(--g2-deep);
  font-weight: 800;
  text-decoration-color: var(--g2-primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.g2-inner .doc-toc {
  background: var(--g2-deep);
  border: 0;
  border-radius: 32px;
  box-shadow: none;
  color: var(--g2-inverse);
  margin: 42px 0 64px;
  max-width: 880px;
  padding: 28px 30px;
}

.g2-inner .doc-toc strong {
  color: var(--g2-inverse);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.g2-inner .doc-toc ul {
  column-count: 3;
  column-gap: 28px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.g2-inner .doc-toc li {
  break-inside: avoid;
  margin: 8px 0;
}

.g2-inner .doc-toc a {
  color: rgba(255, 243, 235, 0.72);
  font-size: 12px;
  text-decoration-color: rgba(242, 137, 79, 0.6);
}

.g2-inner table {
  border-collapse: separate;
  border-spacing: 0 10px;
  display: block;
  font-size: 13px;
  margin: 30px 0 48px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-color: var(--g2-primary) var(--g2-item);
  width: 100%;
}

.g2-inner table thead,
.g2-inner table tbody {
  width: 100%;
}

.g2-inner th,
.g2-inner td {
  border: 0;
  min-width: 150px;
  padding: 18px 19px;
  text-align: left;
  vertical-align: top;
}

.g2-inner th {
  background: transparent;
  color: rgba(115, 80, 61, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g2-inner td {
  background: rgba(252, 236, 227, 0.78);
  color: var(--g2-body);
  line-height: 1.75;
}

.g2-inner tbody tr td:first-child {
  border-radius: 22px 0 0 22px;
  color: var(--g2-deep);
  font-weight: 700;
}

.g2-inner tbody tr td:last-child {
  border-radius: 0 22px 22px 0;
}

.g2-inner code {
  background: var(--g2-item);
  border-radius: 8px;
  color: var(--g2-deep);
  font-size: 0.88em;
  padding: 4px 7px;
}

.g2-inner .status {
  border: 0;
  border-radius: 999px;
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  padding: 7px 11px;
  white-space: nowrap;
}

.g2-inner .status.pending {
  background: #ffedc7;
  color: #8b5615;
}

.g2-inner .status.keep {
  background: #e4f3ea;
  color: #175b40;
}

.g2-inner .status.remove {
  background: #ffe2dc;
  color: #8f3428;
}

.g2-inner .timeline {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 26px 0 54px;
  max-width: none;
  padding: 0;
}

.g2-inner .timeline li {
  background: var(--g2-form);
  border: 0;
  border-radius: 26px;
  color: var(--g2-body);
  counter-increment: deletion-step;
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
  min-height: 220px;
  padding: 64px 20px 22px;
  position: relative;
}

.g2-inner .timeline {
  counter-reset: deletion-step;
}

.g2-inner .timeline li::before {
  align-items: center;
  background: var(--g2-primary);
  border: 0;
  border-radius: 16px;
  color: var(--g2-inverse);
  content: counter(deletion-step, decimal-leading-zero);
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  left: 20px;
  top: 20px;
  width: 42px;
}

.g2-inner .timeline li strong {
  color: var(--g2-deep);
  display: inline-block;
  font-size: 15px;
  margin-bottom: 6px;
}

.g2-inner .contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 64px;
}

.g2-inner .contact-item {
  background: var(--g2-form);
  border: 0;
  border-radius: 32px;
  box-shadow: none;
  min-height: 230px;
  padding: 28px;
  position: relative;
}

.g2-inner .contact-item::before {
  align-items: center;
  background: var(--g2-primary);
  border-radius: 18px;
  color: var(--g2-inverse);
  content: "↗";
  display: flex;
  font-size: 18px;
  height: 46px;
  justify-content: center;
  margin-bottom: 32px;
  width: 46px;
}

.g2-inner .contact-item:nth-child(2)::before {
  background: var(--g2-deep);
}

.g2-inner .contact-item:nth-child(3)::before {
  background: #a485ad;
}

.g2-inner .contact-item h3 {
  color: var(--g2-deep);
  font-size: 22px;
  margin: 0 0 10px;
}

.g2-inner .contact-item p {
  color: var(--g2-body);
  font-size: 13px;
  margin: 5px 0 0;
}

.g2-inner .contact-item a {
  color: var(--g2-deep);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: var(--g2-primary);
}

.g2-contact-details {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 16px;
}

.g2-contact-details section {
  background: var(--g2-deep);
  border-radius: 36px;
  color: rgba(255, 243, 235, 0.76);
  min-height: 300px;
  padding: 38px;
}

.g2-contact-details section:last-child {
  background: var(--g2-primary);
  color: var(--g2-deep);
}

.g2-contact-details h2 {
  color: var(--g2-inverse);
  font-size: 32px;
  margin: 0 0 24px;
}

.g2-contact-details section:last-child h2,
.g2-contact-details section:last-child .eyebrow {
  color: var(--g2-deep);
}

.g2-contact-details p {
  line-height: 1.85;
}

.g2-contact-details code {
  background: rgba(255, 243, 235, 0.14);
  color: inherit;
}

/* Download page */

body.g2-inner.g2-download-page .page-shell {
  max-width: 1280px;
}

.g2-download-hero {
  align-items: center;
  background: var(--g2-deep);
  border-radius: 52px;
  display: grid;
  gap: clamp(52px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.82fr);
  min-height: 650px;
  overflow: hidden;
  padding: 58px 64px;
  position: relative;
}

.g2-download-hero::before {
  border: 1px solid rgba(255, 243, 235, 0.12);
  border-radius: 50%;
  content: "";
  height: 460px;
  left: -270px;
  position: absolute;
  top: -240px;
  transform: rotate(18deg);
  width: 560px;
}

.g2-download-copy {
  position: relative;
  z-index: 2;
}

.g2-download-copy h1 {
  color: var(--g2-inverse);
  font-size: clamp(58px, 7vw, 92px);
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin: 0 0 26px;
}

.g2-download-copy .lead {
  color: rgba(255, 243, 235, 0.68);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}

.g2-release-state {
  align-items: center;
  background: rgba(255, 243, 235, 0.1);
  border-radius: 24px;
  display: inline-flex;
  gap: 14px;
  margin-top: 32px;
  padding: 14px 18px;
}

.g2-release-state > span {
  background: var(--g2-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(242, 137, 79, 0.14);
  height: 10px;
  width: 10px;
}

.g2-release-state strong,
.g2-release-state small {
  display: block;
}

.g2-release-state strong {
  color: var(--g2-inverse);
  font-size: 13px;
}

.g2-release-state small {
  color: rgba(255, 243, 235, 0.55);
  font-size: 10px;
  margin-top: 2px;
}

.g2-download-visual {
  height: 520px;
  position: relative;
}

.g2-download-visual > img {
  border-radius: 44px 44px 120px 44px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.g2-download-visual::after {
  background: linear-gradient(180deg, rgba(70, 47, 77, 0.02), rgba(70, 47, 77, 0.62));
  border-radius: 44px 44px 120px 44px;
  content: "";
  inset: 0;
  position: absolute;
}

.g2-app-badge,
.g2-release-note {
  background: rgba(255, 243, 235, 0.95);
  box-shadow: 0 22px 50px rgba(28, 17, 31, 0.24);
  position: absolute;
  z-index: 2;
}

.g2-app-badge {
  align-items: center;
  border-radius: 24px;
  display: flex;
  gap: 13px;
  left: -34px;
  padding: 13px 16px;
  top: 42px;
}

.g2-app-badge img {
  border-radius: 13px;
  height: 48px;
  width: 48px;
}

.g2-app-badge strong,
.g2-app-badge span {
  display: block;
}

.g2-app-badge strong {
  color: var(--g2-deep);
  font-size: 13px;
}

.g2-app-badge span {
  color: var(--g2-body);
  font-size: 10px;
  margin-top: 3px;
}

.g2-release-note {
  align-items: center;
  border-radius: 24px;
  bottom: 36px;
  display: flex;
  gap: 14px;
  padding: 15px 18px;
  right: -26px;
}

.g2-release-note b {
  align-items: center;
  background: var(--g2-primary);
  border-radius: 15px;
  color: var(--g2-inverse);
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.g2-release-note span {
  color: var(--g2-body);
  font-size: 10px;
  line-height: 1.5;
}

.g2-release-note strong {
  color: var(--g2-deep);
  font-size: 12px;
}

.g2-store-section {
  padding: 112px 0;
}

.g2-section-heading {
  display: grid;
  gap: 24px 58px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  margin-bottom: 48px;
}

.g2-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.g2-section-heading h2 {
  color: var(--g2-deep);
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  margin: 0;
}

.g2-section-heading > p {
  align-self: end;
  color: var(--g2-body);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.g2-store-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.g2-store-grid article {
  background: var(--g2-form);
  border-radius: 32px;
  min-height: 260px;
  padding: 26px;
  position: relative;
  transition: transform 180ms ease;
}

.g2-store-grid article:nth-child(2n) {
  background: var(--g2-item);
  transform: translateY(20px);
}

.g2-store-grid article:hover {
  transform: translateY(-4px);
}

.g2-store-grid article:nth-child(2n):hover {
  transform: translateY(16px);
}

.g2-store-grid article > span {
  color: var(--g2-primary);
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.g2-store-grid h3 {
  color: var(--g2-deep);
  font-size: 22px;
  line-height: 1.25;
  margin: 54px 0 10px;
}

.g2-store-grid p {
  color: var(--g2-body);
  font-size: 12px;
}

.g2-store-grid strong {
  bottom: 24px;
  color: var(--g2-primary);
  font-size: 12px;
  position: absolute;
}

.g2-safety-card {
  align-items: end;
  background: var(--g2-primary);
  border-radius: 48px;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 58px;
}

.g2-safety-card .eyebrow {
  color: var(--g2-deep);
}

.g2-safety-card h2 {
  color: var(--g2-deep);
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.12;
  margin: 0;
}

.g2-safety-card > p {
  color: rgba(70, 47, 77, 0.78);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* Shared footer */

.g2-inner .g2-footer {
  background: var(--g2-deep);
  color: rgba(255, 243, 235, 0.72);
  padding: 54px clamp(32px, 5.56vw, 80px) 30px;
}

.g2-inner .g2-footer-row {
  align-items: start;
  border-top: 0;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  min-height: 92px;
}

.g2-inner .g2-footer-row > div strong {
  color: var(--g2-inverse);
  display: block;
  font-family: Montserrat, "Noto Sans SC", sans-serif;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.g2-inner .g2-footer-row > div p {
  color: rgba(255, 243, 235, 0.52);
  font-size: 11px;
  margin: 8px 0 0;
  text-align: left;
}

.g2-inner .g2-footer-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  justify-content: flex-end;
}

.g2-inner .g2-footer-row nav a {
  color: rgba(255, 243, 235, 0.72);
  font-size: 12px;
  text-decoration: none;
}

.g2-inner .g2-footer-row nav a:hover,
.g2-inner .g2-footer-row nav a[aria-current="page"] {
  color: var(--g2-primary);
}

.g2-inner .g2-filing {
  border-top: 1px solid rgba(255, 243, 235, 0.12);
  color: rgba(255, 243, 235, 0.4);
  margin: 26px 0 0;
  padding-top: 20px;
  text-align: center;
}

body.g2-inner.g2-error-page .page-shell {
  min-height: calc(100vh - 96px);
  padding-bottom: 52px;
}

.g2-error-card {
  align-items: stretch;
  background: var(--g2-deep);
  border-radius: 52px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 0.72fr;
  min-height: 620px;
  overflow: hidden;
  padding: 58px;
}

.g2-error-card > div {
  align-self: center;
}

.g2-error-card h1 {
  color: var(--g2-inverse);
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: -0.06em;
  line-height: 1.08;
  margin: 0 0 26px;
}

.g2-error-card p:not(.eyebrow) {
  color: rgba(255, 243, 235, 0.68);
  line-height: 1.8;
  max-width: 480px;
}

.g2-error-card .g2-button {
  margin-top: 22px;
  text-decoration: none;
}

.g2-error-card > img {
  border-radius: 36px 36px 110px 36px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 980px) {
  .g2-inner .page-shell {
    padding-top: 52px;
  }

  .g2-download-hero {
    gap: 44px;
    grid-template-columns: 1fr 0.85fr;
    padding: 48px;
  }

  .g2-download-visual {
    height: 460px;
  }

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

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

  .g2-permission-promise {
    gap: 42px;
    padding: 44px;
  }
}

@media (max-width: 720px) {
  .g2-inner .draft-banner {
    font-size: 9px;
    letter-spacing: 0.03em;
    min-height: 30px;
    padding: 7px 16px;
  }

  .g2-inner .g2-brand {
    gap: 4px;
  }

  .g2-inner .g2-brand > span,
  .g2-inner .g2-brand > strong {
    font-size: 22px;
  }

  .g2-inner .page-shell {
    padding: 28px 20px 76px;
  }

  .g2-inner .document-header {
    border-radius: 34px;
    min-height: 410px;
    padding: 38px 28px;
  }

  .g2-inner .document-header::before {
    bottom: 30px;
    font-size: 42px;
    right: 24px;
  }

  .g2-inner .document-header::after {
    height: 190px;
    right: -78px;
    top: -84px;
    width: 190px;
  }

  .g2-inner .document-header h1 {
    font-size: clamp(43px, 12vw, 50px);
    line-height: 1.12;
  }

  .g2-inner .document-summary {
    font-size: 14px;
    line-height: 1.75;
  }

  .g2-inner .document-meta {
    gap: 6px;
  }

  .g2-inner .document-meta span {
    font-size: 10px;
    padding: 7px 9px;
  }

  .g2-permissions-page .document-meta span {
    width: auto;
  }

  .g2-document-page .page-shell > p,
  .g2-document-page .page-shell > ul,
  .g2-document-page .page-shell > ol {
    font-size: 14px;
    line-height: 1.9;
  }

  .g2-document-page .page-shell > h2 {
    font-size: 26px;
    margin-top: 58px;
  }

  .g2-inner .notice {
    border-radius: 22px;
    font-size: 13px;
    padding: 20px;
  }

  .g2-permission-grid {
    grid-template-columns: 1fr;
    margin-bottom: 68px;
  }

  .g2-permission-card {
    border-radius: 30px;
    min-height: 380px;
    padding: 27px;
  }

  .g2-permission-card-top {
    margin-bottom: 32px;
  }

  .g2-permission-card h2 {
    font-size: 34px;
  }

  .g2-permission-promise {
    border-radius: 34px;
    gap: 36px;
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .g2-permission-promise h2 {
    font-size: 38px;
  }

  .g2-inner .doc-toc {
    border-radius: 26px;
    padding: 24px;
  }

  .g2-inner .doc-toc ul {
    column-count: 2;
  }

  .g2-inner th,
  .g2-inner td {
    min-width: 170px;
    padding: 15px;
  }

  .g2-inner .timeline,
  .g2-inner .contact-grid,
  .g2-contact-details,
  .g2-section-heading,
  .g2-safety-card,
  .g2-download-hero,
  .g2-error-card {
    grid-template-columns: 1fr;
  }

  .g2-inner .timeline li {
    min-height: 0;
    padding-bottom: 24px;
  }

  .g2-inner .contact-item {
    min-height: 210px;
  }

  .g2-contact-details section {
    min-height: 260px;
    padding: 30px;
  }

  .g2-download-hero {
    border-radius: 36px;
    gap: 40px;
    min-height: 0;
    padding: 44px 28px 28px;
  }

  .g2-download-copy h1 {
    font-size: 48px;
    line-height: 1.12;
  }

  .g2-download-copy .lead {
    font-size: 14px;
  }

  .g2-release-state {
    align-items: flex-start;
    border-radius: 20px;
    width: 100%;
  }

  .g2-release-state > span {
    margin-top: 6px;
  }

  .g2-download-visual {
    height: 420px;
  }

  .g2-download-visual > img,
  .g2-download-visual::after {
    border-radius: 30px 30px 90px 30px;
  }

  .g2-app-badge {
    left: 12px;
    top: 18px;
  }

  .g2-release-note {
    bottom: 20px;
    right: 10px;
  }

  .g2-store-section {
    padding: 78px 0;
  }

  .g2-section-heading {
    gap: 12px;
    margin-bottom: 34px;
  }

  .g2-section-heading .eyebrow {
    grid-column: auto;
  }

  .g2-section-heading h2 {
    font-size: 43px;
  }

  .g2-store-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .g2-store-grid article {
    border-radius: 26px;
    min-height: 230px;
    padding: 20px;
  }

  .g2-store-grid article:nth-child(2n) {
    transform: translateY(12px);
  }

  .g2-store-grid h3 {
    font-size: 18px;
    margin-top: 42px;
  }

  .g2-safety-card {
    border-radius: 34px;
    gap: 28px;
    padding: 36px 28px;
  }

  .g2-safety-card h2 {
    font-size: 38px;
  }

  .g2-error-card {
    border-radius: 36px;
    min-height: 0;
    padding: 38px 28px 28px;
  }

  .g2-error-card h1 {
    font-size: 50px;
  }

  .g2-error-card > img {
    border-radius: 28px 28px 80px 28px;
    height: 340px;
  }

  .g2-inner .g2-footer {
    padding: 44px 20px 26px;
  }

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

  .g2-inner .g2-footer-row nav {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .g2-inner .g2-header-cta {
    font-size: 13px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .g2-inner .doc-toc ul {
    column-count: 1;
  }

  .g2-store-grid {
    grid-template-columns: 1fr;
  }

  .g2-store-grid article:nth-child(2n) {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .g2-inner *,
  .g2-inner *::before,
  .g2-inner *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
