:root {
  color-scheme: light;
  --green: #13c636;
  --green-deep: #087a2a;
  --green-soft: #ddf8df;
  --green-glow: rgba(19, 198, 54, 0.2);
  --ink: #102015;
  --muted: #56675c;
  --surface: #ffffff;
  --surface-raised: #f6fbf5;
  --surface-strong: #eaf7e8;
  --line: #cfe2cf;
  --shadow: 0 22px 60px rgba(16, 32, 21, 0.12);
  --radius: 8px;
  --container: min(1120px, calc(100% - 32px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --green: #52df68;
  --green-deep: #8cf0a0;
  --green-soft: #123c1b;
  --green-glow: rgba(82, 223, 104, 0.18);
  --ink: #edf8ef;
  --muted: #b9c8bb;
  --surface: #08120b;
  --surface-raised: #101c13;
  --surface-strong: #152619;
  --line: #28432e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(19, 198, 54, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 198, 54, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--green) 65%, transparent);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--green-deep);
}

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

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(14px);
}

.site-header[data-elevated="true"] {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(16, 32, 21, 0.08);
}

.header-inner {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green);
  color: #001705;
  font-weight: 900;
}

.brand-name,
.brand-role {
  display: block;
}

.brand-name {
  font-weight: 900;
  line-height: 1.2;
}

.brand-role {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  padding: 4px;
}

.nav-links a {
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--green-soft);
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  background: color-mix(in srgb, var(--green) 40%, var(--green-soft));
  color: var(--ink);
}

.nav-links .nav-start {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 900;
  background: var(--green);
  color: #001705;
}

.nav-links .nav-start:hover {
  background: color-mix(in srgb, var(--green) 84%, white);
  color: #001705;
}

.nav-external {
  opacity: 0.5;
  flex-shrink: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  padding: 4px;
}

.language-option {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.language-option[aria-pressed="true"] {
  background: var(--green);
  color: #001705;
}

.language-option:hover {
  color: var(--ink);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 0 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.theme-toggle:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.theme-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.theme-toggle-icon .icon-moon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle-icon .icon-sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle-icon .icon-moon {
  display: block;
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--green-soft) 70%, transparent), transparent 44%),
    var(--surface);
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 44px;
  align-items: center;
  padding: 70px 0 54px;
}

.eyebrow,
.stat-kicker {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  border-color: var(--green);
  background: var(--green);
  color: #001705;
}

.button-primary:hover {
  background: color-mix(in srgb, var(--green) 84%, white);
  color: #001705;
}

.button-secondary {
  background: var(--surface);
}

.button-secondary:hover {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--ink);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.profile-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-raised) 88%, var(--green-soft));
  box-shadow: var(--shadow);
}

.profile-portrait-wrap {
  padding: 14px 14px 0;
}

.profile-portrait {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--line);
}

.profile-content {
  padding: 20px 20px 16px;
}

.profile-label {
  margin: 0;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.18;
}

.profile-handle {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.verification-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.verification-row li {
  border: 1px solid color-mix(in srgb, var(--green) 55%, var(--line));
  border-radius: 999px;
  background: var(--surface);
  padding: 6px 10px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.profile-cta {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: #001705;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.profile-cta:hover {
  background: color-mix(in srgb, var(--green) 84%, white);
  color: #001705;
}

.profile-risk-note {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-deep);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px 14px;
}

.profile-risk-copy,
.profile-risk-original {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.profile-risk-original {
  margin-top: 9px;
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

html[lang="en"] .profile-risk-original {
  display: none;
}

.profile-risk-link {
  display: inline-block;
  margin-top: 9px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.quick-stats div {
  padding: 16px 14px;
  border-right: 1px solid var(--line);
}

.quick-stats div:last-child {
  border-right: 0;
}

.quick-stats dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-stats dd {
  margin: 2px 0 0;
  font-size: 1.15rem;
  font-weight: 950;
}

.breadcrumb {
  border-bottom: 1px solid var(--line);
}

.breadcrumb-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb-inner a {
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-inner a:hover {
  color: var(--green);
}

.breadcrumb-inner [aria-current="page"] {
  color: var(--green-deep);
  font-weight: 600;
}

.booking-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--green-soft) 62%, transparent), transparent 46%),
    var(--surface);
}

.booking-hero-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 44px;
  align-items: stretch;
  padding: 76px 0 64px;
}

