:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --bg-soft: #eef2f7;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-raised: rgba(255, 255, 255, 0.82);
  --ink: #101828;
  --ink-soft: #475467;
  --ink-faint: #667085;
  --line: #dfe5ed;
  --line-strong: #cbd5e1;
  --blue: #1265dc;
  --blue-deep: #0d4cad;
  --blue-soft: #e8f1ff;
  --green: #0f9f6e;
  --green-soft: #e8f8f2;
  --red: #d92d20;
  --red-deep: #b42318;
  --red-soft: #fff0ef;
  --orange: #e26d0c;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 20px 55px rgba(16, 24, 40, 0.09);
  --shadow-blue: 0 18px 45px rgba(18, 101, 220, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0d10;
  --bg-soft: #12161c;
  --surface: #13171d;
  --surface-soft: #181d24;
  --surface-raised: rgba(19, 23, 29, 0.86);
  --ink: #f5f7fa;
  --ink-soft: #c1c9d4;
  --ink-faint: #929dab;
  --line: #29313c;
  --line-strong: #3a4553;
  --blue: #5c9dff;
  --blue-deep: #84b6ff;
  --blue-soft: #142845;
  --green: #4bd1a1;
  --green-soft: #123529;
  --red: #ff746b;
  --red-deep: #ff9a93;
  --red-soft: #3b1b1a;
  --orange: #ff9f45;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-blue: 0 18px 45px rgba(18, 101, 220, 0.22);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0b0d10;
    --bg-soft: #12161c;
    --surface: #13171d;
    --surface-soft: #181d24;
    --surface-raised: rgba(19, 23, 29, 0.86);
    --ink: #f5f7fa;
    --ink-soft: #c1c9d4;
    --ink-faint: #929dab;
    --line: #29313c;
    --line-strong: #3a4553;
    --blue: #5c9dff;
    --blue-deep: #84b6ff;
    --blue-soft: #142845;
    --green: #4bd1a1;
    --green-soft: #123529;
    --red: #ff746b;
    --red-deep: #ff9a93;
    --red-soft: #3b1b1a;
    --orange: #ff9f45;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.35);
    --shadow-blue: 0 18px 45px rgba(18, 101, 220, 0.22);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Arabic", "Noto Sans Arabic", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 45%, transparent);
  outline-offset: 3px;
}

.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;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid color-mix(in srgb, var(--line) 74%, transparent);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  font-size: 15px;
  font-weight: 760;
  color: var(--ink-soft);
  white-space: nowrap;
}
.brand img { width: 132px; height: auto; color: var(--ink); }
:root[data-theme="dark"] .brand img,
:root[data-theme="dark"] .footer-brand img,
:root[data-theme="dark"] .not-found-brand img { filter: invert(1); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand img,
  :root:not([data-theme="light"]) .footer-brand img,
  :root:not([data-theme="light"]) .not-found-brand img { filter: invert(1); }
}
.brand-divider { width: 1px; height: 28px; background: var(--line-strong); }

.header-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.header-nav a {
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  transition: color .18s ease, background .18s ease;
}
.header-nav a:hover { color: var(--ink); background: var(--surface-soft); }

.theme-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.theme-toggle span { position: absolute; inset: 0; margin: auto; }
.theme-sun {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -7px 0 -6px currentColor, 0 7px 0 -6px currentColor, 7px 0 0 -6px currentColor, -7px 0 0 -6px currentColor;
}
.theme-moon {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-block-start-color: transparent;
  border-radius: 50%;
  transform: rotate(-35deg);
}
:root[data-theme="dark"] .theme-sun { display: none; }
:root[data-theme="dark"] .theme-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-sun { display: none; }
  :root:not([data-theme="light"]) .theme-moon { display: block; }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .72fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
  min-height: 620px;
  padding-block: 92px 84px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 6% -18% auto auto;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--blue) 12%, transparent), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-search {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  min-height: 66px;
  margin-top: 34px;
  padding-inline: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: border .18s ease, box-shadow .18s ease;
}
.hero-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 12%, transparent), var(--shadow-md);
}
.search-mark {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink-faint);
  border-radius: 50%;
}
.search-mark::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  inset-inline-start: -5px;
  inset-block-end: -2px;
  border-radius: 2px;
  background: var(--ink-faint);
  transform: rotate(45deg);
}
.hero-search input {
  width: 100%;
  min-width: 0;
  height: 64px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}
