/* ============================================================
   Auralish — shared stylesheet (Hub / Media / Apps / Contact)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── Keyframes ── */
@keyframes heroWord {
  from { opacity: 0; transform: perspective(900px) translateY(52px) rotateX(32deg); filter: blur(4px); }
  to   { opacity: 1; transform: perspective(900px) translateY(0) rotateX(0deg); filter: blur(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pillIn {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-12px) rotate(-2deg); }
}

/* ── Scroll reveal ── */
.reveal      { opacity:0; transform:translateY(28px);  transition:opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-left { opacity:0; transform:translateX(-28px); transition:opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-right{ opacity:0; transform:translateX(28px);  transition:opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; }
.d1 { transition-delay:.1s; } .d2 { transition-delay:.2s; }
.d3 { transition-delay:.3s; } .d4 { transition-delay:.4s; }
.d5 { transition-delay:.5s; }

/* ── Animated entrance helpers ── */
.fade-up      { animation: fadeUp .8s cubic-bezier(.22,1,.36,1) both; }
.hero-word    { display:block; animation: heroWord .9s cubic-bezier(.22,1,.36,1) both; }
.pill-in      { animation: pillIn .6s cubic-bezier(.22,1,.36,1) both; }

/* ── Layout ── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.text-strong { color: #1a1a1a; }
.text-body { color: #666; }

/* ================= NAV ================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.38); }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo span {
  font-size: 1.05rem; font-weight: 700; color: #fff;
  letter-spacing: .14em; text-transform: uppercase;
}
.nav-tabs { display: flex; gap: 3px; }
.nav-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 18px; border-radius: 8px;
  color: rgba(255,255,255,.55);
  font-size: .875rem; font-weight: 500;
  text-decoration: none;
  transition: all .25s cubic-bezier(.22,1,.36,1);
}
.nav-tab img { height: 15px; width: auto; opacity: .8; }
.nav-tab:hover { color: #fff; }
.nav-tab.tab-media:hover { background: rgba(234,194,62,.12); color: #eac23e; transform: perspective(400px) translateY(-3px) rotateX(7deg); }
.nav-tab.tab-apps:hover  { background: rgba(0,91,181,.12); color: #4a90e0; transform: perspective(400px) translateY(-3px) rotateX(7deg); }

.nav-tab.active-hub    { background: #1a6b3c; color: #fff; font-weight: 600; }
.nav-tab.active-hub:hover    { transform: perspective(400px) translateY(-3px) rotateX(7deg); box-shadow: 0 8px 22px rgba(26,107,60,.4); color:#fff; }
.nav-tab.active-media  { background: rgba(234,194,62,.92); color: #1a1a1a; font-weight: 600; }
.nav-tab.active-media:hover  { transform: perspective(400px) translateY(-3px) rotateX(7deg); box-shadow: 0 8px 22px rgba(234,194,62,.4); color:#1a1a1a; }
.nav-tab.active-apps   { background: rgba(0,91,181,.85); color: #fff; font-weight: 600; }
.nav-tab.active-apps:hover   { transform: perspective(400px) translateY(-3px) rotateX(7deg); box-shadow: 0 8px 22px rgba(0,91,181,.4); color:#fff; }
.nav-tab.active-contact{ background: rgba(26,107,60,.85); color: #fff; font-weight: 600; }
.nav-tab.active-contact:hover{ background: #1a6b3c; color:#fff; }

.nav-cta {
  padding: 9px 22px; color: #fff; border-radius: 50px;
  font-size: .875rem; font-weight: 600; text-decoration: none;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta.green  { background: #1a6b3c; }
.nav-cta.green:hover  { background: #145730; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(26,107,60,.45); }
.nav-cta.orange { background: #eac23e; color: #1a1a1a !important; }
.nav-cta.orange:hover { background: #c9a535; color: #1a1a1a !important; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(234,194,62,.45); }
.nav-cta.blue   { background: #005bb5; }
.nav-cta.blue:hover   { background: #004a96; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,91,181,.45); }

/* ── Mobile nav toggle (hamburger) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background .25s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
  display: block;
  width: 19px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .25s ease, width .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile slide-down menu ── */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 190;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.5rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .32s cubic-bezier(.22,1,.36,1), transform .32s cubic-bezier(.22,1,.36,1), visibility .32s;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu .nav-tab {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  width: 100%;
  justify-content: space-between;
  color: rgba(255,255,255,.8);
}
.mobile-menu .nav-tab:last-of-type { border-bottom: none; }
.mobile-menu .nav-tab img { height: 18px; opacity: .9; }
.mobile-menu .nav-tab.active-hub,
.mobile-menu .nav-tab.active-media,
.mobile-menu .nav-tab.active-apps,
.mobile-menu .nav-tab.active-contact { padding-left: 14px; padding-right: 14px; border-radius: 10px; border-bottom: none; margin-bottom: 2px; }
.mobile-menu .nav-cta { margin-top: 1.6rem; text-align: center; justify-content: center; padding: 15px 22px; font-size: 1rem; }
.mm-arrow { opacity: .38; font-size: .95rem; }
body.menu-open { overflow: hidden; }
@media (min-width: 861px) { .mobile-menu { display: none !important; } }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-size: .95rem; font-weight: 600; text-decoration: none;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  border: none; cursor: pointer;
}
.btn-green  { background: #1a6b3c; color: #fff; }
.btn-green:hover  { background: #145730; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(26,107,60,.42); }
.btn-orange { background: #eac23e; color: #1a1a1a; }
.btn-orange:hover { background: #c9a535; color: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(234,194,62,.42); }
.btn-blue   { background: #005bb5; color: #fff; }
.btn-blue:hover   { background: #004a96; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,91,181,.42); }

.btn-outline { border: 1.5px solid #ddd; color: #1a1a1a; font-weight: 500; background: transparent; }
.btn-outline.acc-green:hover  { border-color: #1a6b3c; color: #1a6b3c; transform: translateY(-2px); }
.btn-outline.acc-orange:hover { border-color: #eac23e; color: #eac23e; transform: translateY(-2px); }
.btn-outline.acc-blue:hover   { border-color: #005bb5; color: #005bb5; transform: translateY(-2px); }

.btn-cta-white { padding: 14px 34px; background: #fff; font-weight: 700; border-radius: 50px; text-decoration: none; font-size: .95rem; transition: all .3s cubic-bezier(.22,1,.36,1); display: inline-block; }
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.22); }
.btn-cta-white.txt-green  { color: #1a6b3c; }
.btn-cta-white.txt-orange { color: #eac23e; }
.btn-cta-white.txt-blue   { color: #005bb5; }

.btn-cta-outline {
  padding: 14px 34px; border: 1.5px solid rgba(255,255,255,.38); color: #fff;
  border-radius: 50px; font-size: .95rem; font-weight: 600; text-decoration: none;
  transition: all .3s; display: inline-block;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.09); transform: translateY(-3px); }

/* Dark-text outline variant — for light-background CTA sections (e.g. gold) */
.btn-cta-outline-dark {
  padding: 14px 34px; border: 1.5px solid rgba(0,0,0,.28); color: rgba(0,0,0,.75);
  border-radius: 50px; font-size: .95rem; font-weight: 600; text-decoration: none;
  transition: all .3s; display: inline-block;
}
.btn-cta-outline-dark:hover { border-color: rgba(0,0,0,.65); background: rgba(0,0,0,.07); transform: translateY(-3px); }

.btn-enquire { padding: 10px 20px; background: #005bb5; color: #fff; border-radius: 50px; font-size: .82rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: all .3s; display: inline-block; }
.btn-enquire:hover { background: #004a96; transform: translateY(-1px); }

.btn-store { padding: 9px 18px; background: #005bb5; color: #fff; border-radius: 50px; font-size: .8rem; font-weight: 600; text-decoration: none; transition: all .3s; display: inline-block; }
.btn-store:hover { background: #004a96; transform: translateY(-1px); }
.btn-store-outline { padding: 9px 18px; border: 1.5px solid rgba(0,91,181,.3); color: #005bb5; border-radius: 50px; font-size: .8rem; font-weight: 600; text-decoration: none; transition: all .3s; display: inline-block; }
.btn-store-outline:hover { border-color: #005bb5; background: rgba(0,91,181,.05); }

/* ================= HERO SERVICE PANEL ROWS ================= */
.svc-row {
  display: flex; align-items: center; gap: 14px; padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  cursor: default; transition: all .22s; border-radius: 9px;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { padding-left: 8px; margin: 0 -8px; padding-right: 8px; }
.svc-row.acc-green:hover  { background: rgba(26,107,60,.05); }
.svc-row.acc-orange:hover { background: rgba(234,194,62,.05); }
.svc-row.acc-blue:hover   { background: rgba(0,91,181,.05); }
.svc-row-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.svc-row-title { font-size: .93rem; font-weight: 600; color: #0a0a0a; }
.svc-row-sub { font-size: .78rem; color: #888; margin-top: 1px; }
.svc-row-arrow { font-size: .9rem; opacity: .45; }

/* ================= TILT CARDS ================= */
.tilt-card { transition: all .4s cubic-bezier(.22,1,.36,1); will-change: transform; }
.tilt-card.acc-orange:hover { border-color: rgba(234,194,62,.35) !important; }
.tilt-card.acc-blue:hover   { border-color: rgba(0,91,181,.3) !important; }
.tilt-card.acc-green:hover  { border-color: rgba(26,107,60,.3) !important; }

/* ================= TAG PILLS ================= */
.tag { font-size: .72rem; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.tag.acc-orange { background: rgba(234,194,62,.08); color: #eac23e; }
.tag.acc-blue   { background: rgba(0,91,181,.08); color: #005bb5; }

/* ================= BADGE PILL (division eyebrow) ================= */
.badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 50px; }
.badge-pill img { height: 14px; width: auto; }

/* ================= FOOTER ================= */
.site-footer { background: #080808; border-top: 1px solid rgba(255,255,255,.055); }
.footer-link { font-size: .82rem; color: rgba(255,255,255,.42); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: #fff; }

/* ================= RESPONSIVE ================= */

/* Tablet / small laptop: collapse nav into hamburger before tabs get cramped */
@media (max-width: 860px) {
  .nav-tabs            { display: none !important; }
  .nav-inner .nav-cta  { display: none !important; }
  .nav-toggle          { display: flex !important; }
}

@media (max-width: 900px) {
  .hero-grid    { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .hero-section { min-height: auto !important; padding-bottom: 3.5rem; }
  .div-grid     { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .process-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-cols  { flex-direction: column !important; gap: 2rem !important; }
  .svc-grid     { grid-template-columns: 1fr 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
}
@media (max-width: 600px) {
  .process-grid    { grid-template-columns: 1fr !important; }
  .hero-btns       { flex-direction: column !important; }
  .svc-grid-2      { grid-template-columns: 1fr !important; }
  .svc-grid        { grid-template-columns: 1fr !important; }
  .footer-links    { flex-direction: column !important; gap: 1.5rem !important; }
  .svc-card-row    { grid-template-columns: 1fr !important; text-align: center; }
  .featured-app-card { grid-template-columns: 1fr !important; text-align: center; justify-items: center; }
  .form-row        { grid-template-columns: 1fr !important; }
}

/* Small phones: tighten gutters and card padding */
@media (max-width: 480px) {
  .wrap,
  [style*="padding:7rem 2rem"],
  [style*="padding:6rem 2rem"],
  [style*="padding:5rem 2rem"],
  [style*="padding:3.8rem 2rem 2rem"],
  [style*="padding:3rem 2rem 2rem"],
  [style*="padding:1rem 2rem 7rem"],
  [style*="padding:10rem 2rem 5rem"] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .nav-inner { padding: 0 1.25rem; }
}

/* ================= DARK THEME (applies site-wide, all pages) ================= */
body[data-theme="dark"] { background: #0a0a0a !important; }

/* Headings default to light text; accent-colored spans inside keep their own inline color */
body[data-theme="dark"] h1,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3 { color: #f0f0f0 !important; }

/* Inline literal text colors authored for light surfaces -> light-on-dark equivalents.
   Scoped to exact "color:#xxxxxx" substrings so CTA bands using rgba(255,255,255,x) are untouched. */
body[data-theme="dark"] [style*="color:#080808"],
body[data-theme="dark"] [style*="color:#0a0a0a"],
body[data-theme="dark"] [style*="color:#1a1a1a"] { color: #f0f0f0 !important; }
body[data-theme="dark"] [style*="color:#666"],
body[data-theme="dark"] [style*="color:#777"],
body[data-theme="dark"] [style*="color:#5a5a5a"],
body[data-theme="dark"] [style*="color:#888"],
body[data-theme="dark"] [style*="color:#999"],
body[data-theme="dark"] [style*="color:#aaa"] { color: #8a8a8a !important; }

/* Inline literal surface backgrounds -> dark equivalents */
body[data-theme="dark"] [style*="background:#fff"]    { background: #0f0f0f !important; }
body[data-theme="dark"] [style*="background:#f8f8f8"] { background: #161616 !important; }
body[data-theme="dark"] [style*="background:#f9f9f9"] { background: #141414 !important; }
body[data-theme="dark"] [style*="background:#fef9e7"] { background: #1a1500 !important; }
body[data-theme="dark"] [style*="background:#edf3fc"] { background: #050e1c !important; }
body[data-theme="dark"] [style*="background:#f3fbf6"] { background: #0d1f11 !important; }
body[data-theme="dark"] [style*="background:#fef2f2"] { background: #2a1414 !important; }

/* Inline literal borders */
body[data-theme="dark"] [style*="border:1px solid #eee"],
body[data-theme="dark"] [style*="border-bottom:1px solid #f0f0f0"] { border-color: #232323 !important; }
body[data-theme="dark"] [style*="border:1px dashed #ddd"] { border-color: #333 !important; }

/* Class-based fallback for plain (non-accent) tilt-cards, e.g. process step cards.
   Necessary because the JS tilt handler rewrites these cards' inline "style" attribute on
   hover (transform/box-shadow), which makes browsers re-serialize the whole attribute and
   breaks any dark-mode rule that matches inline style text via [style*="..."] selectors. */
body[data-theme="dark"] .tilt-card { background-color: #161616 !important; border-color: #232323 !important; }

/* Accent-tinted card surfaces win over the generic fallback above via higher specificity */
body[data-theme="dark"] .tilt-card.acc-orange { background: #1a1600 !important; border-color: rgba(234,194,62,.25) !important; }
body[data-theme="dark"] .tilt-card.acc-blue   { background: #070f1f !important; border-color: rgba(0,91,181,.25) !important; }
body[data-theme="dark"] .tilt-card.acc-green  { background: #0d1f11 !important; border-color: rgba(26,107,60,.25) !important; }

/* Components styled via CSS class rather than inline style */
body[data-theme="dark"] .svc-row-title { color: #e0e0e0 !important; }
body[data-theme="dark"] .text-strong { color: #e5e5e5 !important; }
body[data-theme="dark"] .text-body { color: #8a8a8a !important; }
body[data-theme="dark"] .btn-outline   { border-color: #333 !important; color: #ccc !important; }
body[data-theme="dark"] .hub-panel     { background: #0d1f11 !important; border-color: rgba(26,107,60,.22) !important; }
body[data-theme="dark"] .visual-card   { background: #161616 !important; }
body[data-theme="dark"] .app-mini      { background: #161616 !important; }
body[data-theme="dark"] .form-field    { background-color: #161616 !important; border-color: #2e2e2e !important; color: #eee !important; }
body[data-theme="dark"] .form-field::placeholder { color: #555 !important; }
body[data-theme="dark"] .form-label    { color: #999 !important; }
body[data-theme="dark"] .info-link     { color: #f0f0f0 !important; }
body[data-theme="dark"] .social-link   { color: #999 !important; }
body[data-theme="dark"] .social-link:hover { color: #fff !important; }
body[data-theme="dark"] select.form-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

/* ================= CONTACT FORM ================= */
input:focus, textarea:focus, select:focus { outline: none; border-color: #1a6b3c !important; box-shadow: 0 0 0 3px rgba(26,107,60,.1); }
input::placeholder, textarea::placeholder { color: #bbb; }
select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem !important; cursor: pointer;
}
.form-field { width: 100%; padding: 12px 16px; border: 1.5px solid #e5e5e5; border-radius: 10px; font-size: .95rem; background-color: #fff; color: #1a1a1a; font-family: inherit; transition: border-color .2s; }
.form-label { display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #555; margin-bottom: .5rem; }
.submit-btn { width: 100%; padding: 15px 30px; background: #1a6b3c; color: #fff; border: none; border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all .3s cubic-bezier(.22,1,.36,1); letter-spacing: .01em; }
.submit-btn:hover:not(:disabled) { background: #145730; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(26,107,60,.42); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; }
.info-link { font-size: 1.05rem; font-weight: 600; color: #0a0a0a; text-decoration: none; display: block; margin-bottom: .3rem; transition: color .2s; }
.info-link.acc-green:hover  { color: #1a6b3c; }
.info-link.acc-orange:hover { color: #eac23e; }
.info-link.acc-blue:hover   { color: #005bb5; }
.social-link { font-size: .88rem; color: #555; text-decoration: none; transition: color .2s; }
.social-link:hover { color: #1a1a1a; }

/* ================= THEME TOGGLE ================= */
.theme-toggle { display: flex; gap: 2px; background: rgba(255,255,255,.08); border-radius: 20px; padding: 3px; }
.theme-toggle button { padding: 4px 14px; border-radius: 16px; border: none; cursor: pointer; font-size: .72rem; font-weight: 600; font-family: inherit; background: transparent; color: rgba(255,255,255,.4); transition: all .25s; }
.theme-toggle button.active { background: #fff; color: #1a1a1a; }

/* ================= LEGAL / POLICY DOCUMENT ================= */
.policy-section { margin-bottom: 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid #f0f0f0; }
.policy-section:last-of-type { border-bottom: none; }
.policy-section h2 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; color: #080808; margin-bottom: .9rem; }
.policy-section p { font-size: .96rem; line-height: 1.72; color: #666; margin-bottom: .8rem; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul { margin: 0 0 .8rem; padding-left: 1.3rem; }
.policy-section li { font-size: .96rem; line-height: 1.72; color: #666; margin-bottom: .5rem; }
.policy-section li:last-child { margin-bottom: 0; }
body[data-theme="dark"] .policy-section { border-bottom-color: #232323 !important; }
body[data-theme="dark"] .policy-section h2 { color: #f0f0f0 !important; }
body[data-theme="dark"] .policy-section p,
body[data-theme="dark"] .policy-section li { color: #8a8a8a !important; }
