/* ==========================================================================
   Drawpin legal pages — safety orange, charcoal and warm paper identity
   ========================================================================== */

:root {
  /* Website brand tokens */
  --navy: #252822;
  --work-white: #F6F3EC;
  --orange: #B83B0B;
  --orange-hover: #943008;
  --orange-glow: rgba(246, 107, 36, 0.28);
  --yellow: #FFD43B;
  --blue: #146CC5;
  --green: #15805D;
  --green-bright: #45C796;
  --red: #C9363E;
  --steel: #62645C;
  --steel-light: #62645C;
  
  --bg-page: var(--work-white);
  --bg-card: #FFFFFF;
  --bg-subtle: #EEE8DA;
  --border-light: #DEDED3;
  --border-dark: #4B4F45;

  --text-dark: var(--navy);
  --text-muted: var(--steel);

  /* Sizing & Structure */
  --max-width: 1160px;
  --header-height: 88px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-page);
  color: var(--steel);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
}

p {
  color: var(--steel);
}

strong {
  color: var(--navy);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Background Grid & Glow (Hero Pattern from Reference)
   -------------------------------------------------------------------------- */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background-image: 
    linear-gradient(to right, rgba(37, 40, 34, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 40, 34, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000000 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle at 10% 10%, rgba(246, 107, 36, 0.1) 0%, rgba(246, 215, 189, 0.08) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   Layout & Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 90px 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 620px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--steel);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 15px;
}

.btn-xl {
  padding: 14px 24px;
  font-size: 15px;
}

.btn-primary {
  background: #F66B24;
  color: var(--navy);
  border-radius: 5px;
  min-height: 43px;
  font-size: 12px;
  box-shadow: none;
}

.btn-primary:hover {
  background: #FF8548;
  box-shadow: none;
}

.btn-arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease);
}

.btn:hover .btn-arrow-circle {
  transform: translateX(3px);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--navy);
  border-color: var(--border-light);
  box-shadow: 0 2px 8px rgba(37, 40, 34, 0.04);
}

.btn-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--navy);
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.btn-store-text small {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.85;
}

.btn-store-text strong {
  font-size: 14px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: #FFFFFF;
  border: 1px solid rgba(246, 107, 36, 0.3);
  border-radius: var(--radius-full);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(246, 107, 36, 0.06);
}

/* --------------------------------------------------------------------------
   Header & Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: rgba(246, 243, 236, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--steel);
}

.main-nav a:hover {
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   Hero Section (Matching hero.png Reference)
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

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

.hero h1 {
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-accent-text {
  color: var(--orange);
}

.hero-lede {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--steel);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.trust-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--steel-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(69, 199, 150, 0.2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   Hero Visual Showcase: Large White Rounded Card & Dual Mockup
   -------------------------------------------------------------------------- */
.hero-showcase-wrapper {
  position: relative;
  width: 100%;
}

.hero-white-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 44px 30px 40px;
  box-shadow: 0 25px 70px rgba(37, 40, 34, 0.08), 0 0 0 1px rgba(37, 40, 34, 0.04);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phones-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base Phone Mockup */
.mockup-phone {
  position: absolute;
  transition: transform 0.4s var(--ease);
}

.phone-frame {
  position: relative;
  background: var(--navy);
  border: 5px solid #3C2D4E;
  border-radius: 36px;
  padding: 6px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone-dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 14px;
  background: #000000;
  border-radius: 12px;
  z-index: 10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #000000;
}

.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* Front Phone (Upright & in Focus) */
.phone-front {
  width: 245px;
  left: 30px;
  top: 20px;
  z-index: 2;
}

/* Back Phone (Angled & Tilted Behind) */
.phone-back {
  width: 228px;
  right: 25px;
  top: 4px;
  transform: rotate(8.5deg);
  z-index: 1;
  opacity: 0.92;
}

.hero-white-card:hover .phone-front {
  transform: translateY(-8px);
}

.hero-white-card:hover .phone-back {
  transform: rotate(11deg) translate(8px, -6px);
  opacity: 1;
}

/* Floating Bottom Stat Card (Exact match to hero.png) */
.floating-stat-card {
  position: absolute;
  bottom: -18px;
  right: 18px;
  z-index: 10;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 16px 36px rgba(37, 40, 34, 0.12);
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 220px;
}

.stat-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-pin-badge {
  font-size: 14px;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
}

