/* Eaverly — Commercial Growth
   v2 visual language: white space, big clean headlines, soft cards, one accent.
   Ink = brand navy, accent = safety orange. */

:root {
  --ink: #0b1b2a;
  --navy-deep: #07131f;
  --muted: #5e6b78;
  --faint: #9aa5b0;
  --orange: #ff6a13;
  --orange-soft: #fff0e6;
  --page: #ffffff;
  --wash: #f6f7f9;
  --line: rgba(11, 27, 42, 0.08);
  --shadow-card: 0 12px 34px rgba(11, 27, 42, 0.08);
  --shadow-cta: 0 8px 22px rgba(255, 106, 19, 0.32);
  --radius: 16px;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-lockup: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ---------- reveal animation (script.js adds .is-visible) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- utility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 100;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 88px 28px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 4px;
  border-radius: 99px;
  background: var(--orange);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

/* ---------- buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.button-primary:hover {
  background: #f05e08;
  transform: translateY(-1px);
}

.button-lg {
  padding: 16px 34px;
  font-size: 17px;
}

.text-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--orange);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wordmark-name {
  font-family: var(--font-lockup);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}

.wordmark-rule {
  display: inline-block;
  width: 5px;
  height: 22px;
  border-radius: 2px;
  background: var(--orange);
}

.wordmark-descriptor {
  font-family: var(--font-lockup);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15.5px;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.header-cta {
  padding: 11px 22px;
  font-size: 15px;
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }
  .wordmark-descriptor {
    display: none;
  }
  .wordmark-rule {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 28px 40px;
}

.hero-eyebrow {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero h1 {
  margin: 0 0 24px;
  max-width: 21ch;
  font-size: clamp(38px, 6.6vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 .hl {
  color: var(--orange);
}

.hero-summary {
  margin: 0 0 32px;
  max-width: 58ch;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
}

.hero-guarantee {
  margin: 0 0 56px;
  font-size: 15.5px;
  color: var(--muted);
}

.hero-guarantee em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* video card */
.hero-vsl {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 27, 42, 0.18);
}

.hero-vsl-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-vsl button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 7;
  background: radial-gradient(ellipse at center, rgba(255, 106, 19, 0.16), transparent 65%);
  border: none;
  cursor: not-allowed;
}

.play-icon {
  display: inline-block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: var(--shadow-cta);
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 24px;
  border-color: transparent transparent transparent #fff;
}

.hero-vsl-copy {
  padding: 14px 24px 18px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- stats ---------- */
.stats {
  padding-top: 48px;
  padding-bottom: 48px;
}

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

.stat {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.stat strong {
  display: block;
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat p {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 780px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- qualified gates ---------- */
.gates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.gate-number {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gate h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gate p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

.gates-footnote {
  margin: 26px 0 0;
  font-size: 14.5px;
  color: var(--faint);
}

@media (max-width: 780px) {
  .gates {
    grid-template-columns: 1fr;
  }
}

/* ---------- process ---------- */
.process {
  background: var(--wash);
  max-width: none;
}

.process > * {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

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

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.step-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 800;
  font-size: 20px;
}

.step-meta {
  margin: 0 0 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

@media (max-width: 780px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- proof ---------- */
.proof-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.proof-board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
}

.sample-pill {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

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

.proof-metrics > div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.proof-metrics > div:last-child {
  border-right: none;
}

.proof-metrics span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}

.proof-metrics strong {
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 780px) {
  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-metrics > div:nth-child(2) {
    border-right: none;
  }
  .proof-metrics > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

/* ---------- guarantee band ---------- */
.guarantee {
  max-width: none;
  background: var(--navy-deep);
  color: #fff;
}

.guarantee-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.guarantee .section-label {
  justify-content: center;
}

.guarantee h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.guarantee-line {
  margin: 0 0 34px;
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(255, 255, 255, 0.82);
}

.guarantee-line em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* ---------- faq ---------- */
.faq-list {
  max-width: 780px;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 24px;
  transition: box-shadow 0.2s ease;
}

.faq-list details[open] {
  box-shadow: var(--shadow-card);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 62ch;
}

/* ---------- booking ---------- */
.booking {
  background: var(--wash);
  max-width: none;
}

.booking > * {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.booking-copy {
  max-width: 720px;
  margin-bottom: 40px;
}

.booking-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.booking-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

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

.calendar-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
}

.calendar-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy-deep);
  color: #fff;
  font-family: var(--font-lockup);
  font-weight: 900;
  font-size: 22px;
}

.calendar-topbar strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.calendar-topbar span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
}

.cal-embed {
  min-height: 560px;
}

.calendar-fallback {
  display: flex;
  gap: 8px;
  padding: 14px 26px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.calendar-fallback a {
  color: var(--orange);
  font-weight: 600;
}

/* ---------- footer ---------- */
.site-footer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 28px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--orange);
}

@media (max-width: 640px) {
  .section {
    padding: 64px 20px;
  }
  .hero {
    padding: 48px 20px 32px;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
