/* Build Flow Leads -- marketing site
   Category-standard canon at full craft, in the Signal palette.
   Slate navy carries structure, text and the primary action; electric cyan is
   the mark, the signal, and the accent. Display: Barlow Semi Condensed. Body: Barlow. */

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/barlow-400.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/barlow-500.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/barlow-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlow-700.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Semi Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/barlowsemicond-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Semi Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlowsemicond-700.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Semi Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/barlowsemicond-800.woff2") format("woff2");
}

:root {
  --navy: #12354E;
  --navy-deep: #0B2436;
  --navy-ink: #12354E;
  --slate: #47657A;
  --slate-soft: #92B2C4;
  --line: #D3E2EB;
  --ground: #FFFFFF;
  --tint: #EFF9FD;
  --cyan: #00B8EA;
  --cyan-soft: #8FDFF7;
  --action: #12354E;
  --action-deep: #0B2436;
  --confirm: #12354E;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 10px 30px -12px rgba(11, 36, 54, 0.25), 0 2px 8px -2px rgba(11, 36, 54, 0.12);
  --shadow-float: 0 18px 44px -16px rgba(6, 24, 38, 0.38), 0 4px 12px -4px rgba(6, 24, 38, 0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Barlow Semi Condensed", "Barlow", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--navy-ink);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--navy); color: #fff; }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: 3px;
}
.band-navy :focus-visible, .footer :focus-visible { outline-color: var(--cyan); }

img { max-width: 100%; height: auto; display: block; }

/* Themed scrollbar (WebKit + Firefox) */
html { scrollbar-color: var(--slate-soft) var(--tint); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--tint); }
::-webkit-scrollbar-thumb { background: var(--slate-soft); border-radius: 6px; border: 3px solid var(--tint); }
::-webkit-scrollbar-thumb:hover { background: var(--slate); }

.shell {
  width: min(1140px, 100% - 3rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3.5rem;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 700; margin-bottom: 0.9rem; }
h3 { font-size: 1.28rem; font-weight: 700; line-height: 1.25; }

p { max-width: 68ch; }

.lede {
  font-size: 1.2rem;
  color: var(--slate);
  margin-top: 1.15rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s var(--ease-out), border-color 0.18s var(--ease-out),
              color 0.18s var(--ease-out), transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--action);
  color: #fff;
  box-shadow: 0 6px 18px -8px rgba(11, 36, 54, 0.55);
}
.btn-primary:hover { background: var(--action-deep); box-shadow: 0 8px 22px -8px rgba(6, 24, 38, 0.6); }
/* On navy grounds the action inverts: sky field, navy type -- the mark's own logic. */
.band-navy .btn-primary, .footer .btn-primary { background: var(--cyan); color: var(--navy-deep); box-shadow: none; }
.band-navy .btn-primary:hover, .footer .btn-primary:hover { background: #33CEF4; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); }

.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.07rem; }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.topbar.is-stuck {
  background: #fff;
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -14px rgba(11, 36, 54, 0.35);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.24rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  white-space: nowrap;
}
.brand-word em { font-style: normal; color: var(--navy); }
.brand-invert .brand-word { color: #fff; }
.brand-invert .brand-word em { color: var(--cyan); }

.topnav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.topnav a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--slate);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s var(--ease-out), border-color 0.16s var(--ease-out);
}
.topnav a:hover { color: var(--navy); border-bottom-color: var(--cyan); }

.btn-nav { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.mobile-nav a {
  text-decoration: none;
  color: var(--navy-ink);
  font-weight: 500;
  padding: 0.7rem 0.25rem;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .btn { margin-top: 0.5rem; }
.mobile-nav a.btn-primary { color: #fff; }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(0, 184, 234, 0.14), transparent 62%),
    linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 78%);
  overflow: hidden;
}

.hero .shell { width: min(1260px, 100% - 3rem); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 7fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--slate);
  max-width: 52ch;
}

.hero-visual { position: relative; }

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-photo img { aspect-ratio: 3 / 2; object-fit: cover; }

.appt-sample, .slip-sample {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
}

