@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.2/src/regular/style.css");

:root {
  --navy: #14263a;
  --navy-2: #203851;
  --amber: #f5a623;
  --amber-soft: #f7b85c;
  --cream: #f4f2ed;
  --paper: #ffffff;
  --ink-soft: #4e5b68;
  --line: #d9d4c9;
  --slate: #c9d2db;
  --max: 1280px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--navy);
  font-family: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
site-header, site-footer, main { display: block; max-width: 100%; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #2e4560;
  background: var(--navy);
  color: var(--cream);
}
.nav-shell {
  width: min(var(--max), calc(100% - 64px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.wordmark::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: 5px;
  left: -2px;
  height: 4px;
  background: var(--amber);
}
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 15px; font-weight: 500; }
.site-nav .nav-link, .nav-dropdown-button, .site-nav .phone-link {
  min-height: 38px;
  padding: 9px 0 7px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  transition: color 150ms ease, border-color 150ms ease;
}
.site-nav .nav-link:hover, .nav-dropdown-button:hover, .nav-dropdown-button[aria-expanded="true"], .site-nav .phone-link:hover {
  border-color: var(--amber);
  color: #fff;
}
.nav-dropdown-button { gap: 8px; }
.nav-dropdown-button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.site-nav .phone-link { color: var(--cream); font-weight: 600; }
.site-nav .nav-login {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid #596b7d;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  font-weight: 600;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}
.site-nav .nav-login:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); color: #fff; }
.site-nav .nav-cta {
  min-height: 42px;
  padding: 12px 18px;
  border: 1px solid var(--amber);
  background: var(--amber);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--navy); color: var(--amber); }
.mobile-menu-button {
  display: none;
  min-width: 74px;
  padding: 10px 12px;
  border: 1px solid #4b5d71;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}
.dropdown-panel {
  position: absolute;
  z-index: 5;
  right: 0;
  left: 0;
  top: 100%;
  border-bottom: 3px solid var(--amber);
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 20px 40px rgba(7, 18, 30, 0.18);
}
.dropdown-panel[hidden] { display: none; }
.products-inner, .about-inner { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; padding: 28px 0 34px; }
.products-label, .eyebrow, .section-kicker, .docket-label, .video-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.products-label { padding-bottom: 16px; border-bottom: 1px solid var(--line); color: #5c6874; }
.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 36px; padding-top: 22px; }
.product-link { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; align-items: start; }
.product-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #c8c2b6;
  color: #a86500;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.product-copy { display: flex; flex-direction: column; gap: 3px; padding-top: 1px; }
.product-copy strong { font-size: 17px; letter-spacing: -0.01em; }
.product-copy span { color: var(--ink-soft); font-size: 14px; line-height: 1.4; }
.product-link:hover .product-icon { border-color: var(--navy); background: var(--navy); color: var(--amber); }
.product-link:hover strong { color: #a86500; }
.about-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px 28px; padding-top: 22px; }
.about-link { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; align-items: start; padding: 4px 0; }
.about-link:hover .product-icon { border-color: var(--navy); background: var(--navy); color: var(--amber); }
.about-link:hover strong { color: #a86500; }

.feature-hero { position: relative; overflow: hidden; background: var(--navy); color: var(--cream); }
.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 64px));
  min-height: 610px;
  margin: 0 auto;
  padding: 82px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .82fr);
  align-items: center;
  gap: 72px;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.eyebrow { color: var(--amber); }
.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -0.045em;
}
.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--slate);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.48;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 24px;
  border: 1px solid var(--amber);
  font-size: 17px;
  font-weight: 600;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.button-primary { background: var(--amber); color: var(--navy); }
.button-primary:hover { background: var(--navy); color: var(--amber); }
.button-secondary { border-color: #4b5d71; color: var(--cream); }
.button-secondary:hover { border-color: #fff; color: #fff; }
.hero-docket {
  position: relative;
  padding: 34px;
  border: 1px solid #607084;
  background: rgba(20, 38, 58, .76);
  box-shadow: 18px 18px 0 var(--amber);
}
.hero-docket::before {
  content: "JOB SHEET";
  position: absolute;
  top: -15px;
  right: 26px;
  padding: 7px 10px;
  background: var(--cream);
  color: var(--navy);
  font: 700 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
}
.docket-label { color: #8c9aa8; }
.docket-title { margin: 11px 0 26px; font-size: clamp(27px, 3vw, 38px); font-weight: 600; line-height: 1.1; letter-spacing: -.025em; }
.docket-rows { display: flex; flex-direction: column; }
.docket-row { display: grid; grid-template-columns: 94px 1fr; gap: 18px; padding: 15px 0; border-top: 1px solid #40556d; }
.docket-row span { color: #8c9aa8; font: 600 11px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.docket-row strong { color: var(--cream); font-size: 16px; line-height: 1.35; }
.hero-rule { height: 8px; background: var(--amber); }

.video-section { background: var(--cream); }
.section-inner { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; padding: 92px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, .7fr) minmax(320px, 1fr); gap: 56px; align-items: end; margin-bottom: 38px; }
.section-kicker { margin-bottom: 12px; color: #697580; }
.section-heading h2, .outcomes h2, .process h2, .faq h2, .compliance h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -.035em;
}
.section-heading p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--cream);
  display: grid;
  place-items: center;
}
.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed #607084;
}
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background: repeating-linear-gradient(135deg, transparent 0 31px, #fff 32px, transparent 33px 64px);
}
.video-placeholder-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; padding: 40px; }
.video-play { width: 72px; height: 72px; border: 2px solid var(--amber); border-radius: 50%; display: grid; place-items: center; }
.video-play::before { content: ""; margin-left: 5px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid var(--amber); }
.video-label { color: var(--amber); }
.video-placeholder strong { font-size: clamp(25px, 3vw, 38px); letter-spacing: -.025em; }
.video-placeholder small { max-width: 470px; color: var(--slate); font-size: 15px; line-height: 1.5; }

