/* Court Bluford — speaker site. 2026 redesign. */

:root {
  /* Palette */
  --ink: #0e0e10;
  --ink-2: #19191c;
  --paper: #ffffff;
  --cream: #f5f3ef;
  --cream-2: #ece7df;
  --muted: #57534c;
  --muted-light: rgba(255, 255, 255, 0.72);
  --line: #e4ded4;
  --line-dark: rgba(255, 255, 255, 0.14);
  --accent: #14795a;
  --accent-bright: #1fa97a;
  --accent-soft: #e7f2ed;
  --accent-grad: linear-gradient(135deg, #14795a 0%, #1fa97a 100%);

  /* Type */
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: min(100% - 2.5rem, 74rem);
  --wrap-narrow: min(100% - 2.5rem, 52rem);
  --header-h: 4.25rem;

  /* Radius */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(14, 14, 16, 0.04), 0 4px 14px rgba(14, 14, 16, 0.05);
  --shadow-md: 0 10px 34px rgba(14, 14, 16, 0.1);
  --shadow-lg: 0 28px 70px rgba(14, 14, 16, 0.18);
  --shadow-accent: 0 14px 34px rgba(20, 121, 90, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
}

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

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

body.site {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.site.is-drawer-open {
  overflow: hidden;
}

@media (max-width: 899px) {
  body.site.has-sticky-cta {
    padding-bottom: 4.5rem;
  }
}

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

a {
  color: inherit;
}

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

.section-copy a:not(.btn) {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent-bright);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  transition: color 0.15s;
}

.section-copy a:not(.btn):hover {
  color: var(--accent);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0 0 var(--r-sm) 0;
}

.site-skip:focus,
.site-skip:focus-visible {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Eyebrow / chips ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--r-pill);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.section--dark .eyebrow,
.eyebrow--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: calc(var(--header-h) + var(--safe-t));
  padding: 0 1.25rem;
  padding-top: var(--safe-t);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 6px 28px rgba(14, 14, 16, 0.07);
}

.site-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3ch;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo span {
  color: var(--accent);
}

.site-nav {
  display: none;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.site-nav-link {
  position: relative;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  border-radius: var(--r-pill);
  transition: color 0.15s, background 0.15s;
}

.site-nav-link:hover {
  color: var(--ink);
  background: var(--cream);
}

.site-nav-link.is-active {
  color: var(--ink);
  font-weight: 600;
}

.site-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
  transform: translateX(-50%);
}

.site-header .site-cta {
  margin-left: auto;
  display: none;
  min-height: 2.6rem;
  padding: 0.6rem 1.25rem;
}

.site-menu-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.15s;
}

.site-menu-btn:hover {
  background: var(--cream-2);
}

.hamburger {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.hamburger span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 6px;
}
.hamburger span:nth-child(3) {
  top: 12px;
}

.site-menu-btn[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-menu-btn[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}
.site-menu-btn[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }
  .site-header .site-cta {
    display: inline-flex;
  }
  .site-menu-btn {
    display: none;
  }
}

/* ---------- Drawer ---------- */
.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(14, 14, 16, 0.5);
  backdrop-filter: blur(2px);
}

.site-drawer[hidden] {
  display: none;
}

.site-drawer nav {
  position: absolute;
  top: calc(var(--header-h) + var(--safe-t));
  left: 0;
  right: 0;
  padding: 0.75rem 1.25rem calc(1.25rem + var(--safe-b));
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: drawer-in 0.3s var(--ease);
}

@keyframes drawer-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.site-drawer a {
  padding: 1rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}

.site-drawer a:hover {
  color: var(--accent);
}

.site-drawer .drawer-cta {
  margin-top: 1rem;
  padding: 1rem;
  text-align: center;
  color: #fff;
  background: var(--accent-grad);
  border: 0;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-accent);
}

.site-drawer .drawer-cta:hover {
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s, background 0.18s,
    color 0.18s, border-color 0.18s;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
}

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

.btn--primary {
  color: #fff;
  background: var(--accent-grad);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(20, 121, 90, 0.36);
}

.btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.btn--ghost {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.section--dark .btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.section--dark .btn--ghost:hover {
  border-color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + var(--safe-t));
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  animation: hero-zoom 18s var(--ease) forwards;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(14, 14, 16, 0.5) 0%,
      rgba(14, 14, 16, 0.25) 32%,
      rgba(14, 14, 16, 0.55) 72%,
      rgba(14, 14, 16, 0.94) 100%
    ),
    radial-gradient(
      130% 80% at 20% 100%,
      rgba(20, 121, 90, 0.4) 0%,
      transparent 60%
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 0 4.5rem;
  padding-bottom: calc(4.5rem + var(--safe-b));
  color: #fff;
  max-width: 46rem;
}

.hero [data-reveal] {
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
}

.hero-hi {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  margin: 0.15rem 0 1.25rem;
  font-size: clamp(3rem, 11vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hero-lead strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-trust {
  margin: 2rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

.hero-trust strong {
  color: #fff;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: calc(1.25rem + var(--safe-b));
  z-index: 1;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.hero-scroll span {
  width: 1px;
  height: 28px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), transparent);
  animation: scroll-pulse 1.8s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 600px) {
  .hero-scroll {
    display: none;
  }
}

/* ---------- Stats ---------- */
.stats {
  position: relative;
  padding: 3rem 0;
  background: var(--ink);
  color: #fff;
}

.stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
  text-align: center;
}

.stats-grid li {
  position: relative;
}

.stats-grid strong {
  display: block;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #b9e8d6 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-grid span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-grid li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 2.6rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
  }
}

/* ---------- Start here ---------- */
.start-here {
  padding: 4rem 0 1rem;
}

.start-here-label {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.start-here-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .start-here-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.start-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.6rem 1.5rem;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}

.start-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent-grad);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s var(--ease);
}

.start-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.start-card:hover::before {
  transform: scaleY(1);
}

.start-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.start-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

.start-card .start-arrow {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  transition: transform 0.2s var(--ease);
}

.start-card:hover .start-arrow {
  transform: translateX(4px);
}

/* ---------- Sections ---------- */
.section {
  padding: 5.5rem 0;
}

.section--dark {
  background: var(--ink);
  color: #fff;
}

.section--soft {
  background: var(--cream);
}

.section h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 40rem;
}

.section--dark .section-copy p {
  color: var(--muted-light);
}

.section-copy p strong {
  color: var(--ink);
}

.section--dark .section-copy p strong {
  color: #fff;
}

.section-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 920px) {
  .section-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .section-split--reverse .section-copy {
    order: 2;
  }
  .section-split--reverse .section-media {
    order: 1;
  }
}

.section-media {
  position: relative;
}

.section-media img {
  border-radius: var(--r);
  width: 100%;
  box-shadow: var(--shadow-md);
}

.section-media--frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.actions--center {
  justify-content: center;
  margin-bottom: 0;
}

/* Topic chips */
.speak-topics-heading {
  margin: 1.75rem 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.speak-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.speak-topics li {
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: border-color 0.15s, color 0.15s;
}

.speak-topics li:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Planner card */
.planner {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}

.planner h3 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.planner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.planner li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.planner li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.planner li strong {
  color: var(--ink);
  font-weight: 600;
}

.case-outcome {
  margin: 0 0 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  background: var(--accent-soft);
  border-radius: var(--r-sm);
  border-left: 4px solid var(--accent);
}

.section--dark .case-outcome {
  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.05);
}

.case-outcome strong {
  color: var(--ink);
}

