﻿:root {
  --font-display: "Syne", "Space Grotesk", "Work Sans", system-ui, sans-serif;
  --font-body: "Work Sans", "Space Grotesk", system-ui, sans-serif;
  --bg: #0b0b0b;
  --bg-soft: #151515;
  --bg-dark: #050505;
  --text: #f5f1e8;
  --text-light: #ffffff;
  --muted: #c2b9a6;
  --accent: #f2b705;
  --accent-2: #f0a500;
  --accent-3: #ffd569;
  --line: #2a2a2a;
  --card: #141414;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  --radius: 18px;
  --ticker-height: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at 20% 12%, rgba(242, 183, 5, 0.18), transparent 40%),
    radial-gradient(circle at 85% 8%, rgba(240, 165, 0, 0.18), transparent 42%),
    radial-gradient(circle at 60% 85%, rgba(142, 88, 0, 0.2), transparent 45%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.6;
  padding-bottom: calc(var(--ticker-height) + env(safe-area-inset-bottom));
}

strong {
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 183, 5, 0.2), transparent 38%),
    radial-gradient(circle at 85% 24%, rgba(240, 165, 0, 0.16), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(158, 94, 0, 0.2), transparent 46%);
}

body::after {
  background-image: linear-gradient(transparent 95%, rgba(255, 255, 255, 0.04) 95%);
  background-size: 100% 36px;
  opacity: 0.25;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #1b1b1b;
  border-bottom: 1px solid #2a2a2a;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(12px, 1.6vw, 16px) 0;
  gap: clamp(16px, 3vw, 36px);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo img {
  display: block;
  height: auto;
  width: auto;
  max-height: 120px;
  max-width: 100%;
}

.site-nav {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 1fr auto;
  font-size: 0.95rem;
  flex: 1;
}

.site-nav a {
  padding: 10px 4px;
  color: rgba(245, 241, 232, 0.78);
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 2.2vw, 26px);
  justify-content: center;
}