.hero-search input::placeholder { color: var(--ink-faint); opacity: .82; }
.hero-search kbd {
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--ink-faint);
  font-family: inherit;
  font-size: 11px;
}

.hero-actions, .policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 760;
  line-height: 1.3;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.button-primary:hover { background: var(--blue-deep); }
.button-secondary { border-color: var(--line-strong); background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.button-secondary:hover { border-color: var(--blue); color: var(--blue-deep); }
.button-danger { background: var(--red); color: #fff; box-shadow: 0 16px 38px color-mix(in srgb, var(--red) 20%, transparent); }
.button-danger:hover { background: var(--red-deep); }
.button:disabled { cursor: not-allowed; opacity: .56; transform: none; box-shadow: none; }

.hero-assurance {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: var(--shadow-md);
}
.assurance-orbit {
  position: relative;
  height: 180px;
  margin-bottom: 16px;
}
.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid color-mix(in srgb, var(--blue) 30%, var(--line));
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-one { width: 148px; height: 148px; }
.orbit-two { width: 210px; height: 100px; transform: translate(-50%, -50%) rotate(-18deg); }
.orbit-core {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 23px;
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translate(-50%, -50%);
}
.orbit-core img { width: 34px; filter: brightness(0) invert(1); }
.assurance-copy strong { font-size: 21px; }
.assurance-copy p { margin: 8px 0 0; color: var(--ink-soft); }
.hero-assurance ul { display: grid; gap: 11px; margin: 26px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--ink-soft); font-size: 14px; }
.hero-assurance li { display: flex; align-items: center; gap: 9px; }
.hero-assurance li span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }

.quick-paths { padding-block: 48px 82px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: -.025em;
}
.section-heading > div > p:not(.eyebrow) { max-width: 680px; margin: 10px 0 0; color: var(--ink-soft); }
.compact-heading { margin-bottom: 22px; }
.text-link { color: var(--blue-deep); font-size: 14px; font-weight: 760; white-space: nowrap; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.quick-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border .18s ease, box-shadow .18s ease;
}
.quick-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--blue) 40%, var(--line)); box-shadow: var(--shadow-md); }
.quick-index { color: var(--blue-deep); font-size: 12px; font-weight: 800; writing-mode: vertical-rl; }
.quick-card strong { display: block; font-size: 16px; }
.quick-card p { margin: 4px 0 0; color: var(--ink-faint); font-size: 13px; line-height: 1.55; }
.card-arrow { color: var(--blue); font-size: 21px; }
.danger-card .quick-index, .danger-card .card-arrow { color: var(--red); }
.danger-card:hover { border-color: color-mix(in srgb, var(--red) 45%, var(--line)); }

.answers { padding-block: 84px 110px; }
.faq-layout { display: grid; grid-template-columns: 278px minmax(0, 1fr); gap: 28px; align-items: start; }
.faq-note {
  position: sticky;
  inset-block-start: 110px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}
.note-label, .step-label { display: inline-block; color: var(--blue-deep); font-size: 11px; font-weight: 820; letter-spacing: .025em; }
.faq-note strong { display: block; margin-top: 12px; font-size: 18px; }
.faq-note p { margin: 8px 0 18px; color: var(--ink-soft); font-size: 14px; }
.faq-note a { color: var(--blue-deep); font-size: 14px; font-weight: 760; }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border .18s ease, box-shadow .18s ease;
}
.faq-list details[open] { border-color: color-mix(in srgb, var(--blue) 35%, var(--line)); box-shadow: 0 12px 32px color-mix(in srgb, var(--blue) 8%, transparent); }
.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 26px;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 740;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.summary-plus { position: relative; width: 22px; height: 22px; border-radius: 7px; background: var(--blue-soft); }
.summary-plus::before, .summary-plus::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 10px; height: 1.5px; border-radius: 2px; background: var(--blue-deep); transform: translate(-50%, -50%); }
.summary-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .18s ease; }
details[open] .summary-plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details > p { margin: 0; padding: 0 20px 20px; color: var(--ink-soft); }

