*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F2044;
  --navy-mid: #1A3A6B;
  --navy-soft: #3B5FA0;
  --maroon: #7B1C2E;
  --maroon-dark: #5C1321;
  --gray-dark: #374151;
  --gray-mid: #6B7280;
  --gray-light: #D1D5DB;
  --gray-border: #E5E7EB;
  --off-white: #F3F4F6;
  --warm-white: #F8FAFF;
  --white: #FFFFFF;
  --font-display: 'Titan One', cursive;
  --font-nav: 'Sour Gummy', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --success: #16A34A;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--gray-dark);
  min-height: 100vh;
}

/* ── ARLO LOGO TREATMENT ── */
.logo-a   { font-size: 1em; font-family: var(--font-display); font-style: normal; }
.logo-rlo { font-size: 1em; font-family: var(--font-display); font-style: normal; }

/* ── COMING SOON MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,32,68,0.45); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border: 1px solid var(--gray-border); border-radius: 18px; padding: 40px 48px; text-align: center; box-shadow: 0 16px 48px rgba(15,32,68,0.18); max-width: 360px; width: 90%; animation: modalIn 0.2s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(-12px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-icon { display: flex; justify-content: center; margin-bottom: 16px; color: var(--maroon); }
.modal-icon svg { width: 44px; height: 44px; }
.modal-title { font-family: var(--font-display); font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.modal-sub { font-family: 'Quicksand', sans-serif; font-size: 14px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 24px; }
.modal-close { font-family: var(--font-nav); font-size: 14px; font-weight: 600; background: var(--navy); color: var(--white); border: none; padding: 10px 28px; border-radius: 10px; cursor: pointer; transition: background 0.15s; }
.modal-close:hover { background: var(--navy); color: var(--white); }

/* ── NAV ── */
nav { background: var(--white); border-bottom: 1px solid var(--gray-border); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-right { display: flex; align-items: center; gap: 48px; }
.nav-logo { font-family: var(--font-display); font-size: 26px; color: var(--navy); letter-spacing: 0.02em; text-decoration: none; display: inline-flex; align-items: center; height: 44px; }
.nav-logo:hover { color: var(--navy); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 48px; list-style: none; margin: 0; padding: 0; }
.nav-links li { margin: 0; }
.nav-links a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; line-height: 1; vertical-align: middle; font-family: var(--font-nav); font-size: 14px; font-weight: 500; color: var(--gray-dark); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }

.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; justify-content: center; gap: 5px; min-height: 44px; line-height: 1; }
.nav-item > a::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s; }
.nav-item:hover > a::after { transform: rotate(225deg) translateY(-2px); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-4px); padding-top: 12px; min-width: 180px; opacity: 0; pointer-events: none; transition: opacity 0.15s, transform 0.15s; z-index: 200; }
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-inner { background: var(--white); border: 1px solid var(--gray-border); border-radius: 12px; box-shadow: 0 8px 24px rgba(15,32,68,0.12); padding: 6px; }
.dropdown a { display: block; font-family: var(--font-nav); font-size: 14px; font-weight: 500; color: var(--gray-dark); padding: 9px 14px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background 0.1s, color 0.1s; }
.dropdown a:hover { background: var(--off-white); color: var(--navy); text-decoration: none; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; line-height: 1; font-family: var(--font-nav); font-size: 14px; font-weight: 600; background: var(--maroon); color: var(--white); padding: 0 22px; border-radius: 10px; border: none; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.nav-cta:hover { background: var(--maroon); color: var(--white); text-decoration: none; }

/* ── HERO TAGLINE ── */
.hero-tagline { background: var(--warm-white); padding: 12px 32px; display: flex; align-items: center; justify-content: center; gap: 16px; font-family: var(--font-nav); font-size: clamp(17px, 1.82vw, 25px); font-weight: 800; color: var(--maroon); letter-spacing: 0.04em; text-transform: uppercase; }
.tagline-rule { flex-shrink: 0; width: 40px; height: 2px; background: var(--maroon); border-radius: 2px; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--gray-border); background: var(--white); padding: 32px; text-align: center; font-size: 13px; color: var(--gray-mid); }
.footer-logo { font-family: var(--font-display); font-size: 18px; color: var(--navy); display: block; margin-bottom: 8px; }
footer nav { background: none; border: none; position: static; display: inline-flex; gap: 24px; margin: 12px 0; }
footer nav a { font-family: var(--font-nav); font-size: 13px; color: var(--gray-mid); text-decoration: none; }
footer nav a:hover { color: var(--navy); }

/* ── GLOBAL CONTENT STYLES ── */
html { scroll-behavior: smooth; }

a { color: var(--navy); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--maroon); text-decoration: underline; }

p, ul, ol { margin: 0 0 1.5rem; }
ul, ol { padding-left: 1.45rem; }
li { margin-bottom: 0.85rem; }

.page-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 36px;
  text-align: center;
}
.page-header-eyebrow {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-header h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 0 auto 20px;
  max-width: 900px;
}
.page-header-meta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

.trust-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--off-white);
  border-radius: 14px;
  padding: 12px 16px;
}

.policy-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 72px;
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(15,32,68,0.05);
}
.toc-label {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.toc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.toc-list a {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.15s ease, color 0.15s ease;
}
.toc-list a:hover {
  background: var(--off-white);
  color: var(--maroon);
}
.toc-divider { height: 1px; background: var(--gray-border); margin: 20px 0; }
.toc-note {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.75;
}

.policy-content {
  min-width: 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray-dark);
}
.policy-section {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--gray-border);
}
.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.policy-section-label {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
}
.policy-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 2.5vw, 2.7rem);
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.18;
}
.policy-section h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 14px;
  line-height: 1.35;
}
.policy-section p,
.policy-section ul,
.policy-section ol {
  margin: 0 0 1.35rem;
}
.policy-section ul,
.policy-section ol { padding-left: 1.45rem; }
.policy-section li { margin-bottom: 0.85rem; }
.policy-section strong { color: var(--navy); }

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15,32,68,0.05);
}
.contact-card-label {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
}
.contact-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-card p {
  font-size: 15px;
  color: var(--gray-dark);
  margin-bottom: 22px;
  line-height: 1.85;
}
.contact-card-btn {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 12px 26px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.contact-card-btn:hover { background: var(--navy); color: var(--white); text-decoration: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .page-header { padding: 42px 24px 28px; }
  .page-header h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .trust-strip { padding: 18px 24px; gap: 12px; }
  .policy-layout { grid-template-columns: 1fr; padding: 38px 20px 50px; }
  .toc { position: static; top: auto; box-shadow: none; border-radius: 16px; }
  .toc-list a { padding: 12px 14px; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .page-header, .trust-strip, .policy-layout { padding-left: 16px; padding-right: 16px; }
  .trust-strip { justify-content: flex-start; }
  .toc { padding: 20px; }
  .contact-card { padding: 22px; }
}