.booking-copy {
  align-self: center;
}

.booking-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
  padding: 24px;
}

.booking-facts {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.booking-facts div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.booking-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-facts dd {
  margin: 4px 0 0;
  font-size: 1.12rem;
  font-weight: 900;
}

.booking-section {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 88px;
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 16px;
  align-items: start;
}

.calendar-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.calendar-toolbar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
}

.calendar-toolbar-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.calendar-icon-button,
.calendar-current-week,
.calendar-pill {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.calendar-icon-button,
.calendar-current-week {
  cursor: pointer;
}

.calendar-icon-button {
  width: 38px;
  padding: 0;
  font-size: 1.45rem;
  line-height: 1;
}

.calendar-current-week,
.calendar-pill {
  padding: 0 10px;
}

.calendar-pill {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.calendar-range-wrap {
  flex: 1;
  display: grid;
  justify-items: center;
  min-width: fit-content;
}

.calendar-range {
  min-width: fit-content;
  font-size: 1rem;
  text-align: center;
}

.calendar-relative {
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.calendar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.calendar-meta strong {
  color: var(--green-deep);
}

.calendar-viewport {
  overflow-x: hidden;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 62px repeat(5, minmax(0, 1fr));
  width: 100%;
}

.calendar-corner,
.calendar-day-head,
.calendar-time,
.calendar-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calendar-day-head {
  min-height: 68px;
  padding: 11px 12px 9px;
}

.calendar-day-head strong,
.calendar-day-head span {
  display: block;
}

.calendar-day-head strong {
  color: var(--green-deep);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1;
}

.calendar-day-head span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.calendar-time {
  min-height: 78px;
  padding: 10px 8px 0 0;
  color: var(--muted);
  font-size: clamp(0.68rem, 1.2vw, 0.86rem);
  font-weight: 800;
  text-align: right;
}

.calendar-cell {
  position: relative;
  min-height: 78px;
  background:
    linear-gradient(
      to bottom,
      transparent calc(50% - 1px),
      color-mix(in srgb, var(--line) 64%, transparent) calc(50% - 1px),
      color-mix(in srgb, var(--line) 64%, transparent) 50%,
      transparent 50%
    ),
    var(--surface);
}

.calendar-slot {
  position: absolute;
  top: calc(var(--slot-top) + 4px);
  right: 6px;
  left: 6px;
  min-height: 34px;
  height: calc(var(--slot-height) - 8px);
  border: 1px solid var(--green-deep);
  border-radius: 6px;
  background: var(--green);
  color: #001705;
  cursor: pointer;
  display: grid;
  align-content: center;
  gap: 1px;
  padding: 4px 8px;
  text-align: left;
}

.calendar-slot:hover,
.calendar-slot.is-selected {
  background: color-mix(in srgb, var(--green) 84%, white);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.calendar-slot span,
.calendar-slot strong {
  line-height: 1.1;
}

.calendar-slot span {
  font-size: clamp(0.74rem, 1.4vw, 0.9rem);
  font-weight: 950;
}

.calendar-slot strong {
  font-size: clamp(0.64rem, 1.1vw, 0.74rem);
}

.slot-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
  padding: 22px;
}

.slot-panel h3 {
  font-size: 1.6rem;
}

.slot-panel p[data-selected-slot] {
  color: var(--muted);
  font-weight: 750;
}

.slot-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.slot-actions .button {
  width: 100%;
}

.slot-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-placeholder {
  margin-top: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  padding: 18px;
}

.booking-placeholder strong {
  display: block;
  font-size: 1rem;
}

.booking-placeholder p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-frame {
  width: 100%;
  min-height: 680px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.snapshot-band {
  border-bottom: 1px solid var(--line);
  background: var(--surface-raised);
}

.snapshot-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.snapshot-grid article {
  min-height: 190px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.snapshot-grid article:first-child {
  border-left: 1px solid var(--line);
}

.snapshot-grid strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.18;
}

.snapshot-grid p,
.section-header p,
.persona-card p,
.strategy-list p,
.quote-band p,
.disclaimer p,
.site-footer p {
  color: var(--muted);
}

.snapshot-grid p {
  margin: 12px 0 0;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 88px 0;
  scroll-margin-top: 80px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  /* gap: 32px; */
  align-items: end;
  margin-bottom: 34px;
}

.section-header .eyebrow,
.section-header h2 {
  grid-column: 1;
}

.section-header .eyebrow {
  color: var(--green-deep);
  margin-bottom: 20px;
}

.hero .eyebrow {
  font-size: 1.04rem;
}

.section-header p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  font-size: 1.04rem;
}

.section-header.compact {
  display: block;
  margin-bottom: 28px;
}

.persona-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.persona-card,
.strategy-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.persona-card {
  min-height: 250px;
  padding: 24px;
}

.card-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: var(--green);
  color: #001705;
  font-weight: 950;
}

.persona-card p,
.strategy-list p {
  margin: 12px 0 0;
}

.full-bio-card {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  padding: 28px;
}

.full-bio-card h3 {
  margin-top: 10px;
}

.full-bio-body {
  position: relative;
  max-height: 130px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.full-bio-card.is-expanded .full-bio-body {
  max-height: 1000px;
}

.full-bio-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--surface-raised));
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.full-bio-card.is-expanded .full-bio-fade {
  opacity: 0;
}

.full-bio-text {
  max-width: 900px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  white-space: pre-line;
}

.full-bio-toggle {
  margin-top: 12px;
  border: none;
  background: none;
  color: var(--green-deep);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.full-bio-toggle:hover {
  color: var(--green);
}

.book-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: center;
}

.book-cover-frame {
  width: min(100%, 380px);
  margin: 0;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 10px;
}

.book-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1005 / 1301;
  border-radius: 4px;
  object-fit: cover;
}