.empty-state {
  margin: 0;
  padding: 30px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  color: var(--ink-soft);
  text-align: center;
}

.support-zone {
  padding-block: 96px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 25%, color-mix(in srgb, var(--blue) 9%, transparent), transparent 35%),
    var(--bg-soft);
}
.support-heading { align-items: center; }
.secure-label { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.secure-label span { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px var(--green-soft); }
.support-grid { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 22px; align-items: start; }
.signin-card, .support-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.signin-card { overflow: hidden; }
.signin-card > div { padding: 28px; }
.signin-card h3, .support-form h3 { margin: 8px 0 4px; font-size: 22px; }
.signin-card p, .support-form p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.provider-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 51px;
  margin-top: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 740;
  cursor: pointer;
}
.provider-button + .provider-button { margin-top: 9px; }
.provider-button:hover { border-color: var(--ink-faint); background: var(--surface-soft); }
.apple-button { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.apple-button:hover { background: color-mix(in srgb, var(--ink) 90%, transparent); color: var(--bg); }
.apple-mark { font-size: 19px; line-height: 1; }
.google-mark { position: relative; display: block; width: 18px; height: 18px; border: 4px solid #4285f4; border-right-color: #34a853; border-bottom-color: #fbbc05; border-left-color: #ea4335; border-radius: 50%; }
.google-mark::after { content: ""; position: absolute; width: 8px; height: 4px; inset-inline-start: -1px; inset-block-start: 3px; background: currentColor; }
.signin-card small { display: block; margin-top: 17px; color: var(--ink-faint); font-size: 11px; text-align: center; }
.signin-card .signin-notice { margin-top: 14px; text-align: start; }
.demo-button, .text-button {
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 740;
}
.demo-button { width: 100%; min-height: 44px; margin-top: 8px; font-size: 12px; }
.signin-help { border-top: 1px solid var(--line); background: var(--surface-soft); }
.signin-help strong { font-size: 14px; }
.signin-help p { margin-top: 5px; }
.signin-help a { display: inline-block; margin-top: 10px; color: var(--red); font-size: 13px; font-weight: 780; }
.account-card { text-align: center; }
.account-avatar { display: grid; place-items: center; width: 58px; height: 58px; margin: 18px auto 10px; border-radius: 19px; background: var(--blue); color: #fff; font-size: 23px; font-weight: 800; }
.account-card strong, .account-card > span:not(.step-label) { display: block; }
.account-card > span:not(.step-label) { margin-top: 3px; color: var(--ink-faint); font-size: 12px; overflow-wrap: anywhere; }
.account-card .account-link-state {
  display: inline-flex;
  width: fit-content;
  margin: 13px auto 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 790;
}
.account-card .account-link-state[data-kind="app-linked"] { background: var(--green-soft); color: var(--green); }
.account-card .account-link-state[data-kind="preview"] { background: var(--surface-soft); color: var(--ink-soft); }
.account-card .account-link-state[data-kind="suspended"] { background: var(--danger-soft); color: var(--danger); }
.account-card .account-link-note { margin-top: 8px; font-size: 11px; line-height: 1.65; }
.account-card .text-button { margin-top: 15px; min-height: 42px; }

.support-form { padding: 30px; }
.support-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.support-form fieldset:disabled { opacity: .57; }
.form-intro { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; display: block; margin-top: 18px; }
.field > span { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; color: var(--ink); font-size: 13px; font-weight: 760; }
.field em { color: var(--ink-faint); font-size: 10px; font-style: normal; font-weight: 650; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--ink);
  outline: 0;
  transition: border .18s ease, box-shadow .18s ease;
}
.field input, .field select { padding: 10px 13px; }
.field textarea { min-height: 166px; padding: 12px 13px; resize: vertical; line-height: 1.7; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 11%, transparent); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); opacity: .78; }
.field small { position: absolute; inset-inline-start: 10px; inset-block-start: 0; color: var(--ink-faint); font-size: 10px; }
.support-form .account-scope-field {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}
.account-scope-field legend { padding-inline: 6px; color: var(--ink); font-size: 13px; font-weight: 760; }
.account-scope-field legend em { color: var(--ink-faint); font-size: 10px; font-style: normal; font-weight: 650; }
.account-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.account-choice { display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 11px; background: var(--surface); cursor: pointer; }
.account-choice:has(input:checked) { border-color: var(--blue); box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 10%, transparent); }
.account-choice input { width: 18px; height: 18px; margin: 0; accent-color: var(--blue); }
.account-choice span { color: var(--ink); font-size: 13px; font-weight: 700; }
.account-scope-field > small { display: block; margin-top: 10px; color: var(--ink-faint); font-size: 11px; line-height: 1.6; }
.verification-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 82px; margin-top: 20px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); }
.verification-row strong, .verification-row span { display: block; }
.verification-row strong { font-size: 13px; }
.verification-row span { margin-top: 3px; color: var(--ink-faint); font-size: 11px; }
#turnstile-box { min-width: 300px; min-height: 65px; }
.submit-button { width: 100%; min-height: 54px; margin-top: 18px; }
.form-consent { margin-top: 12px !important; text-align: center; font-size: 11px !important; }
.form-consent a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }

