:root {
  color-scheme: light;
  --ink: #111411;
  --ink-soft: #38413d;
  --muted: #69736f;
  --paper: #f3efe6;
  --paper-bright: #fbf8f0;
  --field: #e8e0d1;
  --line: rgba(28, 31, 27, 0.14);
  --deep: #101611;
  --deep-2: #17221c;
  --teal: #2d7d71;
  --teal-soft: #8fd8ca;
  --brass: #c7a969;
  --clay: #b96e51;
  --white: #fffdf8;
  --max: 1160px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.home-page {
  background:
    radial-gradient(circle at 18% 16%, rgba(91, 141, 239, 0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(122, 211, 191, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 54%, #eef6ff 100%);
  color: #15191f;
}

.home-hero {
  min-height: 100vh;
}

.home-shell {
  width: min(1080px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-center {
  width: 100%;
  max-width: 980px;
  padding: 96px 0;
  text-align: center;
}

.home-brand-text {
  margin: 0 0 28px;
  color: #697586;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  font-weight: 650;
  letter-spacing: 0.02em;
}

.home-center h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 22, 17, 0.86);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.topbar.light {
  border-bottom-color: var(--line);
  background: rgba(251, 248, 240, 0.9);
  color: var(--ink);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--brass));
  color: var(--white);
  font-size: 0.92rem;
}

.topbar.light .brand-mark {
  border-color: rgba(17, 20, 17, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.93rem;
}

.topbar.light .nav-links {
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
}

.topbar.light .nav-links a:hover {
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(16, 22, 17, 0.94) 0%, rgba(16, 22, 17, 0.9) 42%, rgba(18, 37, 31, 0.72) 100%),
    linear-gradient(90deg, var(--deep), var(--deep-2));
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.86fr);
  gap: 72px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 86px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-soft);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(4rem, 9vw, 9.5rem);
  line-height: 0.86;
}

.hero-copy {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero-panel {
  position: relative;
  min-height: 540px;
}

.editorial-card {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(460px, 100%);
  min-height: 520px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.product-face {
  height: 330px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.14), rgba(255, 253, 248, 0.04)),
    linear-gradient(135deg, rgba(45, 125, 113, 0.7), rgba(199, 169, 105, 0.56));
}

.product-face img {
  width: 148px;
  height: 148px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.card-caption {
  display: grid;
  gap: 18px;
  padding-top: 24px;
}

.caption-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.caption-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.caption-grid span {
  display: block;
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.caption-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 1.02rem;
}

.index-strip {
  position: absolute;
  right: 34px;
  bottom: 0;
  left: -74px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(18px);
}

.index-strip div {
  min-height: 108px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.index-strip div:last-child {
  border-right: 0;
}

.index-strip span {
  color: var(--teal-soft);
  font-size: 0.78rem;
  font-weight: 760;
}

.index-strip p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.94rem;
}

.section {
  padding: 112px 0;
}

.section.alt {
  background: var(--paper-bright);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.46fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}

.section h2,
.doc h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.section h2 {
  max-width: 800px;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  line-height: 0.96;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-story,
.product-aside,
.principle,
.legal-card {
  background: var(--paper-bright);
}

.product-story {
  min-height: 540px;
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-kicker {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-story h3 {
  max-width: 620px;
  margin: 22px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.product-story p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-aside {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  align-content: center;
  gap: 26px;
}

.device-tile {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 20, 17, 0.92), rgba(38, 58, 49, 0.88)),
    var(--deep);
}

.device-tile img {
  width: min(210px, 68%);
  border-radius: 42px;
}

.commitments {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.commitments div {
  padding: 20px 0;
  background: var(--paper-bright);
}

.commitments strong {
  display: block;
  margin-bottom: 6px;
}

.commitments p {
  margin: 0;
  color: var(--muted);
}

.principles-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.principle,
.legal-card {
  min-height: 250px;
  padding: 28px;
}

.principle span,
.legal-card span {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principle h3,
.legal-card h3 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.principle p,
.legal-card p {
  margin: 0;
  color: var(--muted);
}

.legal-card a {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 760;
  color: var(--teal);
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.legal-hero {
  padding: 78px 0 46px;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}

.page-title {
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: 64px;
  padding: 64px 0 104px;
}

.doc-meta {
  position: sticky;
  top: 104px;
  align-self: start;
  color: var(--muted);
  font-size: 0.94rem;
}

.doc-meta p {
  margin: 0 0 10px;
}

.doc {
  max-width: 760px;
}

.doc h1 {
  display: none;
}

.doc h2 {
  margin: 42px 0 12px;
  font-size: 1.35rem;
  line-height: 1.24;
}

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

.doc p {
  margin: 0 0 16px;
}

.doc ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.notice {
  margin: 0 0 30px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e7efe9;
}

.notice p {
  margin: 0;
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero-grid,
  .section-head,
  .product-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
    min-height: auto;
  }

  .hero-panel {
    min-height: 500px;
  }

  .index-strip {
    left: 0;
    right: 0;
  }

  .principles-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .doc-meta {
    position: static;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 19vw, 5.6rem);
  }

  .hero-grid {
    padding: 56px 0 72px;
  }

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

  .editorial-card {
    position: relative;
    min-height: auto;
  }

  .product-face {
    height: 260px;
  }

  .index-strip {
    position: relative;
    margin-top: 14px;
    grid-template-columns: 1fr;
  }

  .index-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .index-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .footer-grid {
    flex-direction: column;
  }
}

.statement-page {
  background: #fff;
  color: #171717;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.62;
}

.statement-document {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 112px;
}

.statement-document h1 {
  max-width: 620px;
  margin: 0 0 58px;
  color: #111;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0;
}

.statement-document h1 strong {
  font-weight: 780;
}

.statement-document h2 {
  margin: 64px 0 24px;
  color: #111;
  font-size: 25px;
  font-weight: 780;
  line-height: 1.25;
  letter-spacing: 0;
}

.statement-document h3 {
  margin: 30px 0 10px;
  color: #222;
  font-size: 16px;
  font-weight: 780;
  line-height: 1.42;
  letter-spacing: 0;
}

.statement-document p,
.statement-document li {
  color: #5f6368;
}

.statement-document p {
  margin: 0 0 16px;
}

.statement-document ul {
  margin: 0 0 18px;
  padding-left: 24px;
}

.statement-document li {
  margin: 5px 0;
}

.statement-rule {
  height: 1px;
  margin: 30px 0;
  background: #ececec;
}

.statement-meta {
  margin: 0 0 34px;
}

.statement-meta p {
  margin: 0 0 8px;
}

.statement-document strong {
  color: #333;
  font-weight: 780;
}

.statement-document a {
  color: #333;
}

.statement-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #ececec;
  color: #8a8f94;
  font-size: 13px;
}

@media (min-width: 1000px) {
  .statement-document {
    width: min(720px, calc(100% - 80px));
    padding-top: 110px;
  }
}

@media (max-width: 600px) {
  .statement-page {
    font-size: 13px;
    line-height: 1.58;
  }

  .statement-document {
    width: min(100% - 42px, 620px);
    padding: 74px 0 92px;
  }

  .statement-document h1 {
    margin-bottom: 52px;
    font-size: 27px;
    line-height: 1.5;
  }

  .statement-document h2 {
    margin-top: 58px;
    font-size: 23px;
  }

  .statement-document h3 {
    font-size: 15px;
  }
}
