:root {
  color-scheme: light;
  --ink: #121714;
  --muted: #667069;
  --paper: #f4f6f7;
  --white: #ffffff;
  --line: #d9dfdc;
  --line-dark: #b9c1bd;
  --green: #54b900;
  --green-deep: #318300;
  --green-soft: #e9f6df;
  --shadow: 0 26px 70px rgba(17, 26, 20, 0.11);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, select { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; background: var(--ink); color: white; padding: 10px 14px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(244, 246, 247, 0.9);
  border-bottom: 1px solid rgba(185, 193, 189, 0.6);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; text-decoration: none; }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 13px; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 18px; letter-spacing: -0.02em; }
.brand small { margin-top: 5px; color: var(--green-deep); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.main-nav a, .back-link { color: #3f4943; font-size: 14px; font-weight: 700; text-decoration: none; }
.main-nav a:hover, .back-link:hover { color: var(--green-deep); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.language-control select { min-width: 64px; border: 1px solid var(--line-dark); border-radius: 999px; background: var(--white); padding: 10px 14px; color: var(--ink); font-weight: 800; cursor: pointer; }
.button { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 15px 22px; text-decoration: none; font-weight: 800; line-height: 1.1; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #102006; box-shadow: 0 12px 28px rgba(84, 185, 0, .22); }
.button-primary:hover { background: #61ca0a; }
.button-dark { background: var(--ink); color: white; }
.button-small { padding: 12px 17px; font-size: 14px; }

.hero { min-height: 680px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 78px; align-items: center; padding-block: 72px 82px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--green-deep); font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 34px; height: 3px; background: var(--green); }
.hero h1 { max-width: 720px; margin: 20px 0 24px; font-size: clamp(48px, 6.5vw, 82px); line-height: .98; letter-spacing: -.058em; }
.hero-lead { max-width: 620px; margin: 0; color: #4d5751; font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.proof-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 48px 0 0; padding: 25px 0 0; list-style: none; border-top: 1px solid var(--line-dark); }
.proof-list li { display: grid; }
.proof-list strong { font-size: 24px; letter-spacing: -.03em; }
.proof-list span { color: var(--muted); font-size: 13px; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(84,185,0,.34); border-radius: 50%; }
.orbit-one { width: 530px; height: 530px; }
.orbit-two { width: 410px; height: 410px; border-style: dashed; animation: drift 24s linear infinite; }
@keyframes drift { to { transform: rotate(360deg); } }
.field-console { position: relative; z-index: 2; width: min(100%, 490px); overflow: hidden; background: #fafbfb; border: 1px solid #cbd3cf; border-radius: 30px; box-shadow: var(--shadow); transform: rotate(1.3deg); }
.console-header, .console-footer { display: flex; align-items: center; justify-content: space-between; padding: 19px 22px; }
.console-header { border-bottom: 1px solid var(--line); }
.console-header > div { display: grid; }
.console-kicker, .answer-label { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sync-pill, .status { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; background: var(--green-soft); border-radius: 999px; color: #246a00; font-size: 12px; font-weight: 800; }
.sync-pill i, .status i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(84,185,0,.15); }
.case-summary { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: center; padding: 24px 22px 16px; }
.case-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--ink); color: white; font-weight: 900; }
.case-summary span { color: var(--green-deep); font-size: 12px; font-weight: 800; }
.case-summary h2 { margin: 4px 0 0; font-size: 21px; line-height: 1.2; letter-spacing: -.025em; }
.evidence-row { display: flex; gap: 7px; padding: 0 22px; }
.evidence-row span { padding: 6px 9px; background: #e8ecea; border-radius: 6px; color: #59635d; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.answer-card { margin: 18px 22px 22px; padding: 20px; border-left: 4px solid var(--green); border-radius: 5px 17px 17px 5px; background: #eef2f0; }
.answer-card p { margin: 10px 0 16px; color: #323b36; font-size: 15px; }
.confidence { display: flex; align-items: center; gap: 10px; }
.confidence > span { width: 86px; height: 5px; overflow: hidden; background: #d1d8d4; border-radius: 999px; }
.confidence > span i { display: block; width: 83%; height: 100%; background: var(--green); }
.confidence small { color: var(--muted); font-size: 11px; font-weight: 700; }
.console-footer { background: var(--ink); color: white; font-size: 12px; }
.console-footer > span { display: flex; gap: 8px; align-items: center; }
.device-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.console-footer button { border: 0; background: transparent; color: var(--green); font-size: 12px; font-weight: 900; cursor: pointer; }

.audience-strip { padding: 24px; background: var(--ink); color: white; text-align: center; }
.audience-strip p { margin: 0; font-size: 15px; font-weight: 700; letter-spacing: .025em; }
.modules, .workflow { padding-block: 112px; }
.section-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: end; margin-bottom: 46px; }
.section-heading.compact { margin-bottom: 36px; }
.section-number { display: inline-grid; place-items: center; min-width: 38px; height: 28px; padding: 0 10px; border: 1px solid var(--line-dark); border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 900; }
.eyebrow-text { margin: 15px 0 0; color: var(--green-deep); font-size: 13px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.section-heading h2, .cloud-intro h2, .language-inner h2, .closing h2 { margin: 0; max-width: 760px; font-size: clamp(34px, 4.4vw, 58px); line-height: 1.04; letter-spacing: -.045em; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.module-card { min-height: 272px; display: flex; flex-direction: column; padding: 27px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, border .2s ease, box-shadow .2s ease; }
.module-card:hover { transform: translateY(-4px); border-color: #aacb97; box-shadow: 0 18px 45px rgba(17,26,20,.08); }
.module-featured { background: var(--green); border-color: var(--green); }
.module-code { width: fit-content; padding: 5px 8px; border-radius: 5px; background: var(--ink); color: white; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.module-card h3 { margin: auto 0 7px; font-size: 24px; letter-spacing: -.025em; }
.module-card p { margin: 0; color: #59635d; font-size: 14px; }
.module-featured p { color: #1f3b10; }
.module-meta { display: flex; gap: 7px; margin-top: 17px; }
.module-meta span { padding: 4px 7px; border: 1px solid rgba(18,23,20,.25); border-radius: 999px; font-size: 9px; font-weight: 900; }

.cloud { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; align-items: center; padding-block: 120px; border-top: 1px solid var(--line-dark); }
.cloud-intro > p:not(.eyebrow-text) { color: var(--muted); font-size: 17px; }
.cloud-intro h2 { margin-top: 18px; }
.cloud-principles { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line-dark); }
.cloud-principles > div { display: grid; gap: 3px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cloud-principles strong { font-size: 15px; }
.cloud-principles span { color: var(--muted); font-size: 13px; }
.cloud-board { overflow: hidden; background: var(--white); border: 1px solid #bcc5c0; border-radius: 28px; box-shadow: var(--shadow); }
.cloud-board > header { display: flex; justify-content: space-between; align-items: center; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.mini-brand { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .13em; }
.mini-brand img { width: 31px; height: 31px; border-radius: 8px; }
.avatar { width: 31px; height: 31px; display: grid; place-items: center; background: var(--ink); border-radius: 50%; color: white; font-size: 11px; font-weight: 900; }
.cloud-body { display: grid; grid-template-columns: 132px 1fr; min-height: 438px; }
.cloud-body aside { display: flex; flex-direction: column; gap: 8px; padding: 24px 14px; background: #eef1ef; border-right: 1px solid var(--line); }
.cloud-body aside span { padding: 9px 10px; border-radius: 9px; color: var(--muted); font-size: 11px; font-weight: 800; }
.cloud-body aside .active { background: var(--ink); color: white; }
.cloud-content { padding: 27px 24px 24px; }
.cloud-content-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.cloud-content-head small { color: var(--green-deep); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.cloud-content-head h3 { margin: 2px 0 0; font-size: 22px; letter-spacing: -.025em; }
.case-table { border-block: 1px solid var(--line); }
.case-row { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.case-row:last-child { border-bottom: 0; }
.row-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 9px; background: #e9edeb; font-size: 9px; font-weight: 900; }
.row-icon.green { background: var(--green); }
.case-row div { display: grid; }
.case-row strong { font-size: 13px; }
.case-row small, .case-row time { color: var(--muted); font-size: 10px; }
.handoff-card { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; margin-top: 20px; padding: 16px; background: var(--green-soft); border-radius: 15px; }
.handoff-icon { width: 31px; height: 31px; display: grid; place-items: center; background: var(--green); border-radius: 50%; font-weight: 900; }
.handoff-card strong { font-size: 13px; }
.handoff-card p { margin: 3px 0 0; color: #4f6254; font-size: 11px; }
.cloud-board > footer { display: flex; justify-content: space-between; gap: 12px; padding: 13px 18px; background: var(--ink); color: #bdc6c0; font-size: 9px; font-weight: 800; letter-spacing: .06em; }
.cloud-board > footer span:first-child { display: flex; align-items: center; gap: 7px; }
.cloud-board > footer i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

.workflow { border-top: 1px solid var(--line-dark); }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.workflow-grid article { min-height: 250px; padding: 28px 32px 28px 0; border-top: 3px solid var(--ink); }
.workflow-grid article + article { padding-left: 32px; border-left: 1px solid var(--line); }
.workflow-grid article > span { color: var(--green-deep); font-size: 12px; font-weight: 900; }
.workflow-grid h3 { margin: 67px 0 8px; font-size: 24px; }
.workflow-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.language-band { padding-block: 90px; background: var(--ink); color: white; }
.language-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.language-inner .eyebrow-text { color: var(--green); }
.language-inner h2 { margin-top: 15px; }
.language-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #414944; }
.language-list span { padding: 14px 0; border-bottom: 1px solid #414944; color: #d9dfdb; font-size: 14px; }
.closing { display: flex; justify-content: space-between; gap: 40px; align-items: end; padding-block: 110px; }
.closing h2 { margin-top: 18px; }
.closing p { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 17px; }
.site-footer { min-height: 105px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center; padding: 20px max(24px, calc((100vw - 1180px) / 2)); border-top: 1px solid var(--line-dark); }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand strong { font-size: 15px; }
.footer-brand small { font-size: 9px; }
.site-footer p { color: var(--muted); font-size: 12px; }
.site-footer > div:last-child { display: flex; justify-content: flex-end; gap: 20px; }
.site-footer a { color: #424c46; font-size: 12px; font-weight: 700; text-underline-offset: 4px; }

.back-link { display: inline-flex; align-items: center; justify-self: center; gap: 7px; }
.deletion-page { padding-block: 74px 110px; }
.deletion-hero { max-width: 900px; }
.deletion-hero h1 { margin: 20px 0; font-size: clamp(44px, 6vw, 78px); line-height: 1; letter-spacing: -.055em; }
.deletion-hero > p { max-width: 760px; color: var(--muted); font-size: 19px; }
.delete-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 55px; }
.delete-option { position: relative; min-height: 380px; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.delete-option.recommended { border-top: 5px solid var(--green); }
.option-tag { position: absolute; top: 22px; right: 25px; padding: 6px 10px; border-radius: 999px; background: var(--green-soft); color: var(--green-deep); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.option-number { color: var(--green-deep); font-size: 12px; font-weight: 900; }
.delete-option h2 { margin: 68px 0 20px; font-size: 29px; letter-spacing: -.035em; }
.delete-option ol { padding-left: 22px; color: #4c5650; }
.delete-option li { padding: 8px 0 8px 8px; }
.delete-option p { color: var(--muted); }
.plain-email { display: block; width: fit-content; margin-top: 17px; color: var(--green-deep); font-weight: 800; text-underline-offset: 4px; }
.data-details { display: grid; grid-template-columns: .65fr 1.35fr; gap: 55px; margin-top: 80px; padding-block: 55px; border-block: 1px solid var(--line-dark); }
.data-details h2, .retention-note h2 { margin: 17px 0 0; font-size: 35px; letter-spacing: -.04em; }
.check-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 38px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 16px; width: 23px; height: 23px; display: grid; place-items: center; background: var(--green); border-radius: 50%; font-size: 12px; font-weight: 900; }
.retention-note { display: grid; grid-template-columns: auto 1fr; gap: 22px; margin-top: 40px; padding: 32px; background: #ecefed; border-radius: var(--radius); }
.note-mark { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ink); border-radius: 50%; color: white; font-weight: 900; }
.retention-note h2 { margin: 0 0 12px; font-size: 26px; }
.retention-note p { margin: 8px 0; color: var(--muted); }

.policy-page { padding-block: 74px 110px; }
.policy-hero { max-width: 920px; padding-bottom: 54px; }
.policy-hero h1 { margin: 20px 0 10px; font-size: clamp(48px, 6vw, 78px); line-height: 1; letter-spacing: -.055em; }
.policy-updated { margin: 0 0 22px; color: var(--green-deep); font-size: 13px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.policy-lead { max-width: 790px; margin: 0; color: var(--muted); font-size: 19px; }
.controller-card { display: grid; grid-template-columns: .65fr 1.35fr; gap: 55px; padding: 38px; background: var(--ink); border-radius: var(--radius); color: white; }
.controller-card h2 { margin: 17px 0 0; font-size: 31px; letter-spacing: -.04em; }
.controller-card p { margin: 0 0 10px; color: #d7ded9; }
.controller-card a { color: var(--green); font-weight: 800; text-underline-offset: 4px; }
.controller-card .section-number { border-color: #657069; color: #d7ded9; }
.policy-content { margin-top: 18px; }
.policy-content > section { display: grid; grid-template-columns: 86px minmax(0, 1fr); column-gap: 28px; padding: 48px 10px; border-bottom: 1px solid var(--line-dark); }
.policy-content > section > *:not(.section-number) { grid-column: 2; }
.policy-content > section > .section-number { grid-column: 1; grid-row: 1; align-self: start; }
.policy-content h2 { margin: -7px 0 18px; font-size: clamp(27px, 3vw, 37px); line-height: 1.1; letter-spacing: -.04em; }
.policy-content p { max-width: 900px; margin: 8px 0 15px; color: #4e5852; }
.policy-content ul { display: grid; gap: 12px; max-width: 940px; margin: 4px 0 15px; padding-left: 23px; }
.policy-content li { padding-left: 7px; color: #4e5852; }
.policy-content strong { color: var(--ink); }
.policy-actions { display: flex; align-items: center; gap: 24px; margin: 22px 0; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 64px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 520px; }
  .section-heading, .cloud, .language-inner { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .cloud { gap: 44px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 70px; padding: 8px 15px; gap: 10px; }
  .brand img { width: 43px; height: 43px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 9px; }
  .header-actions .button { display: none; }
  .language-control select { min-width: 58px; padding: 8px 10px; }
  .hero { min-height: auto; padding-block: 56px 64px; }
  .hero h1 { font-size: clamp(45px, 14vw, 66px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .proof-list { gap: 9px; }
  .proof-list strong { font-size: 20px; }
  .proof-list span { font-size: 11px; }
  .hero-visual { min-height: 470px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 300px; height: 300px; }
  .field-console { transform: none; }
  .console-footer { align-items: flex-start; gap: 12px; }
  .modules, .workflow { padding-block: 80px; }
  .section-heading { gap: 25px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 235px; }
  .cloud { padding-block: 82px; }
  .cloud-board { border-radius: 20px; }
  .cloud-body { grid-template-columns: 1fr; }
  .cloud-body aside { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .cloud-content { padding: 22px 17px; }
  .cloud-content-head { align-items: flex-start; gap: 10px; }
  .status { white-space: nowrap; }
  .cloud-board > footer { align-items: flex-start; flex-direction: column; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid article, .workflow-grid article + article { min-height: auto; padding: 26px 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .workflow-grid h3 { margin-top: 30px; }
  .language-list { grid-template-columns: 1fr; }
  .closing { align-items: flex-start; flex-direction: column; padding-block: 82px; }
  .site-footer { min-height: 140px; grid-template-columns: 1fr; padding: 24px 15px; }
  .site-footer > div:last-child { justify-content: flex-start; }
  .back-link { display: none; }
  .deletion-page { padding-block: 55px 80px; }
  .delete-options { grid-template-columns: 1fr; }
  .delete-option { min-height: 0; }
  .data-details { grid-template-columns: 1fr; gap: 25px; }
  .retention-note { padding: 23px; }
  .policy-page { padding-block: 55px 80px; }
  .policy-hero { padding-bottom: 40px; }
  .controller-card { grid-template-columns: 1fr; gap: 20px; padding: 26px; }
  .policy-content > section { grid-template-columns: 1fr; padding: 38px 0; }
  .policy-content > section > *:not(.section-number), .policy-content > section > .section-number { grid-column: 1; }
  .policy-content > section > .section-number { grid-row: auto; margin-bottom: 20px; }
  .policy-content h2 { margin-top: 0; }
  .policy-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
}

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