.book-content .eyebrow {
  margin-bottom: 14px;
  color: var(--green-deep);
}

.book-language {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 850;
}

.book-content h2 {
  max-width: 680px;
  margin-top: 18px;
  font-size: 3.5rem;
  line-height: 0.98;
}

.book-intro {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.book-topics {
  display: grid;
  gap: 0;
  max-width: 700px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.book-topics li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  line-height: 1.5;
}

.book-topics li::before {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--green);
  content: "";
}

.book-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.book-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.button-external {
  flex-shrink: 0;
  opacity: 0.65;
}

.book-note {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.strategy-section {
  border-top: 1px solid var(--line);
}

.book-section + .strategy-section {
  border-top: 0;
}

.strategy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: stretch;
}

.strategy-visual {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--green-soft) 72%, transparent)),
    var(--surface-raised);
  padding: 28px;
}

.allocation-row {
  display: grid;
  grid-template-columns: 112px minmax(120px, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-weight: 900;
}

.allocation-bar {
  position: relative;
  height: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.allocation-bar::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-width);
  border-radius: inherit;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-glow);
  content: "";
}

.allocation-bar-long {
  --bar-width: 88%;
}

.allocation-bar-medium {
  --bar-width: 58%;
}

.allocation-bar-steady {
  --bar-width: 72%;
}

.allocation-bar-short {
  --bar-width: 44%;
}

.strategy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.strategy-list article {
  padding: 24px;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 30px;
  align-items: center;
  border-block: 1px solid var(--line);
  background: #061109;
  color: #f3fff4;
  padding: 58px max(16px, calc((100vw - 1120px) / 2));
}

.quote-band .eyebrow,
.quote-band p {
  color: #abf4b5;
}

.quote-band h2 {
  max-width: 620px;
  font-size: clamp(1.9rem, 3.2vw, 3.6rem);
}

.quote-band h2::first-letter {
  color: var(--green);
}

.quote-band p {
  margin: 0;
  font-size: 1.08rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.message-composer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
  padding: 24px;
}