/* Trusted strip */
.trusted-label {
  margin: 4rem 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.trusted-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.trusted-list li {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------- Testimonials ---------- */
.quotes {
  padding: 6rem 0;
}

.quotes-title {
  margin: 0 0 3rem;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: center;
}

.quotes-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 66rem;
  margin-inline: auto;
}

@media (min-width: 760px) {
  .quotes-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.quote-card {
  position: relative;
  margin: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 1.25rem;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-bright);
  opacity: 0.8;
}

.quote-pull {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
}

.quote-card footer {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.quote-card cite {
  font-style: normal;
}

/* ---------- Speak CTA band ---------- */
.section--speak-cta {
  position: relative;
  padding: 5rem 0;
  background: var(--accent-grad);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.section--speak-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 80% at 50% 0%,
    rgba(255, 255, 255, 0.16) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.speak-cta-inner {
  position: relative;
}

.speak-cta-inner h2 {
  max-width: 18ch;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.speak-cta-inner p {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.section--speak-cta .btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.section--speak-cta .btn--primary:hover {
  color: var(--accent);
}

.section--speak-cta .btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.section--speak-cta .btn--ghost:hover {
  border-color: #fff;
}

.speak-visual {
  margin-top: 2.5rem;
  border-radius: var(--r);
  width: 100%;
  box-shadow: var(--shadow-lg);
}

/* ---------- SEE / Apps ---------- */
.see-steps {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.see-steps div {
  position: relative;
  padding: 1rem 1.1rem 1rem 3.25rem;
  background: var(--cream);
  border-radius: var(--r-sm);
  counter-increment: see;
}

.see-steps {
  counter-reset: see;
}

.see-steps div::before {
  content: counter(see);
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent-grad);
  border-radius: 50%;
}

.see-steps strong {
  display: block;
  font-size: 1rem;
}

.see-steps span {
  font-size: 0.9rem;
  color: var(--muted);
}

.lissiland-logo {
  margin-top: 1.75rem;
  max-width: 140px;
  opacity: 0.85;
}

.check-list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding: 0 0 0 1.85rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--accent-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314795a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 0.7rem no-repeat;
}

.section--dark .check-list li,
.section--soft .check-list li {
  color: var(--muted);
}

.check-list li strong {
  color: var(--ink);
}

/* ---------- About timeline ---------- */
.about-story {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-story strong {
  color: var(--ink);
}

.path-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  position: relative;
}

.path-list::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(var(--accent-bright), var(--line));
}

.path-list li {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.path-list span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.path-list div {
  align-self: center;
  font-size: 0.98rem;
}

.path-list strong {
  color: var(--ink);
}

/* ---------- Founder cards ---------- */
.founder-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.founder-cards a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.25rem 1.2rem;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}

.founder-cards a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.founder-cards strong {
  font-size: 1.02rem;
}

.founder-cards span {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact-inner {
  text-align: center;
}

.contact-inner h2 {
  margin-bottom: 0.75rem;
}

.contact-reply {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.inquiry-box {
  margin: 0 auto 2rem;
  max-width: 30rem;
  padding: 1.5rem 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
}

.inquiry-box h3 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.inquiry-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.inquiry-box li {
  position: relative;
  padding-left: 1.6rem;
}

.inquiry-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent-bright);
}

.contact-email {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.contact-email a {
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--accent-bright);
  text-underline-offset: 0.18em;
}

.btn-copy {
  padding: 0.5rem 0.9rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.15s;
}

.btn-copy:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-grid {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto 2.5rem;
  max-width: 34rem;
}

@media (min-width: 540px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-grid a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s, transform 0.18s var(--ease);
}

.contact-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--accent-bright);
  background: rgba(255, 255, 255, 0.07);
}

.contact-grid span {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 4rem 0 2.5rem;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

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

.footer-brand {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.footer-tag {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer nav,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer nav a,
.footer-links a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s;
}

.site-footer nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem max(1rem, env(safe-area-inset-left, 0px))
    calc(0.7rem + var(--safe-b)) max(1rem, env(safe-area-inset-right, 0px));
  background: rgba(255, 255, 255, 0.86);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(14, 14, 16, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.3s var(--ease);
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-cta-btn {
  flex: 1;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.sticky-cta-btn--primary {
  flex: 1.6;
  color: #fff;
  background: var(--accent-grad);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ---------- Scroll reveal (only active once JS adds .js-reveal) ---------- */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero-media img {
    animation: none;
  }
}

@media (forced-colors: active) {
  .btn,
  .site-nav-link,
  .start-card,
  .founder-cards a {
    border: 2px solid ButtonText;
  }
}
