/* =====================================================
   STRATA GLOBAL STYLESHEET
   ===================================================== */

/* ---------- CSS VARIABLES ---------- */

:root {
  --paper: #f6f1e6;
  --ink: #111111;
  --muted: #5a5a5a;
  --line: rgba(0,0,0,0.12);
  --card: rgba(255,255,255,0.65);
  --dark: #141312;
  --dark2: #0f0e0d;
  --gold: #b08a2d;
  --brand: #b38b2d;
  --border: rgba(0,0,0,.08);

  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,0.08);
  --shadow2: 0 18px 45px rgba(0,0,0,0.12);
  --max: 1120px;
}

/* ---------- RESET ---------- */

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; opacity: 0.96; }

/* ---------- LAYOUT ---------- */

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(246,241,230,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 10px 0;   /* tighter vertical padding */
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  height: 84px;      /* as requested */
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: rgba(17,17,17,0.75);
}

.nav a {
  padding: 8px 6px;
  border-radius: 10px;
}

.nav a:hover {
  background: rgba(0,0,0,0.04);
  text-decoration: none;
}

.header-cta {
  margin-left: auto;
  flex: 0 0 auto;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.42);
  color: var(--ink);
  font-weight: 650;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  transition: transform 0.15s, filter 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-lg { padding: 12px 16px; }

.btn-primary {
  background: linear-gradient(180deg, rgba(176,138,45,0.92), rgba(158,122,38,0.92));
  color: #101010;
  border: 1px solid rgba(0,0,0,0.22);
  box-shadow: 0 10px 26px rgba(179,139,45,0.22);
}

.btn-primary:hover { filter: brightness(1.02); }

.btn-ghost {
  background: rgba(255,255,255,0.22);
  border-color: rgba(0,0,0,0.14);
}

.btn-ghost:hover { background: rgba(255,255,255,0.30); }

/* =====================================================
   HERO
   ===================================================== */

.hero {
  padding: 56px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.28);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(17,17,17,0.70);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display {
  margin: 18px 0 24px;   /* increased bottom margin: extra space below headline */
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.accent { color: var(--gold); }

.lead {
  font-size: 18px;
  color: rgba(17,17,17,0.82);
  max-width: 56ch;
  margin: 0 0 18px;
}

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

/* "Takes ~7 minutes…" line */
.cta-subnote {
  margin: 18px 0 0;    /* increased top margin: extra space above subnote */
  font-size: 14px;
  color: rgba(17,17,17,0.70);
}

.reassurance {
  margin: 14px 0 0;
  font-size: 13.8px;
  color: rgba(17,17,17,0.60);
  line-height: 1.55;
  max-width: 70ch;
}

.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: 18px;
}

.trust-item {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.28);
  border-radius: 12px;
  padding: 12px 14px;
}

.trust-label {
  display: block;
  font-size: 12px;
  color: rgba(17,17,17,0.55);
  margin-bottom: 4px;
}

.trust-value {
  display: block;
  font-size: 13.6px;
  color: rgba(17,17,17,0.82);
  font-weight: 650;
}

/* Hero mock */
.hero-mock {
  justify-self: end;
  max-width: 520px;
  width: 100%;
}

.mock-card {
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
}

.mock-title {
  margin-left: 8px;
  font-size: 13px;
  color: rgba(0,0,0,0.70);
  font-weight: 600;
}

.mock-image {
  width: 100%;
  height: auto;
  display: block;
}

.mock-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.55);
  color: rgba(0,0,0,0.62);
  font-size: 12px;
}

/* =====================================================
   SECTIONS
   ===================================================== */

.section {
  padding: 56px 0;
}

.section-title {
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.section-intro {
  margin: 0 0 24px;
  max-width: 72ch;
  color: rgba(17,17,17,0.78);
  font-size: 16px;
  line-height: 1.65;
}

/* ---------- WHY PILLARS ---------- */

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

.pillar {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.40);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
}

.pillar-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  background: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.pillar-title { margin: 0 0 6px; font-size: 16px; }
.pillar-text { margin: 0; color: rgba(17,17,17,0.70); font-size: 14px; }

/* ---------- DARK SECTION ---------- */

.section-dark {
  background: radial-gradient(1200px 600px at 30% 0%, rgba(176,138,45,0.18), transparent 60%),
              linear-gradient(180deg, var(--dark), var(--dark2));
  color: #f6f1e6;
}

.section-title-dark { color: #f6f1e6; }
.section-intro-dark { color: rgba(246,241,230,0.74); }

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.deliverable-item {
  border: 1px solid rgba(246,241,230,0.16);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px;
}

.deliverable-icon {
  display: inline-block;
  font-weight: 700;
  color: rgba(246,241,230,0.7);
  border: 1px solid rgba(246,241,230,0.18);
  border-radius: 12px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.deliverable-item h3 { margin: 0 0 6px; font-size: 16px; }
.deliverable-item p { margin: 0; color: rgba(246,241,230,0.72); font-size: 14px; }

.dark-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.reassurance-dark { color: rgba(246,241,230,0.70); font-size: 14px; }

/* ---------- HOW IT WORKS ---------- */

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

.step {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.36);
  border-radius: var(--radius);
  padding: 16px;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.44);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- FAQ ---------- */

.faq {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.40);
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

.faq-content {
  margin-top: 10px;
  color: rgba(17,17,17,0.72);
  font-size: 14px;
  line-height: 1.65;
}

/* ---------- CLOSING CTA ---------- */

.closing {
  padding: 66px 0 74px;
  border-top: 1px solid var(--line);
}

.closing-inner {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.42);
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: center;
}

.closing-title {
  margin: 0 0 10px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.01em;
}

.closing-text {
  margin: 0 0 18px;
  color: rgba(17,17,17,0.72);
}

.closing-signoff {
  margin: 14px 0 0;
  color: rgba(17,17,17,0.62);
  font-size: 14px;
}

/* ---------- FOOTER ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(255,255,255,0.18);
}

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

.footer-brand { font-weight: 700; }
.footer-muted { color: rgba(17,17,17,0.65); }
.footer-muted.small { font-size: 13px; text-align: right; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mock { justify-self: start; max-width: 560px; }
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-row { flex-wrap: wrap; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-muted.small { text-align: left; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 28px); }
  .brand-mark { height: 64px; }
  .hero { padding-top: 42px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