/* The week calendar -- the product demo: your calendar, filling */
.week-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  padding: 1.2rem 1.15rem 1rem;
}
.week-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.week-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy);
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
}
.wday { display: flex; flex-direction: column; }
.wday h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.3rem;
  margin-bottom: 0.5rem;
}
.wslot {
  flex: 1;
  min-height: 5.9rem;
  min-width: 0;
  border: 1px dashed var(--line);
  border-radius: 7px;
  background: var(--tint);
  padding: 0.42rem 0.45rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.wslot:last-child { margin-bottom: 0; }
.wslot.is-booked {
  border-style: solid;
  border-color: var(--cyan);
  background: #fff;
}
.wtime {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
  font-variant-numeric: tabular-nums;
}
.wentry {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-height: 2.3em;
}
.wname {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-ink);
}
.wtrade {
  font-size: 0.73rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--slate);
}
.wslot[data-fill] .wtime,
.wslot[data-fill] .wentry {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.wslot.is-booked .wtime,
.wslot.is-booked .wentry { opacity: 1; transform: none; }
.wchip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  align-self: stretch;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  padding: 0.24rem 0.4rem;
  opacity: 0;
}
.wchip svg { width: 11px; height: 11px; flex: none; }
.wslot.is-confirmed .wchip { opacity: 1; }
.wslot[data-fill].is-confirmed .wchip { animation: settle 0.5s var(--ease-out); }
.wslot.is-open { justify-content: center; align-items: center; }
.wopen {
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  color: var(--slate);
}
.week-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  max-width: none;
}
.week-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.week-count strong {
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  display: inline-block;
}
.week-count strong.bump { animation: settle 0.4s var(--ease-out); }
.week-note { font-size: 0.88rem; color: var(--slate); }

@keyframes settle {
  0% { transform: translateY(6px) scale(0.97); }
  60% { transform: translateY(-2px) scale(1.015); }
  100% { transform: translateY(0) scale(1); }
}

.live-chip {
  position: absolute;
  top: -0.9rem;
  right: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 234, 0.65); }
  55% { box-shadow: 0 0 0 6px rgba(0, 184, 234, 0); }
}

/* ---------- Navy bands ---------- */

.band-navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #E7EEF8;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.band-navy h2 { color: #fff; }
.band-navy h3 { color: #fff; }
.band-navy p { color: #C4D2E6; }

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.band-grid-rev { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }

.band-copy > p { font-size: 1.12rem; margin-top: 0.4rem; }

.band-points {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}
.band-points h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.band-points p { font-size: 0.99rem; }
.band-points em, .band-navy strong { color: #fff; font-style: normal; }

.band-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  background: var(--navy-deep);
}
.band-photo img { aspect-ratio: 4 / 3; object-fit: cover; }
.band-photo figcaption {
  font-size: 0.9rem;
  color: #A9BCD6;
  padding: 0.8rem 1.1rem;
}

/* ---------- Generic sections ---------- */

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-tint { background: var(--tint); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.section-head p { color: var(--slate); font-size: 1.12rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-copy > p { color: var(--slate); font-size: 1.12rem; }
.split-copy .btn { margin-top: 1.8rem; }

.check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.18rem;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--confirm);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat;
}
.check-list em { font-style: normal; color: var(--navy); font-weight: 600; }

/* Appointment slip over the house photo */
.slip-wrap { position: relative; display: grid; justify-items: center; padding: 0 0 2.2rem; }
.slip-photo {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.slip-photo img { aspect-ratio: 3 / 2; object-fit: cover; }
.photo-note {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
}
.slip-photo { position: relative; }
.slip-wrap .slip {
  margin-top: -38%;
  position: relative;
  z-index: 1;
}
.slip {
  width: min(430px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: rotate(-1deg);
}
.slip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
}
.slip-brand { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.02em; }
.slip-head .slip-sample { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: #DCE6F4; }
.slip-title {
  font-size: 1.35rem;
  padding: 1.1rem 1.25rem 0.4rem;
}
.slip-table { width: 100%; border-collapse: collapse; }
.slip-table th, .slip-table td {
  text-align: left;
  padding: 0.62rem 1.25rem;
  font-size: 0.97rem;
  border-top: 1px dashed var(--line);
}
.slip-table th { color: var(--slate); font-weight: 500; width: 38%; }
.slip-table td { font-weight: 600; }
.slip-strong { color: var(--navy); font-variant-numeric: tabular-nums; }
.slip-foot { padding: 1rem 1.25rem 1.25rem; }
.slip-badge {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--line), var(--slate-soft), var(--line));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease-out) 0.2s;
}
.steps.is-in::before { transform: scaleX(1); }

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: 0 6px 20px -14px rgba(11, 36, 54, 0.25);
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem; height: 2.3rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.step:last-child .step-no { background: var(--cyan); color: var(--navy); }
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.97rem; color: var(--slate); }

/* ---------- Trades ---------- */

.trades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.trade-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.trade-photo img { aspect-ratio: 3 / 2; object-fit: cover; }
.trade-photo figcaption {
  padding: 1rem 1.2rem 1.15rem;
  display: grid;
  gap: 0.15rem;
}
.trade-photo strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy);
}
.trade-photo span { font-size: 0.95rem; color: var(--slate); }

