@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #1a3458;
  --bronze: #986027;
  --bronze-light: #d9a15e;
  --bronze-deep: #8a5a24;
  --bg-warm: #fcf7f3;
  --bg-warm-alt: #f9f4f0;
  --border: #e0d8d2;
  --text-muted: #5a6a7e;
  --white: #ffffff;
  --font: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font);
  background: var(--bg-warm);
  color: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main, .hero, section, .cta-strip { flex-shrink: 0; }

main { flex: 1; }

/* NAV */

.site-header { position: sticky; top: 0; z-index: 100; }

nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 56px;
}

.nav-logo {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 32px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  text-decoration: none;
  transition: color 200ms ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--bronze);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 0 16px !important;
  font-weight: 600;
  transition: transform 200ms ease !important;
}

.nav-cta:hover { transform: scale(1.02); color: var(--white); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px 8px;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 200ms ease;
}

.nav-mobile {
  display: none;
  background: var(--navy);
  border-top: 0.5px solid rgba(255,255,255,0.1);
  flex-direction: column;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  text-decoration: none;
  padding: 0 1.25rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  min-height: 52px;
  display: flex;
  align-items: center;
  transition: color 200ms ease;
}

.nav-mobile a:hover { color: var(--white); }
.nav-mobile a:last-child { border-bottom: none; }

/* BUTTONS */

.btn-gold {
  background: var(--bronze);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 200ms ease;
  min-height: 44px;
}

.btn-gold:hover { transform: scale(1.02); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 200ms ease;
  min-height: 44px;
}

.btn-navy:hover { transform: scale(1.02); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 200ms ease;
  min-height: 44px;
}

.btn-white:hover { transform: scale(1.02); }

/* HERO */

.hero {
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  border-bottom: 0.5px solid var(--border);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 840px;
  width: 100%;
}

.hero-left {
  flex: 1;
  border-left: 3px solid var(--bronze);
  padding-left: 1.5rem;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 260px;
  border-radius: 12px;
  border: 0.5px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1000ms ease;
}

.hero-img.active { opacity: 1; }

.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.hero p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* SECTIONS */

section { padding: 2.1rem 2.5rem; }
section.alt { background: var(--bg-warm-alt); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 1.75rem;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.section-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-header--wide {
  max-width: 760px;
}

/* CARDS */

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-grid .card {
  flex: 1 1 280px;
  max-width: 300px;
}

.card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 200ms ease;
}

.card-icon {
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 13px;
  color: var(--bronze);
  font-weight: 500;
  text-decoration: none;
}

.card-link:hover { text-decoration: underline; }

/* VALUE PROPS */

.props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.props-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 960px;
}