.stat-subtext {
  font-size: 11px;
  color: var(--steel);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   How It Works (3 Steps)
   -------------------------------------------------------------------------- */
.how-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-badge {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--orange);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Features Grid
   -------------------------------------------------------------------------- */
.features-section {
  background: var(--bg-page);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(37, 40, 34, 0.03);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-orange { background: rgba(246, 107, 36, 0.12); color: var(--orange); }
.icon-yellow { background: rgba(255, 212, 59, 0.2); color: #8a6500; }
.icon-green { background: rgba(21, 128, 93, 0.12); color: var(--green); }
.icon-blue { background: rgba(20, 108, 197, 0.12); color: var(--blue); }

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Clarity Side-by-Side Section
   -------------------------------------------------------------------------- */
.clarity-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.clarity-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.clarity-copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 16px;
}

.clarity-copy > p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.clarity-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clarity-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(69, 199, 150, 0.25);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.clarity-visual {
  display: flex;
  justify-content: center;
}

.phone-stand-mockup {
  width: 250px;
  background: var(--navy);
  border: 4px solid #3C2D4E;
  border-radius: 34px;
  padding: 6px;
  box-shadow: 0 20px 45px rgba(37, 40, 34, 0.18);
  overflow: hidden;
}

.phone-stand-mockup img {
  border-radius: 26px;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-page);
}

.faq-accordion {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(37, 40, 34, 0.02);
  transition: border-color 0.2s var(--ease);
}

.faq-item.active {
  border-color: var(--orange);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--steel);
  transition: transform 0.2s var(--ease);
}

.faq-toggle-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-toggle-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
}

/* --------------------------------------------------------------------------
   Download CTA
   -------------------------------------------------------------------------- */
.cta-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.cta-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(145deg, #252822 0%, #3C2D4E 100%);
  border-radius: var(--radius-xl);
  padding: 60px 32px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(37, 40, 34, 0.15);
  color: #FFFFFF;
}

.cta-card h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 3.8vw, 44px);
  margin-bottom: 14px;
}

.cta-app-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #D1C6DC;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 12px;
  color: #BBAEC8;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  background: var(--bg-page);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-text {
  font-size: 13px;
  color: var(--steel);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--steel);
}

.footer-nav a:hover {
  color: var(--navy);
}

.footer-copy {
  font-size: 12px;
  color: var(--steel-light);
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .clarity-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .site-header .main-nav {
    display: none;
  }

  .steps-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-white-card {
    padding: 30px 16px;
    min-height: 440px;
  }

  .hero-phones-stage {
    height: 400px;
    max-width: 320px;
  }

  .phone-front {
    width: 185px;
    left: 10px;
    top: 15px;
  }

  .phone-back {
    width: 170px;
    right: 8px;
    top: 5px;
  }

  .floating-stat-card {
    bottom: -12px;
    right: 8px;
    padding: 10px 14px;
    max-width: 180px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Legal & Policy Pages (Privacy & Terms)
   -------------------------------------------------------------------------- */
.legal-page {
  background-color: var(--bg-page);
}

.legal-main {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 90px;
}

.legal-card {
  padding: 40px 0;
  max-width: 760px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 20px;
  transition: color 0.2s var(--ease);
}

.back-link:hover {
  color: var(--orange);
}

.legal-header h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--steel-light);
}

.privacy-highlight-box {
  background: rgba(246, 107, 36, 0.08);
  border-left: 3px solid #F66B24;
  border-radius: 0;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.highlight-icon {
  font-size: 24px;
  line-height: 1;
}

.highlight-text > strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.highlight-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
  margin: 0;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.legal-body section h2 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.legal-body section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 12px;
}

.legal-body section ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.legal-body section li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--steel);
}

.legal-body section li strong {
  color: var(--navy);
}

.legal-email-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

.legal-email-link:hover {
  color: var(--orange-hover);
}

@media (max-width: 768px) {
  .legal-card { padding: 20px 0; }
  :root { --header-height: 72px; }
  .header-container { gap: 12px; }
  .btn-sm { padding: 8px 12px; font-size: 10px; }
  .brand .brand-wordmark { width: 120px; }
  .legal-main { padding-top: calc(var(--header-height) + 24px); padding-bottom: 60px; }
}

.brand .brand-wordmark { width: 166px; height: auto; border-radius: 0; }
:focus-visible { outline: 3px solid #b83b0b; outline-offset: 4px; }
@media (max-width: 480px) { .brand .brand-wordmark { width: 138px; } .footer-nav { flex-wrap: wrap; gap: 12px 20px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }

/* Legal reading layout shares the landing page's restrained brand accents. */
.legal-header .back-link { display: flex; width: fit-content; margin-bottom: 32px; }
.legal-header .eyebrow-pill {
  padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none;
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
}
.legal-body section p, .legal-body section li { font-size: 16px; line-height: 1.75; }
.legal-body section h2 { font-size: 24px; }
.legal-body { overflow-wrap: anywhere; }
.footer-nav a[aria-current="page"] { color: var(--orange); }
.skip-link {
  position: fixed; top: 10px; left: 15px; z-index: 200;
  padding: 12px 20px; background: var(--navy); color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
@media (max-width: 360px) {
  .header-container { padding-inline: 16px; gap: 8px; }
  .brand .brand-wordmark { width: 110px; }
  .btn-sm { gap: 8px; }
  .privacy-highlight-box { padding: 20px 16px; gap: 12px; }
}
