:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #5e6970;
  --line: #dfe5e7;
  --panel: #ffffff;
  --accent: #117c7a;
  --accent-dark: #0d5558;
  --amber: #b86f18;
  --page: #f6f8f8;
  --shadow: 0 22px 70px rgba(23, 33, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page);
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid #f0a84a;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #ffffff;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.nav-links {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(13, 25, 29, 0.24);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(18px, 6vw, 80px) 72px;
  background: #142024;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 18, 22, 0.92) 0%, rgba(9, 18, 22, 0.78) 42%, rgba(9, 18, 22, 0.3) 78%, rgba(9, 18, 22, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 18, 22, 0.5), rgba(9, 18, 22, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b7e7df;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.button.primary {
  background: #ffffff;
  color: #102025;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.product-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -36px auto 0;
  padding: 0 clamp(18px, 4vw, 40px) 72px;
  position: relative;
  z-index: 2;
}

.route-panel {
  min-height: 260px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.route-panel:first-child {
  border-radius: 8px 0 0 8px;
}

.route-panel:last-child {
  border-radius: 0 8px 8px 0;
}

.route-label {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.route-panel p {
  margin: 16px 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.route-panel a {
  color: var(--accent-dark);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  font-weight: 700;
}

.interior-page {
  background: #ffffff;
}

.interior-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(223, 229, 231, 0.72);
  background: #ffffff;
}

.interior-header .brand {
  color: var(--ink);
}

.interior-header .brand-mark {
  border-color: rgba(17, 124, 122, 0.24);
  color: #ffffff;
  background: var(--accent);
}

.interior-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.interior-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.interior-nav a:hover,
.interior-nav a[aria-current="page"] {
  color: var(--accent-dark);
  background: #e9f5f3;
}

.interior-main {
  overflow: hidden;
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(74px, 9vw, 124px) 0;
  color: #ffffff;
  background: #10282b;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.page-hero::before {
  width: min(54vw, 700px);
  aspect-ratio: 1;
  top: -68%;
  right: -8%;
  border: 1px solid rgba(183, 231, 223, 0.2);
  box-shadow: 0 0 0 70px rgba(183, 231, 223, 0.04), 0 0 0 140px rgba(183, 231, 223, 0.025);
}

.page-hero::after {
  width: 260px;
  height: 260px;
  right: 21%;
  bottom: -190px;
  background: rgba(184, 111, 24, 0.28);
  filter: blur(2px);
}

.page-hero--about {
  background: linear-gradient(125deg, #0d292c 0%, #11545a 58%, #173d41 100%);
}

.page-hero--contact {
  background: linear-gradient(125deg, #102428 0%, #144f52 54%, #28484a 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(42px, 8vw, 100px);
}

.page-hero .eyebrow {
  margin-bottom: 20px;
  color: #b7e7df;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.page-hero-copy {
  max-width: 730px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero-note {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  padding-top: 22px;
}

.hero-note-label {
  color: #b7e7df;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-note p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.hero-email {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.content-section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.content-section--tinted {
  background: #f3f7f6;
}

.story-grid,
.contact-guide-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(42px, 8vw, 112px);
}

.section-intro {
  max-width: 480px;
}

.section-intro--wide {
  max-width: 750px;
  margin-bottom: 42px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-intro h2,
.cta-band h2,
.contact-email-band h2 {
  margin: 0;
  font-size: clamp(31px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.story-copy .lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.5;
}

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

.value-card,
.contact-option {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
}

.value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  background: #dff1ee;
}

.value-card h3,
.product-preview-card h3,
.contact-option h3 {
  margin: 24px 0 0;
  font-size: 23px;
  line-height: 1.2;
}

.value-card p,
.product-preview-card p,
.contact-option p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-preview-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 46px);
  background: #e6f3f1;
}

.product-preview-card--dark {
  color: #ffffff;
  background: #17363a;
}

.product-kicker {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-preview-card--dark .product-kicker {
  color: #b7e7df;
}

.product-preview-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.product-preview-card a {
  margin-top: auto;
  padding-top: 30px;
  color: var(--accent-dark);
  font-weight: 900;
}

.product-preview-card--dark a {
  color: #ffffff;
}

.cta-band,
.contact-email-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(68px, 9vw, 112px);
  border-radius: 16px;
  padding: clamp(30px, 5vw, 54px);
}

.cta-band {
  color: #ffffff;
  background: linear-gradient(120deg, #0d5558, #17383c);
}

.cta-band .section-label {
  color: #b7e7df;
}

.cta-band .button {
  flex: 0 0 auto;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  background: var(--accent);
}

.contact-option h3 {
  margin-top: 22px;
}

.contact-option a {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-dark);
  font-weight: 900;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
}

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

.detail-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list li:first-child {
  padding-top: 0;
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list li > span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.detail-list strong {
  color: var(--ink);
}

.contact-email-band {
  margin-top: clamp(68px, 9vw, 112px);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(23, 33, 38, 0.09);
}

.contact-email-band > div > p:last-child {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.email-button {
  flex: 0 0 auto;
  border-radius: 12px;
  padding: 18px 22px;
  color: #ffffff;
  background: var(--accent-dark);
}

.email-button span,
.email-button strong {
  display: block;
}

.email-button span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.email-button strong {
  overflow-wrap: anywhere;
}

.interior-footer {
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.footer-links a[aria-current="page"] {
  color: var(--accent-dark);
}

.page-hero--resources {
  background: linear-gradient(125deg, #0d292c 0%, #176267 58%, #173b40 100%);
}

.page-hero--blog {
  background: linear-gradient(125deg, #14272a 0%, #315c5b 54%, #6d4b25 120%);
}

.page-hero--roadmap {
  background: linear-gradient(125deg, #10282b 0%, #284f5a 58%, #253541 100%);
}

.page-hero--changelog {
  background: linear-gradient(125deg, #10282b 0%, #245d55 58%, #30423f 100%);
}

.page-hero--faq {
  background: linear-gradient(125deg, #10272b 0%, #1e5a61 58%, #37494b 100%);
}

.page-hero--legal {
  background: linear-gradient(125deg, #152529 0%, #394b50 58%, #27373b 100%);
}

.text-link {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 900;
}

.text-link--spaced {
  margin-top: 28px;
}

.docs-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.docs-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
}

.docs-card-number {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.docs-card h3 {
  margin: 24px 0 0;
  font-size: 22px;
  line-height: 1.25;
}

.docs-card p {
  margin: 14px 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.docs-card .status-pill,
.docs-card .text-link {
  margin-top: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  background: #dff1ee;
}

.status-pill--muted {
  color: #59676b;
  background: #edf1f1;
}

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

.article-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(26px, 3.5vw, 40px);
  background: #ffffff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 124, 122, 0.36);
  box-shadow: 0 18px 50px rgba(23, 33, 38, 0.1);
}

.article-card--featured {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, #0d5558, #17383c);
}

.article-tag {
  color: var(--amber);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-card--featured .article-tag {
  color: #b7e7df;
}

.article-card h3 {
  margin: 24px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.article-card p {
  margin: 18px 0 28px;
  color: var(--muted);
  line-height: 1.65;
}

.article-card--featured p {
  color: rgba(255, 255, 255, 0.72);
}

.article-link {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 900;
}

.article-card--featured .article-link {
  color: #ffffff;
}

.article-reading {
  padding-top: 0;
}

.reading-column {
  max-width: 860px;
}

.blog-entry {
  scroll-margin-top: 30px;
  padding: clamp(58px, 8vw, 92px) 0;
  border-bottom: 1px solid var(--line);
}

.blog-entry:last-child {
  border-bottom: 0;
}

.blog-entry h2 {
  max-width: 740px;
  margin: 16px 0 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.article-byline {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.blog-entry > p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.blog-entry .article-lead {
  color: var(--ink);
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.55;
}

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

.roadmap-column {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(26px, 3vw, 38px);
  background: #ffffff;
}

.roadmap-column--now {
  border-color: rgba(17, 124, 122, 0.3);
  background: #f2faf8;
}

.roadmap-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.roadmap-marker {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border: 3px solid #d7ebe8;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #eef7f5;
}

.roadmap-heading p {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.roadmap-heading h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.roadmap-column ul {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.roadmap-column li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.roadmap-column li strong,
.roadmap-column li span {
  display: block;
}

.roadmap-column li strong {
  font-size: 16px;
}

.roadmap-column li span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.changelog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(50px, 8vw, 110px);
}

.changelog-intro {
  align-self: start;
  position: sticky;
  top: 28px;
}

.changelog-intro > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.changelog-list {
  border-top: 1px solid var(--line);
}

.change-entry {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 28px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.change-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.change-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.change-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.product-tags span {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  background: #e2f2ef;
}

.change-body > p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.change-body ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.change-body li {
  margin-top: 10px;
  line-height: 1.55;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-left: 8px;
  border: 1px solid #aee7c6;
  border-radius: 8px;
  padding: 3px 9px;
  color: #177442;
  font-size: 0.46em;
  font-style: normal;
  font-weight: 900;
  vertical-align: middle;
  background: #eefaf2;
}

.change-meta .new-badge {
  margin-left: 0;
  font-size: 11px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(50px, 8vw, 110px);
}

.faq-intro {
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 26px 48px 26px 0;
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 850;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 6px;
  color: var(--accent-dark);
  font-size: 28px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details > div {
  max-width: 760px;
  padding: 0 48px 26px 0;
}

.faq-list details p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list details a {
  color: var(--accent-dark);
  font-weight: 800;
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 790px);
  justify-content: center;
  gap: clamp(50px, 8vw, 110px);
}

.policy-nav {
  align-self: start;
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.policy-nav a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.policy-nav a:hover {
  color: var(--accent-dark);
}

.draft-notice {
  border: 1px solid #e4c58e;
  border-radius: 14px;
  padding: 24px;
  background: #fff9ee;
}

.draft-notice strong {
  color: #784913;
  font-size: 17px;
}

.draft-notice p {
  margin: 9px 0 0;
  color: #725b3e;
  line-height: 1.6;
}

.policy-copy > section {
  scroll-margin-top: 30px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.policy-number {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.policy-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.policy-copy p,
.policy-copy li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.policy-copy section > p {
  margin: 20px 0 0;
}

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

.policy-copy li + li {
  margin-top: 10px;
}

.policy-copy a {
  color: var(--accent-dark);
  font-weight: 850;
}

.policy-copy .finalize-checklist {
  margin-top: 40px;
  border: 1px solid rgba(17, 124, 122, 0.22);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 46px);
  background: #f0f8f7;
}

.finalize-checklist h2 {
  margin-top: 0;
}

.resource-directory {
  border-top: 1px solid #e4e7ed;
  padding: clamp(70px, 9vw, 110px) 0;
  background: #f5f6fb;
}

.resource-directory-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 9vw, 130px);
}

.resource-directory h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.resource-list {
  display: flex;
  flex-direction: column;
}

.resource-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 74px;
  border-bottom: 1px solid #dde1e8;
  color: #24272f;
  font-size: clamp(24px, 3.4vw, 37px);
  line-height: 1.2;
}

.resource-list a:first-child {
  border-top: 1px solid #dde1e8;
}

.resource-list a > span:last-child {
  flex: 0 0 auto;
  color: #747785;
  font-size: 0.8em;
  transition: transform 160ms ease;
}

.resource-list a:hover,
.resource-list a[aria-current="page"] {
  color: var(--accent-dark);
}

.resource-list a:hover > span:last-child {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .page-hero-grid,
  .story-grid,
  .contact-guide-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    gap: 48px;
  }

  .hero-note {
    max-width: 520px;
  }

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

  .value-card,
  .contact-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 22px;
  }

  .value-card h3,
  .contact-option h3 {
    align-self: center;
    margin: 0;
  }

  .value-card p,
  .contact-option p,
  .contact-option a {
    grid-column: 2;
  }

  .contact-option a {
    margin-top: 18px;
  }

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

  .article-card--featured {
    grid-column: span 2;
  }

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

  .changelog-layout,
  .faq-layout,
  .policy-layout,
  .resource-directory-grid {
    grid-template-columns: 1fr;
  }

  .changelog-intro,
  .policy-nav {
    position: static;
  }

  .policy-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .policy-nav .section-label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .interior-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .interior-nav {
    width: 100%;
    overflow-x: auto;
  }

  .interior-nav a {
    padding-inline: 11px;
  }

  .page-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .product-preview {
    grid-template-columns: 1fr;
  }

  .product-preview-card {
    min-height: 280px;
  }

  .value-card,
  .contact-option {
    display: block;
  }

  .value-card h3,
  .contact-option h3 {
    margin-top: 22px;
  }

  .contact-option p,
  .contact-option a {
    grid-column: auto;
  }

  .cta-band,
  .contact-email-band {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band .button,
  .email-button {
    width: 100%;
  }

  .email-button strong {
    font-size: 14px;
  }

  .interior-footer,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .docs-card-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-card--featured {
    grid-column: auto;
  }

  .article-card {
    min-height: 320px;
  }

  .change-entry {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .change-heading {
    flex-direction: column;
  }

  .product-tags {
    justify-content: flex-start;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .resource-list a {
    min-height: 66px;
  }

  .resource-list .new-badge {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .nav-links a {
    padding: 8px 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 82vh;
    align-items: start;
    padding-top: 170px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(9, 18, 22, 0.92), rgba(9, 18, 22, 0.42));
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .product-routes {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 24px;
  }

  .route-panel,
  .route-panel:first-child,
  .route-panel:last-child {
    border-radius: 8px;
  }
}