.prop {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.prop-icon {
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: center;
}

.prop h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.prop p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* QUOTE */

.quote-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.quote {
  border-left: 3px solid var(--bronze);
  padding: 1rem 1.75rem;
}

.quote p {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 0.6rem;
}

.quote-attr {
  font-size: 13px;
  color: var(--bronze);
  font-weight: 500;
}

/* CTA STRIP */

.cta-strip {
  background: var(--navy);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: center;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 840px;
  width: 100%;
}

.cta-strip h2 {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

/* FOOTER */

footer {
  background: var(--navy);
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-links a:hover { color: var(--white); }

.footer-email {
  color: var(--bronze-light);
  font-size: 12px;
}

/* PRICING TEASER */

.pricing-teaser {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.pricing-teaser p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* PRODUCT-LED SECTION */

.pld-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.pld-wrap h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pld-wrap p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* WORKFLOW IMAGE */

.workflow-wrap {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.workflow-img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image:
    linear-gradient(to right, transparent, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent, black 5%, black 95%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent, black 5%, black 95%, transparent 100%),
    linear-gradient(to bottom, transparent, black 5%, black 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

@media (max-width: 768px) {
  .workflow-img {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 768px) {
  .workflow-wrap {
    max-width: calc(100vw - 2.5rem);
  }
}

/* WORKFLOW PLACEHOLDER */

.workflow-placeholder {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-warm-alt);
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}

.workflow-placeholder strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.workflow-placeholder p {
  font-size: 13px;
  color: var(--text-muted);
}

/* TABS */

.tab-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 760px;
  margin: 0 auto 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1.25rem;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 200ms ease;
  min-height: 44px;
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-panel-intro {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.tab-panel-cta {
  text-align: center;
  margin-top: 1.75rem;
}

@media (max-width: 768px) {
  .tab-bar { gap: 0.6rem; }
  .tab-btn { flex: 1 1 auto; }
}

/* PROCESS STEPS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.step-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* AI AGENTS */

.agent-tagline {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -0.75rem;
  margin-bottom: 1.75rem;
}

.agent-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.agent-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.agent-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  flex: 1 1 260px;
  max-width: 280px;
  transition: border-color 200ms ease;
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.agent-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.agent-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.agent-header-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.agent-role {
  font-size: 12px;
  color: var(--text-muted);
}

.agent-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .agent-card { flex-basis: 100%; max-width: 420px; }
}

/* INSTITUTION CARDS */

.inst-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}

/* MISSION */

.mission-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.mission-title {
  font-size: 52px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.mission-wrap blockquote {
  border-left: 3px solid var(--bronze);
  padding: 1rem 1.75rem;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.85;
  font-style: italic;
}

.mission-wrap blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  color: var(--bronze);
  letter-spacing: 0.02em;
}

/* TEAM */

.team-grid {
  max-width: 640px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 0.5px solid var(--border);
}

.team-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 13px;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* FORMS */

.form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.form-wrap:has(.demo-form) {
  max-width: 740px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-optional {
  font-weight: 400;
  color: var(--text-muted);
}

select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  min-height: 44px;
  transition: border-color 200ms ease;
  outline: none;
  appearance: none;
  cursor: pointer;
}

select:focus { border-color: var(--navy); }

.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  min-height: 44px;
  transition: border-color 200ms ease;
  outline: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--navy);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 14px;
  color: var(--text-muted);
}

/* CONTACT INFO */

.contact-info {
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--bronze);
  /* WCAG 1.4.1: inline link in prose must not rely on color alone */
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* NOTIFY FORM — inline section version (demos page) */

.notify-section-wrap {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.notify-form-inline {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form-inline input[type="email"] {
  flex: 1;
  min-width: 220px;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 200ms ease;
}

.notify-form-inline input[type="email"]:focus {
  border-color: var(--navy);
}

.notify-section-wrap .notify-success {
  display: none;
  color: var(--bronze);
  font-size: 14px;
  font-weight: 500;
  margin-top: 1.25rem;
}

@media (max-width: 480px) {
  .notify-form-inline {
    flex-direction: column;
    align-items: stretch;
  }
  .notify-form-inline .btn-gold {
    justify-content: center;
  }
}

/* OWN / BUILD / EVOLVE PILLARS */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.pillar-word {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.pillar-because {
  font-size: 13px;
  font-style: italic;
  color: var(--bronze-deep);
  line-height: 1.5;
  margin-top: 0.35rem;
}

.pillar-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.85rem;
}

.pillar-list {
  list-style: none;
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 0.5px solid var(--border);
  flex: 1;
}

.pillar-list li {
  font-size: 13px;
  color: var(--navy);
  padding: 3px 0 3px 22px;
  position: relative;
}

.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23986027' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center / contain;
}

.pillar-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-top: 1rem;
}

.pillar-link:hover { text-decoration: underline; }

.pillar-link .arrow { color: var(--bronze); }

.section-cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* EDITIONS */

.edition-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.edition-row {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}

.edition-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.edition-head h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.edition-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.edition-desc--block { margin-top: 0.4rem; }

.edition-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.7rem;
}

.chip {
  font-size: 11px;
  background: var(--bg-warm);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  color: var(--navy);
}

.chip-plus {
  background: var(--white);
  border-color: var(--bronze);
  color: var(--bronze-deep);
  font-weight: 500;
}

.edition-row--flagship { border: 2px solid var(--bronze); }

.edition-badge {
  font-size: 11px;
  background: var(--bronze);
  color: var(--white);
  font-weight: 600;
  border-radius: 20px;
  padding: 3px 10px;
}

.edition-row--custom {
  background: transparent;
  border: 1px dashed #c9b8a8;
  padding: 1rem 1.25rem;
}

.edition-row--custom h3 { font-size: 14px; }

.editions-note {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin: 1rem auto 0;
  max-width: 640px;
  line-height: 1.6;
}

/* SOFTWARE ASSURANCE STRIP */

.assurance-strip {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem auto 0;
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.assurance-copy {
  flex: 1;
  min-width: 260px;
}

.assurance-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 0.4rem;
}

.assurance-strip h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.assurance-strip p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-top: 0.4rem;
}

.assurance-strip .btn-white { white-space: nowrap; }

/* COMING SOON */

.coming-soon-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.coming-soon-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.coming-soon-page h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.coming-soon-page > p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2rem;
}

.notify-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 440px;
  width: 100%;
}

.notify-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 14px;
  min-height: 44px;
  transition: border-color 200ms ease;
  outline: none;
}

.notify-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.notify-form input[type="email"]:focus { border-color: var(--bronze); }

.notify-success {
  display: none;
  color: var(--bronze);
  font-size: 14px;
  margin-top: 1.25rem;
  font-weight: 500;
}

.coming-soon-back {
  margin-top: 2.5rem;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.coming-soon-back a {
  color: var(--bronze);
  text-decoration: none;
}

.coming-soon-back a:hover { text-decoration: underline; }

/* RESPONSIVE */

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    flex-direction: column;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .hero-right { display: none; }
  .hero-left { border-left: none; padding-left: 0; border-top: 3px solid var(--bronze); padding-top: 1rem; }
  .hero h1 { font-size: 22px; }
  .hero p { margin-bottom: 1.25rem; }

  section { padding: 1.4rem 1.25rem; }

  .feature-grid .card { flex-basis: 100%; max-width: 420px; }
  .props-grid, .props-grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .assurance-strip { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .inst-grid { grid-template-columns: 1fr; }

  .cta-strip {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .notify-form { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-gold,
  .hero-btns .btn-navy { justify-content: center; }
}

/* WCAG 1.4.1: inline links in prose must not rely on color alone */
p a { text-decoration: underline; text-underline-offset: 2px; }
