:root {
  color-scheme: light;
  --paper: #f8f3e9;
  --paper-strong: #efe5d2;
  --ink: #171410;
  --muted: #6c6256;
  --navy: #294966;
  --navy-dark: #1d354b;
  --green: #207958;
  --brass: #bf701c;
  --line: rgba(23, 20, 16, 0.12);
  --shadow: 0 24px 70px rgba(54, 43, 29, 0.12);
  font-family: Inter, ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 4%, rgba(191, 112, 28, 0.12), transparent 26rem),
    linear-gradient(145deg, #fbf8f1 0%, var(--paper) 48%, #fff 100%);
  min-height: 100vh;
  line-height: 1.58;
}

a { color: inherit; }

.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; font-size: 1.2rem; }

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(41, 73, 102, 0.24);
}

.brand-mark svg { width: 23px; height: 23px; }

.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 0.95rem; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--navy); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  min-height: 680px;
  padding: 56px 0 90px;
}

.eyebrow { color: var(--brass); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.2rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 9px; }

.lede { max-width: 620px; font-size: clamp(1.15rem, 2vw, 1.42rem); color: var(--muted); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; background: var(--navy); color: white; text-decoration: none; font-weight: 760; }
.button.secondary { background: rgba(41, 73, 102, 0.09); color: var(--navy); }

.trust { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 34px; color: var(--muted); font-size: 0.92rem; font-weight: 650; }
.trust span::before { content: "\2713"; color: var(--green); margin-right: 8px; font-weight: 900; }

.phone-stage { position: relative; min-height: 620px; display: grid; place-items: center; }
.phone-stage::before { content: ""; position: absolute; width: 92%; aspect-ratio: 1; border-radius: 50%; background: rgba(41, 73, 102, 0.08); filter: blur(2px); }
.phone { position: absolute; width: min(290px, 64vw); border: 8px solid #151515; border-radius: 48px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.phone img { display: block; width: 100%; }
.phone.one { transform: translate(-95px, 12px) rotate(-5deg); }
.phone.two { transform: translate(104px, -16px) rotate(6deg); }

.section { padding: 100px 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,0.72); box-shadow: 0 15px 45px rgba(54,43,29,0.07); }
.card p { margin-bottom: 0; color: var(--muted); }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 22px; color: var(--navy); background: rgba(41,73,102,0.10); font-weight: 900; }

.legal-wrap { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 110px; }
.legal-hero { padding: 58px 0 38px; border-bottom: 1px solid var(--line); margin-bottom: 50px; }
.legal-hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.updated { color: var(--muted); }
.legal-section { padding: 23px 0; border-bottom: 1px solid var(--line); }
.legal-section h2 { font-size: 1.65rem; margin-bottom: 12px; }
.legal-section p, .legal-section li { color: #554d43; }
.legal-section ul, .legal-section ol { padding-left: 1.25rem; }
.notice { margin: 26px 0; padding: 20px 22px; border-radius: 18px; border-left: 4px solid var(--green); background: rgba(32,121,88,0.08); }

.faq { display: grid; gap: 12px; }
details { border: 1px solid var(--line); background: rgba(255,255,255,0.76); border-radius: 18px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 760; }
details p { color: var(--muted); margin-bottom: 4px; }

footer { border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 30px 0 44px; font-size: 0.9rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { text-decoration: none; }

@media (max-width: 820px) {
  .nav-links { gap: 13px; }
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 30px; }
  .hero-copy { text-align: center; }
  .lede { margin-inline: auto; }
  .actions, .trust { justify-content: center; }
  .phone-stage { min-height: 570px; }
  .grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav { padding: 18px 0; }
  .nav-links a:first-child { display: none; }
  h1 { font-size: 3.1rem; }
  .phone { width: 225px; border-width: 6px; border-radius: 38px; }
  .phone.one { transform: translate(-52px, 4px) rotate(-5deg); }
  .phone.two { transform: translate(60px, -6px) rotate(6deg); }
  .phone-stage { min-height: 505px; }
  .section { padding: 72px 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