.message-composer .eyebrow,
.contact-channels .eyebrow {
  margin-bottom: 10px;
}

.message-composer h3,
.contact-channels h3 {
  font-size: 1.55rem;
}

.message-location-intro {
  margin: 10px 0 0;
  color: var(--muted);
}

.location-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.message-composer label {
  display: block;
  margin: 22px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.location-field label {
  margin: 0 0 8px;
}

.contact-input,
.contact-message {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.contact-input {
  min-height: 48px;
  padding: 11px 12px;
}

.contact-message {
  min-height: 210px;
  resize: vertical;
  padding: 16px;
  line-height: 1.55;
}

.contact-input:focus,
.contact-message:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  outline: 0;
}

.contact-input[aria-invalid="true"] {
  border-color: #c52b2b;
  box-shadow: 0 0 0 3px color-mix(in srgb, #c52b2b 18%, transparent);
}

.contact-timezone {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-timezone strong {
  color: var(--ink);
}

.composer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.contact-copy {
  cursor: pointer;
  flex-shrink: 0;
}

.copy-status,
.contact-channels > p,
.contact-route-copy p {
  color: var(--muted);
}

.copy-status {
  font-size: 0.9rem;
}

.contact-channels {
  padding: 8px 0 0;
}

.contact-channels > p {
  margin: 12px 0 0;
}

.contact-route-card {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-raised) 76%, var(--green-soft));
  padding: 20px;
}

.contact-route-step {
  justify-self: start;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-route-copy strong,
.contact-route-copy p {
  display: block;
}

.contact-route-copy strong {
  font-size: 1.35rem;
}

.contact-route-copy p {
  margin: 6px 0 0;
  line-height: 1.5;
}

.contact-email-address {
  display: inline-block;
  margin-top: 10px;
  color: var(--green-deep);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-email-address[hidden],
.contact-route-navigation [hidden] {
  display: none;
}

.contact-route-action {
  width: 100%;
  min-height: 44px;
  text-align: center;
}

.contact-route-navigation {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.contact-route-navigation .button {
  flex: 1;
  cursor: pointer;
  text-align: center;
}

.disclaimer {
  width: var(--container);
  margin: 0 auto 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  padding: 24px;
}

.disclaimer h2 {
  font-size: 1.25rem;
}

.disclaimer p {
  margin: 10px 0 0;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
  padding: 28px max(16px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

@supports not (color: color-mix(in srgb, white, black)) {
  a {
    text-decoration-color: var(--green);
  }

  .site-header {
    background: var(--surface);
  }

  .button-primary:hover {
    background: var(--green);
  }
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-links a {
    flex: 1;
    text-align: center;
  }

  .hero-inner,
  .booking-hero-inner,
  .calendar-layout,
  .book-layout,
  .section-header,
  .strategy-layout,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 40px;
  }

  .booking-hero-inner {
    padding-top: 44px;
  }

  .calendar-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-range-wrap {
    justify-items: start;
  }

  .section-header p {
    grid-column: auto;
    grid-row: auto;
  }

  .snapshot-grid,
  .persona-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .book-cover-frame {
    width: min(100%, 330px);
  }

  .book-content {
    max-width: 720px;
  }

  .snapshot-grid article:nth-child(odd) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1120px);
  }

  .brand {
    flex: 1;
  }

  .brand-role {
    display: none;
  }

  .theme-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .theme-toggle {
    width: 42px;
    justify-content: center;
    padding: 0;
  }

  .language-option {
    min-width: 38px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    display: flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 9px 8px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .book-content h2 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .snapshot-grid,
  .persona-layout,
  .strategy-list,
  .quick-stats {
    grid-template-columns: 1fr;
  }

  .composer-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .location-fields {
    grid-template-columns: 1fr;
  }

  .contact-route-navigation {
    flex-direction: column;
  }

  .book-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .book-note {
    max-width: none;
  }

  .snapshot-grid article,
  .snapshot-grid article:first-child,
  .snapshot-grid article:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .quick-stats div,
  .quick-stats div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-stats div:last-child {
    border-bottom: 0;
  }

  .allocation-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section {
    padding: 64px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