.nav-links > a,
.nav-links > .nav-dropdown {
  flex-shrink: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
  padding: 10px 4px;
  color: rgba(245, 241, 232, 0.78);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown summary::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  border: 5px solid transparent;
  border-top-color: rgba(245, 241, 232, 0.65);
  transform: translateY(2px);
  transition: transform 0.2s ease, border-top-color 0.2s ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary:focus-visible {
  outline: 2px solid rgba(242, 183, 5, 0.7);
  outline-offset: 2px;
}

.nav-dropdown[open] summary {
  color: var(--accent);
}

.nav-dropdown.is-active summary {
  color: var(--accent);
}

.nav-dropdown.is-active summary::after {
  border-top-color: var(--accent);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -10px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  background: #171717;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-drop-menu a {
  padding: 6px 4px;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu,
.nav-dropdown[open] .nav-drop-menu {
  display: flex;
}

.nav-dropdown:hover summary,
.nav-dropdown:focus-within summary {
  color: var(--accent);
}

.nav-dropdown:hover summary::after,
.nav-dropdown:focus-within summary::after,
.nav-dropdown[open] summary::after {
  border-top-color: var(--accent);
  transform: translateY(2px) rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 16px);
  justify-self: end;
}

.nav-actions .nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6px 64px;
  border-radius: 999px;
  border: 1px solid rgba(242, 183, 5, 0.35);
  color: rgba(245, 239, 225, 0.85);
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(10, 10, 10, 0.3);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-actions .nav-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  opacity: 0.5;
  transform: skewX(-20deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.nav-actions .nav-button.ghost {
  background: transparent;
}

.nav-actions .nav-button.solid {
  color: rgba(245, 239, 225, 0.9);
  border-color: rgba(242, 183, 5, 0.45);
  background: rgba(242, 183, 5, 0.12);
  box-shadow: none;
}

.nav-actions .nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(242, 183, 5, 0.35);
}

.nav-actions .nav-button:hover::after {
  left: 120%;
}

.nav-actions .nav-button.ghost:hover {
  color: #ffffff;
  border-color: rgba(242, 183, 5, 0.8);
  background: rgba(242, 183, 5, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(242, 183, 5, 0.45);
}

.nav-actions .nav-button.solid:hover {
  color: #1a1100;
  border-color: rgba(255, 224, 138, 0.95);
  background: linear-gradient(135deg, #ffe9a6 0%, #f2b705 55%, #e39d00 100%);
  box-shadow: 0 18px 34px rgba(242, 183, 5, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.nav-actions .nav-button:focus-visible {
  outline: 2px solid rgba(242, 183, 5, 0.7);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #1f1f1f;
  color: var(--text);
  padding: 0;
  width: 46px;
  height: 40px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 0;
  cursor: pointer;
  position: relative;
  z-index: 30;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-size 0.2s ease;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle::before {
  top: 12px;
}

.nav-toggle::after {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] {
  background-size: 0 0;
  border-color: rgba(242, 183, 5, 0.7);
  box-shadow: 0 0 0 2px rgba(242, 183, 5, 0.2);
}

.nav-toggle[aria-expanded="true"]::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

main {
  display: block;
}

.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}

.section.dark {
  background: radial-gradient(circle at 18% 22%, rgba(242, 183, 5, 0.2), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(142, 88, 0, 0.25), transparent 45%),
    var(--bg-dark);
  color: var(--text-light);
}

.section.dark a:hover {
  color: #ffffff;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0;
}

.section-header p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.section.dark .section-header p {
  color: rgba(245, 241, 232, 0.72);
}

.hero {
  padding-top: 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "copy visual"
    "list list";
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.hero-copy {
  grid-area: copy;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.9rem);
  margin: 14px 0 18px;
  line-height: 1.05;
}

.hero-copy p {
  font-size: 0.98rem;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 183, 5, 0.7);
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent-3);
}

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

.eyebrow.dark::before {
  background: var(--accent-2);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #1a1200;
  box-shadow: 0 16px 32px rgba(242, 183, 5, 0.35);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(242, 183, 5, 0.6);
}

.button.secondary:hover {
  color: #1a1100;
  border-color: rgba(255, 224, 138, 0.95);
  background: linear-gradient(135deg, #ffe9a6 0%, #f2b705 55%, #e39d00 100%);
  box-shadow: 0 18px 34px rgba(242, 183, 5, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border-color: rgba(242, 183, 5, 0.45);
}

.button.light {
  background: var(--accent);
  color: #1a1200;
}

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

.hero-list {
  grid-area: list;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
  width: 100%;
  justify-self: stretch;
}

.hero-list .stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 183, 5, 0.2);
}

.hero-list .stat strong {
  font-size: 1.2rem;
  display: block;
}

.hero-list .stat .stat-subtitle {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-list .stat .stat-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  display: grid;
  gap: 6px;
}

.hero-list .stat .stat-list li {
  margin: 0;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  min-height: clamp(240px, 40vw, 420px);
  margin-top: clamp(16px, 8vw, 100px);
  border-radius: 30px;
  overflow: hidden;
  background: none;
  box-shadow: none;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(12, 12, 12, 0.7);
  border: 1px solid rgba(242, 183, 5, 0.3);
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
}

.page-hero {
  padding-top: clamp(90px, 10vw, 140px);
}

.page-about .history-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.page-about .history-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.page-about .history-intro .lead {
  margin: 0 0 16px;
}

.page-about .history-intro .lead:last-child {
  margin-bottom: 0;
}

.page-about .history-timeline span {
  min-width: 60px;
  font-size: 1rem;
}

.page-about .history-timeline strong {
  display: block;
  margin-bottom: 6px;
}

.page-about .history-timeline p {
  margin: 0;
  color: var(--muted);
}

.page-about .history-timeline p + p {
  margin-top: 8px;
}

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

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

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

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

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

.card.dark {
  background: rgba(17, 17, 17, 0.9);
  border-color: rgba(242, 183, 5, 0.18);
  box-shadow: none;
}

.card h3 {
  margin-top: 0;
  font-family: var(--font-display);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.video-embed {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.feature-list li {
  color: var(--muted);
}

.feature-list strong {
  color: var(--text);
  font-weight: 600;
}

.ats-block {
  display: grid;
  gap: 18px;
}

.ats-block h3,
.ats-block h4,
.ats-block p,
.ats-block ul {
  margin: 0;
}

.ats-block h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.ats-section {
  display: grid;
  gap: 10px;
}

.ats-block .feature-list {
  margin: 0;
}

.legal-block h3,
.legal-block h4,
.legal-block p,
.legal-block ul {
  margin: 0;
}

.legal-block {
  display: grid;
  gap: 18px;
}

.legal-section {
  display: grid;
  gap: 10px;
}

.legal-block .feature-list {
  margin: 0;
}

.section.dark .card p {
  color: rgba(245, 241, 232, 0.72);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(242, 183, 5, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.9);
}

.step span {
  font-weight: 600;
  color: var(--accent);
}

.section.dark .step {
  background: rgba(10, 10, 10, 0.65);
  border-color: rgba(242, 183, 5, 0.18);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ticker span,
.ticker a {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section.dark .ticker span,
.section.dark .ticker a {
  border-color: rgba(242, 183, 5, 0.25);
  color: rgba(245, 241, 232, 0.78);
}

.live-ticker {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  height: calc(var(--ticker-height) + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(12, 12, 12, 0.96);
  border-top: 1px solid rgba(242, 183, 5, 0.2);
  backdrop-filter: blur(6px);
}

.live-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.live-ticker__items {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.85);
}

.ticker-item strong {
  font-weight: 600;
  letter-spacing: 0.12em;
}

.ticker-item em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}

.ticker-item .up {
  color: #63e28f;
}

.ticker-item .down {
  color: #ff6b6b;
}

.ticker-item .neutral {
  color: rgba(245, 241, 232, 0.6);
}

.live-ticker:hover .live-ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cta {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(8, 8, 8, 0.98));
  color: var(--text);
  border-radius: 30px;
  padding: clamp(36px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(242, 183, 5, 0.25);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 60px rgba(242, 183, 5, 0.12);
}

.cta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta p {
  margin: 0;
  max-width: 520px;
}

.footer {
  padding: 48px 0 60px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 241, 232, 0.75);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer a {
  color: rgba(245, 241, 232, 0.6);
}

.footer small {
  display: block;
  margin-top: 0;
  color: rgba(245, 241, 232, 0.5);
}

.footer-bottom {
  margin-top: 28px;
}

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

.form label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  background: rgba(10, 10, 10, 0.9);
  color: var(--text);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(245, 241, 232, 0.45);
}

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

.highlight {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(242, 183, 5, 0.16);
  color: #fce9b5;
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "list"
      "visual";
  }


  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .logo {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .logo img {
    max-height: 100px;
  }

  .nav-wrap {
    padding: 14px 0;
  }

  .site-nav {
    position: fixed;
    inset: 68px 16px auto;
    background: #141414;
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-menu {
    position: static;
    min-width: unset;
    padding: 4px 0 0 12px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }

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

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

}

@media (max-width: 640px) {
  .logo {
    display: inline-block;
    max-width: 60vw;
    white-space: normal;
    line-height: 1.1;
    letter-spacing: 0.12em;
  }

  .logo img {
    max-height: 90px;
  }

  .site-nav {
    inset: 60px 12px auto;
    padding: 18px;
  }

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

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

  .hero-copy p {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .step {
    flex-direction: column;
  }

  .cta {
    padding: 28px;
  }

  .page-hero {
    padding-top: clamp(72px, 18vw, 110px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