.inline-notice {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 650;
}
.inline-notice[data-tone="danger"] { border-color: color-mix(in srgb, var(--red) 35%, var(--line)); background: var(--red-soft); color: var(--red-deep); }
.inline-notice[data-tone="success"] { border-color: color-mix(in srgb, var(--green) 35%, var(--line)); background: var(--green-soft); color: var(--green); }

.tickets { padding-block: 106px; }
.refresh-button { min-height: 44px; font-size: 13px; }
.tickets-signed-out { padding: 44px 22px; border: 1px dashed var(--line-strong); border-radius: var(--radius-md); background: var(--surface-soft); text-align: center; }
.tickets-signed-out strong { font-size: 19px; }
.tickets-signed-out p { margin: 6px 0 15px; color: var(--ink-soft); }
.tickets-signed-out a { color: var(--blue-deep); font-weight: 760; }
.tickets-loading { color: var(--ink-soft); text-align: center; }
.tickets-list { display: grid; gap: 14px; }
.ticket-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.ticket-card header { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.ticket-card header strong, .ticket-card header span { display: block; }
.ticket-card header strong { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; direction: ltr; text-align: right; font-size: 13px; }
.ticket-card header div > span { margin-top: 3px; color: var(--ink-faint); font-size: 11px; }
.ticket-status { padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 780; white-space: nowrap; }
.ticket-status.open { background: var(--blue-soft); color: var(--blue-deep); }
.ticket-status.closed { background: var(--green-soft); color: var(--green); }
.ticket-card h3 { margin: 20px 0 5px; font-size: 18px; }
.ticket-card > p { margin: 0; color: var(--ink-soft); white-space: pre-wrap; }
.ticket-reply { margin-top: 20px; padding: 18px; border-inline-start: 3px solid var(--green); border-radius: 11px; background: var(--green-soft); }
.ticket-reply strong { color: var(--green); }
.ticket-reply time { display: block; color: var(--ink-faint); font-size: 11px; }
.ticket-reply p { margin: 8px 0 0; color: var(--ink-soft); white-space: pre-wrap; }

.help-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  margin-bottom: 100px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--surface), var(--blue-soft));
}
.help-footer-cta h2 { margin: 0; font-size: 25px; }
.help-footer-cta p:not(.eyebrow) { margin: 8px 0 0; color: var(--ink-soft); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  min-height: 160px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer-brand img { width: 112px; color: var(--ink); }
.footer-brand p { margin: 6px 0 0; color: var(--ink-faint); font-size: 12px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; color: var(--ink-soft); font-size: 12px; }
.site-footer nav a:hover { color: var(--blue-deep); }
.copyright { justify-self: end; margin: 0; color: var(--ink-faint); direction: ltr; font-size: 11px; }

/* Account access policy */
.policy-main { padding-bottom: 110px; }
.policy-hero { padding-block: 92px 68px; border-bottom: 1px solid var(--line); }
.policy-kicker { display: flex; align-items: center; gap: 11px; color: var(--red-deep); font-size: 13px; font-weight: 800; }
.policy-kicker span { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 7px var(--red-soft); }
.policy-hero h1 { max-width: 820px; margin: 20px 0 0; font-size: clamp(44px, 7vw, 76px); line-height: 1.14; letter-spacing: -.045em; }
.policy-hero > p:not(.policy-version) { max-width: 820px; margin: 22px 0 0; color: var(--ink-soft); font-size: 19px; }
.policy-version { margin: 26px 0 0; color: var(--ink-faint); font-size: 12px; }
.print-button { min-height: 48px; padding-inline: 12px; }
.policy-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: clamp(42px, 8vw, 96px); padding-top: 70px; }
.policy-toc { position: sticky; inset-block-start: 110px; align-self: start; display: grid; gap: 2px; padding-inline-start: 18px; border-inline-start: 1px solid var(--line); }
.policy-toc strong { margin-bottom: 9px; font-size: 13px; }
.policy-toc a { padding: 6px 0; color: var(--ink-faint); font-size: 12px; }
.policy-toc a:hover { color: var(--red-deep); }
.policy-article { min-width: 0; }
.policy-article section { padding-block: 8px 72px; scroll-margin-top: 100px; }
.policy-article section + section { padding-top: 70px; border-top: 1px solid var(--line); }
.policy-article h2 { margin: 0 0 20px; font-size: clamp(29px, 4vw, 40px); line-height: 1.28; letter-spacing: -.025em; }
.policy-article h3 { margin: 0; font-size: 16px; }
.policy-article p { color: var(--ink-soft); }
.policy-callout { margin-top: 25px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); }
.policy-callout strong { display: block; color: var(--ink); }
.policy-callout p { margin: 5px 0 0; }
.policy-callout.neutral { background: var(--blue-soft); border-color: color-mix(in srgb, var(--blue) 25%, var(--line)); }
.policy-callout.danger { background: var(--red-soft); border-color: color-mix(in srgb, var(--red) 30%, var(--line)); }
.policy-callout.danger strong { color: var(--red-deep); }
.reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.reason-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.reason-grid article > span { color: var(--red-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 800; }
.reason-grid h3 { margin-top: 11px; }
.reason-grid p { margin: 6px 0 0; font-size: 13px; }
.fine-note { font-size: 12px; }
.level-list { display: grid; gap: 0; margin-top: 24px; }
.level-list article { position: relative; display: grid; grid-template-columns: 26px 1fr; gap: 15px; padding-bottom: 28px; }
.level-list article:not(:last-child)::before { content: ""; position: absolute; inset-inline-start: 6px; inset-block: 20px 0; width: 1px; background: var(--line-strong); }
.level-dot { position: relative; z-index: 1; display: block; width: 13px; height: 13px; margin-top: 6px; border: 3px solid var(--surface); border-radius: 50%; box-shadow: 0 0 0 1px var(--line-strong); }
.level-one { background: var(--green); }
.level-two { background: #eaaa08; }
.level-three { background: var(--orange); }
.level-four, .level-five { background: var(--red); }
.level-list strong { font-size: 16px; }
.level-list p { margin: 4px 0 0; }
.availability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.availability-grid > div { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.availability-state { display: inline-block; width: 9px; height: 9px; margin-inline-end: 8px; border-radius: 50%; }
.availability-state.stopped { background: var(--red); }
.availability-state.remains { background: var(--green); }
.availability-grid ul { margin: 13px 0 0; padding-inline-start: 20px; color: var(--ink-soft); font-size: 13px; }
.appeal-steps { display: grid; gap: 18px; margin: 25px 0; padding: 0; list-style: none; }
.appeal-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.appeal-steps li > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--red-soft); color: var(--red-deep); font-weight: 820; }
.appeal-steps p { margin: 3px 0 0; }
.wide-policy-button { margin-top: 20px; }
.policy-links { display: grid; gap: 9px; margin-top: 26px; }
.policy-links a { display: flex; justify-content: space-between; min-height: 50px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--blue-deep); font-weight: 720; }