.outcomes { border-top: 1px solid var(--line); background: #fff; }
.outcome-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 48px; }
.outcome-header p { max-width: 480px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.55; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--navy); border-bottom: 1px solid var(--navy); }
.outcome { min-height: 260px; padding: 32px 30px 36px 0; }
.outcome + .outcome { padding-left: 30px; border-left: 1px solid var(--line); }
.outcome-number { color: #a6afb8; font: 700 13px/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.outcome h3 { margin: 56px 0 12px; font-size: 26px; line-height: 1.1; letter-spacing: -.025em; }
.outcome p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.58; }

.process { background: var(--navy); color: var(--cream); }
.process .section-inner { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 80px; }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro p { margin: 20px 0 0; color: var(--slate); font-size: 18px; line-height: 1.6; }
.process-steps { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: 74px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid #40556d; }
.process-step:last-child { border-bottom: 1px solid #40556d; }
.process-step b { color: var(--amber); font: 700 14px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace; }
.process-step h3 { margin: 0 0 9px; font-size: 26px; line-height: 1.15; }
.process-step p { margin: 0; color: var(--slate); font-size: 17px; line-height: 1.58; }

.compliance { background: #e9e5dc; }
.compliance-box { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 64px; padding: 48px; border: 1px solid var(--navy); background: var(--cream); }
.compliance-copy { display: flex; flex-direction: column; gap: 16px; }
.compliance-copy p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.check-list { display: flex; flex-direction: column; }
.check-item { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid var(--line); font-size: 17px; line-height: 1.45; }
.check-item:last-child { border-bottom: 1px solid var(--line); }
.check-item::before { content: "✓"; color: #a86500; font-weight: 700; }
.legal-note { margin-top: 14px; color: #697580; font-size: 13px; line-height: 1.5; }

.faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); gap: 72px; }
.faq-intro p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.faq-list { border-bottom: 1px solid var(--navy); }
.faq-list details { border-top: 1px solid var(--navy); }
.faq-list summary { position: relative; padding: 24px 54px 24px 0; cursor: pointer; list-style: none; font-size: 21px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: #697580; font-size: 28px; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-answer { max-width: 720px; padding: 0 60px 24px 0; color: var(--ink-soft); font-size: 17px; line-height: 1.62; }

.final-cta { background: var(--amber); color: var(--navy); }
.final-cta .section-inner { display: flex; justify-content: space-between; align-items: center; gap: 48px; padding-top: 72px; padding-bottom: 72px; }
.final-cta h2 { max-width: 700px; margin: 0; font-size: clamp(40px, 5vw, 68px); line-height: .96; letter-spacing: -.04em; }
.final-cta p { max-width: 650px; margin: 18px 0 0; font-size: 19px; line-height: 1.5; }
.final-cta .button-primary { flex: none; border-color: var(--navy); background: var(--navy); color: var(--cream); }
.final-cta .button-primary:hover { background: transparent; color: var(--navy); }

.site-footer { background: var(--navy); color: var(--slate); }
.footer-grid { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; padding: 58px 0 34px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 56px; }
.footer-brand p { max-width: 340px; margin: 18px 0; font-size: 15px; line-height: 1.6; }
.aus-line { display: flex; align-items: center; gap: 10px; color: var(--cream); font-weight: 600; }
.aus-line img { width: 42px; height: 21px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; }
.footer-heading { grid-column: 1 / -1; margin-bottom: 5px; color: #8c9aa8; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a { font-size: 15px; }
.footer-links a:hover { color: var(--amber-soft); }
.footer-bottom { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; padding: 20px 0 38px; border-top: 1px solid #2e4560; display: flex; justify-content: space-between; gap: 24px; color: #8c9aa8; font-size: 13px; }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 58px; }
  .hero-docket { max-width: 640px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-nav { gap: 15px; }
  .site-nav .phone-link { display: none; }
  .section-heading, .process .section-inner, .compliance-box, .faq-layout { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .nav-shell, .products-inner, .about-inner, .hero-inner, .section-inner, .footer-grid, .footer-bottom { width: min(100% - 40px, var(--max)); }
  .nav-shell { min-height: 70px; }
  .wordmark { font-size: 23px; }
  .mobile-menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 28px 20px 34px;
    border-bottom: 3px solid var(--amber);
    background: var(--navy);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-link, .nav-dropdown-button, .site-nav .phone-link { width: 100%; padding: 13px 0; text-align: left; }
  .site-nav .phone-link { display: block; }
  .site-nav .nav-login, .site-nav .nav-cta { width: 100%; justify-content: center; text-align: center; }
  .site-nav .nav-login { margin-top: 10px; }
  .dropdown-panel { position: fixed; top: 70px; max-height: calc(100vh - 70px); overflow-y: auto; }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-inner { min-height: 0; padding: 66px 0 74px; }
  .hero-copy h1 { font-size: clamp(46px, 14.5vw, 64px); }
  .hero-docket { margin-right: 12px; padding: 28px 24px; box-shadow: 12px 12px 0 var(--amber); }
  .section-inner { padding: 72px 0; }
  .section-heading { gap: 20px; }
  .video-placeholder { min-height: 0; }
  .outcome-header { align-items: flex-start; flex-direction: column; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome { min-height: 0; padding: 28px 0; }
  .outcome + .outcome { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .outcome h3 { margin-top: 28px; }
  .process .section-inner { gap: 42px; }
  .process-step { grid-template-columns: 48px 1fr; }
  .compliance-box { padding: 28px 22px; gap: 36px; }
  .faq-layout { gap: 34px; }
  .final-cta .section-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

/* ==========================================================================
   Legal pages (privacy.html, terms.html)
   ========================================================================== */
.legal-hero { background: #14263A; color: #F4F2ED; }
.legal-hero .section-inner { padding: 76px 0 64px; }
.legal-hero .eyebrow { color: #F5A623; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.legal-hero h1 { margin: 18px 0 0; font-size: clamp(38px, 4.4vw, 62px); font-weight: 700; line-height: 1.02; letter-spacing: -.03em; }
.legal-hero p { margin: 20px 0 0; max-width: 640px; color: #C9D2DB; font-size: 18px; line-height: 1.6; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 32px; margin-top: 28px; color: #8C9AA8; font-size: 15px; font-weight: 500; }
.legal-hero-rule { height: 8px; background: #F5A623; }

.legal-body { background: #F4F2ED; color: #14263A; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: 56px 72px; padding: 72px 0 88px; align-items: start; }
.legal-toc { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2px; }
.legal-toc-label { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #D9D4C9; color: #5C6874; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.legal-toc a { padding: 7px 0; color: #4E5B68; font-size: 15px; font-weight: 500; line-height: 1.4; border-bottom: 1px solid transparent; }
.legal-toc a:hover { color: #14263A; border-bottom-color: #F5A623; }

.legal-content { max-width: 720px; }
.legal-content section { scroll-margin-top: 96px; padding-bottom: 40px; }
.legal-content section + section { border-top: 1px solid #D9D4C9; padding-top: 40px; }
.legal-content h2 { margin: 0 0 18px; font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.legal-content h3 { margin: 26px 0 10px; font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.legal-content p { margin: 0 0 16px; font-size: 17px; line-height: 1.65; color: #33495E; }
.legal-content ul { margin: 0 0 18px; padding: 0; list-style: none; display: grid; gap: 10px; }
.legal-content li { position: relative; padding-left: 20px; font-size: 17px; line-height: 1.6; color: #33495E; }
.legal-content li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; background: #F5A623; }
.legal-content a { color: #14263A; font-weight: 600; border-bottom: 1px solid #14263A; }
.legal-content a:hover { color: #A86500; border-color: #A86500; }
.legal-content strong { font-weight: 600; color: #14263A; }

.legal-callout { margin: 0 0 18px; padding: 20px 24px; background: #FFFFFF; border-left: 3px solid #F5A623; }
.legal-callout p:last-child { margin-bottom: 0; }
.legal-table { width: 100%; margin: 0 0 18px; border-collapse: collapse; font-size: 16px; }
.legal-table th, .legal-table td { padding: 12px 14px; text-align: left; border: 1px solid #D9D4C9; line-height: 1.5; vertical-align: top; }
.legal-table th { background: #EDEAE1; font-weight: 600; }
.legal-table-scroll { overflow-x: auto; margin-bottom: 18px; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 72px; }
  .legal-toc { position: static; }
}
@media (max-width: 720px) {
  .legal-hero .section-inner { padding: 56px 0 48px; }
  .legal-content p, .legal-content li { font-size: 16.5px; }
}
