/* Enquiry Engine: site styles. Mobile first, no framework, no build step. */

:root {
  --navy: #0f2a44;
  --navy-deep: #0a1e31;
  --ink: #1b2530;
  --muted: #4d5b69;
  --line: #d9e0e7;
  --bg: #ffffff;
  --bg-alt: #f3f6f9;
  --amber: #ffb703;
  --amber-hover: #f0a800;
  --green: #1f7a4d;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(15, 42, 68, 0.06), 0 4px 16px rgba(15, 42, 68, 0.06);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--navy);
  padding: 12px 16px;
  font-weight: 700;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand cta"
    "nav nav";
  align-items: center;
  column-gap: 12px;
  padding-top: 10px;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand svg {
  width: 32px;
  height: 32px;
  flex: none;
}

.header-cta {
  grid-area: cta;
}

.site-nav {
  grid-area: nav;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  margin: 6px -8px 0;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  display: inline-block;
  padding: 10px 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.site-nav a:hover {
  color: var(--navy);
}

.site-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--amber);
}

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand nav cta";
    padding-top: 0;
    min-height: 72px;
  }

  .site-nav {
    justify-content: center;
    margin: 0;
    gap: 12px;
  }

  .site-nav a {
    padding: 24px 8px 21px;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
}

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

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.on-dark .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.on-dark .btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-sm {
  min-height: 44px;
  padding: 8px 14px;
  font-size: 0.95rem;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 560px) {
  .btn-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Sections */

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

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

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark a:not(.btn) {
  color: #fff;
}

@media (min-width: 900px) {
  .section {
    padding: 88px 0;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

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

.lead {
  font-size: 1.25rem;
  color: var(--muted);
}

.section-dark .lead {
  color: #d3deea;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

/* Hero */

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

.hero h1 {
  max-width: 16ch;
}

.hero .lead {
  max-width: 38em;
}

.tagline-strip {
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    padding: 88px 0;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
  }
}

.product-note {
  margin-top: 32px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1rem;
  color: #e7eef5;
  max-width: 38em;
}

.product-note strong {
  color: #fff;
}

.price-chip {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 183, 3, 0.16);
  border: 1px solid rgba(255, 183, 3, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.by-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #d3deea;
  margin-bottom: 16px;
}

.by-line strong {
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Text message example */

.sms-card {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.sms-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.sms-meta .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d64545;
  flex: none;
}

.bubble {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.bubble-out {
  background: var(--navy);
  color: #fff;
  border-bottom-left-radius: 4px;
}

.bubble-in {
  background: #e9eef3;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.sms-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

/* Lists and cards */

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lines p {
  margin-bottom: 0.35em;
}

.lines .punch {
  margin-top: 1em;
  font-weight: 700;
  color: var(--navy);
}

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

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 900px) {
  .grid {
    gap: 24px;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.35em;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 183, 3, 0.2);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

/* Flow (home) */

.flow {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 12px;
  counter-reset: flow;
}

.flow li {
  counter-increment: flow;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 600;
  color: var(--navy);
}

.flow li::before {
  content: counter(flow);
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
}

.flow li:last-child {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.flow li:last-child::before {
  background: var(--amber);
  color: var(--navy);
}

@media (min-width: 900px) {
  .flow {
    grid-template-columns: repeat(5, 1fr);
  }

  .flow li {
    flex-direction: column;
    text-align: center;
    padding: 20px 12px;
  }
}

/* Steps (product page) */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}

/* Chips (who it's for) */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.chips li {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}

/* Roadmap */

.roadmap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

@media (min-width: 700px) {
  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.roadmap li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.roadmap li.is-live {
  border: 1px solid var(--amber);
  background: rgba(255, 183, 3, 0.12);
}

.roadmap .tag {
  flex: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #d3deea;
  margin-top: 3px;
}

.roadmap li.is-live .tag {
  background: var(--amber);
  color: var(--navy);
}

/* Pricing */

.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.price-card .product-name {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.price-card .by {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price small {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checks li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.price-card .btn {
  width: 100%;
}

/* Trust */

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  font-weight: 700;
  color: var(--navy);
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--amber);
}

/* Reserved for real testimonials once available. Not used yet. */
.testimonials {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

/* CTA band */

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

.cta-band h2 {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-row {
  justify-content: center;
}

/* Forms */

.contact-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 56px;
  }
}

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

label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  font: inherit;
  font-size: 1.0625rem;
  color: var(--ink);
  padding: 12px 14px;
  min-height: 52px;
  border: 1.5px solid #b7c3cf;
  border-radius: 10px;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(255, 183, 3, 0.6);
  outline-offset: 0;
}

.form-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 14px;
}

.form-status {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #e8f5ee;
  border: 1px solid #b8dfc9;
  color: #14502f;
  font-size: 1rem;
}

.form-status[hidden] {
  display: none;
}

.contact-aside {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  align-self: start;
}

.contact-aside a {
  font-weight: 700;
  word-break: break-word;
}

.contact-aside .btn {
  width: 100%;
  margin-top: 8px;
}

/* Legal pages */

.legal h2 {
  font-size: 1.375rem;
  margin-top: 2em;
}

.legal ul {
  padding-left: 1.25em;
}

.legal li {
  margin-bottom: 0.4em;
}

.updated {
  color: var(--muted);
  font-size: 1rem;
}

/* Footer */

.site-footer {
  background: var(--navy-deep);
  color: #c4d1de;
  padding: 48px 0 32px;
  font-size: 1rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

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

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  display: inline-block;
  padding: 6px 0;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0 0 4px;
}