.trade-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  align-content: center;
}
.trade-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.72rem 1rem;
  font-weight: 600;
  color: var(--navy-ink);
  transition: border-color 0.18s var(--ease-out), background-color 0.18s var(--ease-out);
}
.trade-list li:hover { border-color: var(--slate-soft); background: #fff; }
.trade-list svg { width: 22px; height: 22px; color: var(--navy); flex: none; }
.trade-more {
  font-weight: 500 !important;
  color: var(--slate) !important;
  background: transparent !important;
  border-style: dashed !important;
  justify-content: center;
}

/* ---------- Why us ---------- */

.why-list {
  list-style: none;
  display: grid;
  gap: 1.05rem;
  margin-top: 1.4rem;
}
.why-list li {
  color: #C4D2E6;
  max-width: 62ch;
}
.why-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

.promise {
  margin-top: 2.2rem;
  background: rgba(0, 184, 234, 0.10);
  border: 1px solid rgba(0, 184, 234, 0.35);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
}
.promise p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.promise cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.92rem;
  color: #A9BCD6;
}

/* ---------- Contact ---------- */

.contact { background: var(--tint); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-copy p { color: var(--slate); font-size: 1.12rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid;
  gap: 1.1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
/* A field's own display would otherwise beat the browser's rule for [hidden],
   leaving anything the script hides -- the challenge, the sum -- still on screen. */
.field[hidden] { display: none; }
.field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.optional { font-weight: 400; color: var(--slate); }

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--navy-ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.9rem;
  width: 100%;
  transition: border-color 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out);
  caret-color: var(--action);
}
.field ::placeholder { color: var(--slate); opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--slate-soft); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 184, 234, 0.45);
}
.field input.is-invalid, .field select.is-invalid {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.field textarea { resize: vertical; min-height: 96px; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%234A6B7C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}

/* Trades: pick as many as apply */
.field-trades {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}
.field-trades legend {
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.trade-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.pick {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--navy-ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.7rem;
  cursor: pointer;
  transition: border-color 0.16s var(--ease-out), background-color 0.16s var(--ease-out);
}
.pick:hover { border-color: var(--slate-soft); }
.pick input {
  appearance: none;
  flex: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--slate-soft);
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.16s var(--ease-out), background-color 0.16s var(--ease-out);
}
.pick input:checked {
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
  border-color: var(--navy);
}
.pick input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 184, 234, 0.45);
}
.pick:has(input:checked) { border-color: var(--navy); background: var(--tint); }
.pick input:checked + span { font-weight: 600; }
.field-trades.is-invalid .pick { border-color: #C0392B; }

.field-human input { max-width: 16rem; }

/* Bait for form-filling bots: off-screen, out of the tab order, never announced */
.pot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 0.92rem;
  color: var(--slate);
  text-align: center;
}
.form-note.is-error { color: #C0392B; font-weight: 500; }

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-deep);
  color: #C4D2E6;
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand p { margin-top: 1rem; font-size: 0.98rem; max-width: 52ch; }
.footer-nav { display: grid; gap: 0.55rem; align-content: start; justify-items: start; }
.footer-nav a {
  color: #C4D2E6;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.16s var(--ease-out), border-color 0.16s var(--ease-out);
}
.footer-nav a:hover { color: #fff; border-bottom-color: var(--cyan); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-top: 1.6rem;
  font-size: 0.88rem;
  color: #8DA0BC;
}

/* ---------- Scroll animations ---------- */

.anim { opacity: 0; }
.anim[data-anim="rise"] { transform: translateY(26px); }
.anim[data-anim="fade"] { transform: scale(0.985); }
/* A hairline stays uncovered so the element keeps a visible area for the
   observer that reveals it; a fully collapsed clip is never reported on screen. */
.anim[data-anim="clip"] { clip-path: inset(0 0 calc(100% - 2px) 0); opacity: 1; }

.anim.is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.anim[data-anim="clip"].is-in {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 0.9s var(--ease-out), opacity 0.7s var(--ease-out);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim, .anim[data-anim] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .steps::before { transform: scaleX(1); transition: none; }
  .live-dot { animation: none; }
  .wslot[data-fill] .wtime, .wslot[data-fill] .wentry { opacity: 1 !important; transform: none !important; transition: none !important; }
  .wchip { opacity: 1 !important; animation: none !important; }
  .week-count strong.bump { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid, .band-grid, .band-grid-rev, .split, .contact-grid {
    grid-template-columns: 1fr;
  }
  .band-grid-rev .band-photo { order: 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .trades-grid { grid-template-columns: 1fr 1fr; }
  .trade-list { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .week-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .topnav, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .trade-picks { grid-template-columns: 1fr 1fr; }
  .trades-grid { grid-template-columns: 1fr; }
  .trade-list { grid-column: auto; grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .week-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .week-foot { flex-direction: column; gap: 0.15rem; }
  .live-chip { top: -0.9rem; right: 0.9rem; }
}
