/* =========================================================
   DaStrata — Brand Design System
   No external font/CDN dependencies by design (see README).
   ========================================================= */

:root {
  --navy: #1e2761;
  --navy-2: #2a3878;
  --navy-3: #141c4d;
  --ice: #cadcfc;
  --ice-2: #e8f0ff;
  --gold: #b8862b;
  --gold-2: #d4a94f;
  --cardbg: #f5f7fc;
  --white: #ffffff;
  --text: #222222;
  --grey: #6b6b6b;
  --grey-light: #9aa0b4;
  --border: #e3e6f0;

  --font-serif: Cambria, Georgia, "Times New Roman", serif;
  --font-sans: Calibri, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(30, 39, 97, 0.08);
  --shadow-lg: 0 20px 50px rgba(30, 39, 97, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  font-weight: 700;
}

p {
  margin: 0 0 1em 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

/* ---------- Layout ---------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--ice);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--card {
  background: var(--cardbg);
}

.kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px 0;
  display: block;
}

.section--dark .kicker {
  color: var(--gold-2);
}

.eyebrow-lead {
  font-size: 20px;
  color: var(--grey);
  max-width: 640px;
  margin: 0 0 0.5em 0;
}

.section--dark .eyebrow-lead {
  color: var(--ice);
}

.lede {
  font-size: 19px;
  color: var(--grey);
  max-width: 700px;
}

.section--dark .lede {
  color: var(--ice);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  white-space: nowrap;
}

.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex: none;
}

.brand__division {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 1px solid var(--border);
  padding-left: 8px;
  margin-left: 2px;
}

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

.main-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.main-nav__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s ease;
}

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

.utility-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.utility-link:hover {
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 28px 20px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 10px 0;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@media (max-width: 860px) {
  .main-nav__links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--gold);
  color: var(--navy-3);
  box-shadow: 0 8px 20px rgba(184, 134, 43, 0.35);
}

.btn--primary:hover {
  background: var(--gold-2);
}

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost {
  background: none;
  color: var(--navy);
  padding: 14px 6px;
}

.section--dark .btn--ghost {
  color: var(--ice);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px 0;
}

.hero--studio {
  background: linear-gradient(160deg, var(--navy-3) 0%, var(--navy) 55%, var(--navy-2) 100%);
  color: var(--white);
}

.hero__glow {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 52px;
  max-width: 820px;
  color: var(--white);
}

.hero--light h1 {
  color: var(--navy);
}

.hero p.hero-sub {
  font-size: 20px;
  max-width: 620px;
  color: var(--ice);
}

.hero--light p.hero-sub {
  color: var(--grey);
}

.hero--light {
  background: var(--cardbg);
}

/* ---------- Cards / Rows ---------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .grid--3,
  .grid--4,
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--cardbg);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.card--navy {
  background: var(--navy);
  color: var(--ice);
}

.card--navy h3 {
  color: var(--white);
}

.card--elevated {
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card--featured {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.card--featured h3,
.card--featured .price {
  color: var(--white);
}

.icon-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.icon-row:last-child {
  margin-bottom: 0;
}

.icon-row__text h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.icon-row__text p {
  color: var(--grey);
  margin: 0;
  font-size: 16px;
}

.section--dark .icon-row__text p {
  color: var(--ice);
}

.icon-circle {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-circle--navy {
  background: var(--navy);
  color: var(--white);
}

.icon-circle--gold {
  background: var(--gold);
  color: var(--navy-3);
}

.icon-circle--sm {
  width: 40px;
  height: 40px;
}

/* ---------- Pricing table ---------- */

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

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .card--featured {
    transform: none;
  }
}

.pricing-card {
  border-radius: var(--radius);
  padding: 34px 28px;
  background: var(--cardbg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card .tier-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 0;
}

.pricing-card .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-serif);
}

.pricing-card .timeline {
  font-size: 14px;
  color: var(--grey);
  font-weight: 600;
}

.pricing-card p.desc {
  color: var(--grey);
  font-size: 15px;
  flex-grow: 1;
}

.card--featured p.desc,
.card--featured .timeline {
  color: var(--ice);
}

/* Combined-class rule wins the source-order tie against .pricing-card above */
.pricing-card.card--featured {
  background: var(--navy);
  color: var(--white);
}

.pricing-card.card--featured h3,
.pricing-card.card--featured .price {
  color: var(--white);
}

.pricing-card.card--featured .tier-tag {
  color: var(--gold-2);
}

.pricing-card.card--featured p.desc,
.pricing-card.card--featured .timeline {
  color: var(--ice);
}

.build-with-note {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  background: var(--ice-2);
  border: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--navy);
}

/* ---------- Table (comparison / FAQ) ---------- */

table.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

table.compare th,
table.compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

table.compare th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

table.compare tr:nth-child(even) td {
  background: var(--cardbg);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  color: var(--navy);
}

.faq-item p {
  color: var(--grey);
  margin: 0;
}

/* ---------- Quote / callout ---------- */

.callout {
  border-radius: var(--radius);
  padding: 30px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.callout blockquote {
  margin: 0 0 12px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}

.pullquote-link {
  font-weight: 700;
  color: var(--navy);
}

.pullquote-link:hover {
  text-decoration: underline;
}

.big-quote {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.35;
  color: var(--navy);
  max-width: 780px;
}

.section--dark .big-quote {
  color: var(--white);
}

.closing-line {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.35;
}

/* ---------- Divider band ---------- */

.divider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* ---------- Beliefs list ---------- */

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

.dot-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16.5px;
}

.dot-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex: none;
}

/* ---------- Placeholder / TBD styling ---------- */

.tbd {
  color: var(--navy-2);
  background: linear-gradient(transparent 60%, rgba(184, 134, 43, 0.28) 60%);
  padding: 0 2px;
  font-style: normal;
}

/* On dark or navy-card backgrounds, the light-highlight treatment above is
   illegible — swap to a gold text + translucent-white highlight instead. */
.section--dark .tbd,
.card--navy .tbd,
.pricing-card.card--featured .tbd {
  color: var(--gold-2);
  background: linear-gradient(transparent 55%, rgba(255, 255, 255, 0.22) 55%);
}

.section--dark .tbd-badge,
.card--navy .tbd-badge,
.pricing-card.card--featured .tbd-badge {
  color: var(--gold-2);
  border-color: var(--gold-2);
}

.tbd-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  border: 1px dashed var(--grey-light);
  border-radius: 999px;
  padding: 8px 16px;
}

/* ---------- Form ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 560px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-note {
  font-size: 13px;
  color: var(--grey-light);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: var(--ice-2);
  border: 1px solid var(--ice);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 15px;
  margin-top: 16px;
}

.form-success.is-visible {
  display: block;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-3);
  color: var(--ice);
  padding: 56px 0 32px 0;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
}

.site-footer__tagline {
  color: var(--grey-light);
  font-size: 14px;
  margin-top: 6px;
}

.site-footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.site-footer__links a {
  font-size: 14.5px;
  color: var(--ice);
}

.site-footer__links a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 13px;
  color: var(--grey-light);
}

/* ---------- Misc ---------- */

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 38px;
  }
  .closing-line {
    font-size: 26px;
  }
  .big-quote {
    font-size: 23px;
  }
  .section {
    padding: 64px 0;
  }
}

.divisions-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .divisions-split {
    grid-template-columns: 1fr;
  }
  .divisions-split .divider-arrow {
    transform: rotate(90deg);
  }
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--ice-2);
  border-radius: 999px;
  padding: 6px 14px;
}

.section--dark .badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ice);
}