.not-found-page { display: grid; place-items: center; min-height: 100vh; padding: 24px; }
.not-found-card { width: min(100%, 520px); padding: 46px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md); text-align: center; }
.not-found-card img { width: 132px; margin-inline: auto; }
.error-code { margin: 35px 0 0; color: var(--blue-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; font-weight: 800; }
.not-found-card h1 { margin: 8px 0; font-size: 32px; }
.not-found-card > p:not(.error-code) { color: var(--ink-soft); }
.not-found-card .button { margin-top: 18px; }

@media (max-width: 980px) {
  .header-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 70px; }
  .hero-assurance { display: grid; grid-template-columns: 180px 1fr; gap: 10px 24px; align-items: center; }
  .assurance-orbit { grid-row: 1 / span 2; height: 170px; margin: 0; }
  .hero-assurance ul { grid-column: 1 / -1; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 285px minmax(0, 1fr); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer nav { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 760px) {
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 68px; padding: 10px 14px; }
  .brand img { width: 112px; }
  .brand > span:last-child { display: none; }
  .brand-divider { display: none; }
  .theme-toggle { width: 44px; height: 44px; }
  .hero { gap: 42px; padding-block: 52px 64px; }
  .hero h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .hero-search { grid-template-columns: 22px 1fr; min-height: 58px; padding-inline: 15px; border-radius: 15px; }
  .hero-search input { height: 57px; font-size: 15px; }
  .hero-search kbd { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { padding-inline: 10px; font-size: 13px; }
  .hero-assurance { display: block; padding: 24px; }
  .assurance-orbit { height: 150px; }
  .quick-paths { padding-block: 30px 66px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 104px; }
  .section-heading { display: block; margin-bottom: 24px; }
  .section-heading .text-link { display: inline-block; margin-top: 14px; }
  .answers { padding-block: 68px 82px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-note { position: static; }
  .faq-list summary { min-height: 62px; padding: 15px; font-size: 14px; }
  .faq-list details > p { padding: 0 15px 17px; font-size: 14px; }
  .support-zone { padding-block: 72px; }
  .secure-label { margin-top: 14px; }
  .support-grid { grid-template-columns: 1fr; }
  .signin-card > div { padding: 22px; }
  .support-form { padding: 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .account-choice-grid { grid-template-columns: 1fr; }
  .verification-row { display: block; }
  #turnstile-box { min-width: 0; margin-top: 12px; overflow: hidden; }
  .tickets { padding-block: 76px; }
  .refresh-button { margin-top: 14px; }
  .ticket-card { padding: 18px; }
  .ticket-card header { align-items: flex-start; }
  .help-footer-cta { display: block; margin-bottom: 70px; padding: 24px; }
  .help-footer-cta .button { width: 100%; margin-top: 20px; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .site-footer nav { grid-column: auto; grid-row: auto; }
  .copyright { justify-self: center; }
  .policy-hero { padding-block: 60px 48px; }
  .policy-hero h1 { font-size: 45px; }
  .policy-hero > p:not(.policy-version) { font-size: 16px; }
  .policy-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .policy-actions .print-button { grid-column: 1 / -1; }
  .policy-layout { grid-template-columns: 1fr; padding-top: 48px; }
  .policy-toc { display: none; }
  .policy-article section { padding-bottom: 54px; }
  .policy-article section + section { padding-top: 54px; }
  .reason-grid, .availability-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-actions, .policy-actions { grid-template-columns: 1fr; }
  .policy-actions .print-button { grid-column: auto; }
  .hero-assurance { padding: 20px; }
  .support-form { padding: 16px; }
  .verification-row { margin-inline: -2px; padding: 10px; }
  .ticket-card header { display: block; }
  .ticket-status { display: inline-block !important; margin-top: 10px; }
}

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

@media print {
  .site-header, .site-footer, .policy-actions, .policy-toc { display: none !important; }
  body { background: #fff; color: #000; }
  .policy-main { padding: 0; }
  .policy-hero, .policy-layout { width: 100%; padding: 20px 0; border: 0; }
  .policy-layout { display: block; }
  .policy-article section { break-inside: avoid; }
  .reason-grid article, .policy-callout, .availability-grid > div { border-color: #bbb; box-shadow: none; }
}
