:root {
  --warm-white: #f4efe8;
  --surface: #ede5db;
  --surface-soft: #fbf8f3;
  --espresso: #0e0f10;
  --near-black: #070809;
  --charcoal: #1a1d1f;
  --charcoal-2: #24282b;
  --muted: #6f6a63;
  --teal: #2a8c87;
  --deep-teal: #175e5a;
  --copper: #b96a3d;
  --soft-copper: #d39a73;
  --digital-blue: #3f8fe8;
  --sky-blue: #9dccf5;
  --line: #d9d2c7;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 8, 9, 0.11);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 232, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 210, 199, 0.9);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--digital-blue));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(42, 140, 135, 0.22);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { color: var(--espresso); letter-spacing: -0.03em; font-size: 1.05rem; }
.brand-text small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.desktop-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.desktop-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--charcoal-2);
  font-size: 0.92rem;
  font-weight: 700;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { background: rgba(42, 140, 135, 0.1); color: var(--deep-teal); }
.header-cta { padding: 12px 17px; border-radius: 999px; background: var(--near-black); color: var(--white); font-weight: 800; font-size: 0.9rem; }
.mobile-toggle { display: none; margin-left: auto; border: 0; background: var(--white); border-radius: 14px; width: 46px; height: 42px; padding: 10px; box-shadow: 0 8px 24px rgba(7,8,9,0.08); }
.mobile-toggle span { display: block; height: 2px; background: var(--espresso); margin: 5px 0; border-radius: 999px; }
.mobile-menu { border-top: 1px solid var(--line); background: var(--warm-white); }
.mobile-menu-inner { padding: 18px 0 24px; }
.mobile-menu nav { display: grid; gap: 8px; margin-bottom: 16px; }
.mobile-menu a { padding: 13px 12px; border-radius: 14px; background: var(--surface-soft); font-weight: 800; }

main { min-height: 60vh; }
.hero { padding: 96px 0 72px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -200px -20vw auto auto; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(63,143,232,0.24), rgba(42,140,135,0.08) 45%, transparent 70%); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.03fr 0.97fr; align-items: center; gap: 54px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: var(--deep-teal); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg, var(--copper), var(--digital-blue)); }
h1, h2, h3 { color: var(--espresso); line-height: 1.05; letter-spacing: -0.045em; margin: 0; }
h1 { font-size: clamp(3rem, 7vw, 5.9rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.03em; }
.lede { font-size: clamp(1.15rem, 2vw, 1.38rem); color: var(--charcoal-2); margin: 24px 0 0; max-width: 680px; }
p { color: var(--muted); margin: 14px 0 0; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 22px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--teal); color: var(--white); box-shadow: 0 15px 34px rgba(42, 140, 135, 0.24); }
.button.dark { background: var(--near-black); color: var(--white); }
.button.secondary { background: var(--white); color: var(--espresso); border-color: var(--line); }
.button.blue { background: linear-gradient(135deg, var(--digital-blue), var(--teal)); color: var(--white); }
.button.full { width: 100%; }

.visual-card { min-height: 520px; border-radius: var(--radius); background: linear-gradient(145deg, rgba(7,8,9,0.9), rgba(23,94,90,0.85)), radial-gradient(circle at 70% 18%, rgba(63,143,232,0.45), transparent 28%), linear-gradient(135deg, var(--surface), var(--warm-white)); box-shadow: var(--shadow); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; color: var(--white); overflow: hidden; position: relative; }
.visual-card::after { content: ""; position: absolute; inset: auto -20% -25% 25%; height: 220px; background: radial-gradient(circle, rgba(185,106,61,0.38), transparent 65%); }
.visual-panel { position: relative; z-index: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 22px; padding: 20px; backdrop-filter: blur(10px); }
.visual-panel strong { display: block; font-size: 2.8rem; line-height: 1; color: var(--white); letter-spacing: -0.05em; }
.visual-panel span { display: block; color: rgba(255,255,255,0.76); margin-top: 8px; }
.metric-stack { display: grid; gap: 12px; position: relative; z-index: 1; }
.metric { display: flex; justify-content: space-between; gap: 20px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.15); }
.metric b { color: var(--sky-blue); }

.section { padding: 82px 0; }
.section.alt { background: var(--surface); }
.section.dark { background: var(--near-black); color: var(--white); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark p, .section.dark .lede { color: rgba(255,255,255,0.72); }
.section-heading { max-width: 810px; margin-bottom: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: var(--surface-soft); border: 1px solid rgba(217,210,199,0.9); border-radius: var(--radius-sm); padding: 28px; box-shadow: 0 8px 30px rgba(7,8,9,0.04); }
.card.dark-card { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.icon { width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: rgba(42,140,135,0.12); color: var(--deep-teal); font-weight: 950; margin-bottom: 16px; }
.icon.blue { background: rgba(63,143,232,0.14); color: var(--digital-blue); }
.icon.copper { background: rgba(185,106,61,0.13); color: var(--copper); }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-radius: var(--radius); overflow: hidden; background: var(--line); box-shadow: var(--shadow); }
.stat { background: var(--surface-soft); padding: 28px; }
.stat strong { display: block; color: var(--espresso); font-size: 2.1rem; line-height: 1; letter-spacing: -0.05em; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; }
.list { display: grid; gap: 14px; margin-top: 22px; }
.list-item { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.list-item::before { content: ""; flex: 0 0 10px; width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--digital-blue)); }
.feature-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { border: 1px solid var(--line); background: var(--surface-soft); border-radius: 999px; padding: 9px 13px; color: var(--charcoal-2); font-weight: 800; font-size: 0.9rem; }
.page-hero { padding: 88px 0 52px; border-bottom: 1px solid var(--line); }
.page-hero .lede { max-width: 820px; }
.cta-panel { border-radius: var(--radius); background: linear-gradient(135deg, var(--espresso), var(--deep-teal)); padding: clamp(32px, 6vw, 64px); color: var(--white); overflow: hidden; position: relative; }
.cta-panel::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -130px; top: -170px; background: radial-gradient(circle, rgba(63,143,232,0.4), transparent 65%); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: var(--white); max-width: 760px; }
.cta-panel p { color: rgba(255,255,255,0.75); max-width: 680px; }
.form-card { background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 14px; }
label { font-weight: 900; color: var(--espresso); font-size: 0.92rem; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; margin-top: 7px; font: inherit; background: var(--white); color: var(--charcoal); }
textarea { min-height: 140px; resize: vertical; }
.site-footer { padding: 62px 0 28px; background: var(--near-black); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer-grid p, .footer-bottom { color: rgba(255,255,255,0.62); }
.footer-grid h3 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.footer-grid a:not(.brand) { display: block; color: rgba(255,255,255,0.72); margin: 9px 0; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text small { color: rgba(255,255,255,0.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 42px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; font-size: 0.9rem; }

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero-grid, .split, .split.reverse, .grid-2 { grid-template-columns: 1fr; }
  .visual-card { min-height: 430px; }
  .grid-3, .stat-band, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .hero { padding: 62px 0 50px; }
  .page-hero { padding: 58px 0 38px; }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .grid-3, .stat-band, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions, .section-actions { flex-direction: column; }
  .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .header-inner { min-height: 70px; }
}
