:root {
  color-scheme: light dark;
  --bg: #f6f7fb;
  --bg-dark: #0b1020;
  --surface: #ffffff;
  --surface-dark: #121a33;
  --text: #0f1629;
  --text-dark: #f4f6fb;
  --muted: #5b657a;
  --muted-dark: #9aa6bf;
  --accent: #1b4dff;
  --accent-dark: #8aa2ff;
  --cta: #ff4d4f;
  --cta-dark: #ff7072;
  --border: #e3e7ef;
  --border-dark: rgba(255, 255, 255, 0.12);
  --glow: 0 18px 45px rgba(27, 77, 255, 0.18);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  --radius: 18px;
  --max-width: 1160px;
  --overlay-light: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.25)
  );
  --overlay-dark: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.45)
  );
  --section-base: transparent;
  --section-soft: #f1f4ff;
  --section-emphasis: #e8edff;
  --section-cta: #111a3a;
  --status-green: #1aff64;
  --status-amber: #ffb300;
  --status-red: #ff3b3b;

  --brand-glow: drop-shadow(0 0 0 transparent);

  --logo-size: 80px;
}

html[data-theme="light"] {
  color-scheme: light;
  --brand-glow: drop-shadow(0 2px 10px rgba(59, 92, 204, 0.55));
}

html[data-theme="dark"] {
  color-scheme: dark;
  --section-base: transparent;
  --section-soft: #111832;
  --section-emphasis: #0d132a;
  --section-cta: #0b1126;

  --brand-glow: drop-shadow(0 2px 12px rgba(255, 255, 255, 0.65));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #ffffff 0%, var(--bg) 60%);
  line-height: 1.6;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  overflow-x: hidden;
}

html[data-theme="dark"] body {
  color: var(--text-dark);
  background: radial-gradient(
    circle at top left,
    #1a2447 0%,
    var(--bg-dark) 70%
  );
}

main section {
  scroll-margin-top: 96px;
}

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

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

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    padding 0.3s ease;
}

.site-header.is-solid {
  background: rgba(246, 247, 251, 0.95);
  border-bottom-color: var(--border);
}

html[data-theme="dark"] .site-header.is-solid {
  background: rgba(11, 16, 32, 0.92);
  border-bottom-color: var(--border-dark);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.9rem 0;
  gap: 1.5rem;
  transition: padding 0.3s ease;
}

.site-header.is-solid .header-inner {
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  width: clamp(96px, 14vw, 140px);
  height: auto;
  fill: none;
}

.btech-logo {
  width: var(--logo-size);
  height: var(--logo-size);
}

.brand-text {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: currentColor;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  margin-left: -8px;
}

.brand-text-group {
  transition: filter 0.25s ease;
}

.brand:hover .brand-text-group,
.brand:focus-visible .brand-text-group {
  filter: var(--brand-glow);
}

.brand-x line {
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: square;
}

.brand-logo {
  color: var(--text);
  transition:
    transform 0.2s ease,
    color 0.3s ease;
}

html[data-theme="dark"] .brand-logo {
  color: var(--text-dark);
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: scale(1.04);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-width: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  padding: 0;
  margin: 0;
}

.nav-list a,
.dropdown-toggle {
  font-weight: 600;
  color: var(--muted);
  position: relative;
  padding-bottom: 0.2rem;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

html[data-theme="dark"] .nav-list a,
html[data-theme="dark"] .dropdown-toggle {
  color: var(--muted-dark);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: inherit;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.dropdown-toggle:hover::before,
.dropdown-toggle:focus-visible::before {
  transform: scaleX(1);
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  font: inherit;
  color: inherit;
}

.dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.dropdown-toggle::after {
  content: "";
  position: static;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s ease;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 260px;
  padding: 0.5rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 20;
}

html[data-theme="dark"] .dropdown {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.has-dropdown.is-open .dropdown-toggle::after,
.has-dropdown:focus-within .dropdown-toggle::after {
  transform: rotate(-135deg);
}

.dropdown-link {
  display: grid;
  gap: 0.2rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  color: var(--text);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

html[data-theme="dark"] .dropdown-link {
  color: var(--text-dark);
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
  background: rgba(27, 77, 255, 0.08);
}

.dropdown-title {
  font-weight: 600;
}

.dropdown-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

html[data-theme="dark"] .dropdown-sub {
  color: var(--muted-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-actions--mobile {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--cta);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--cta-dark);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 77, 79, 0.35);
}

.theme-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

html[data-theme="dark"] .theme-toggle {
  background: #1b2442;
  border-color: var(--border-dark);
}

.theme-icon {
  width: 16px;
  height: 16px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

html[data-theme="dark"] .theme-icon {
  color: var(--muted-dark);
}

.theme-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle:hover .theme-icon,
.theme-toggle:focus-visible .theme-icon {
  transform: translateY(-1px);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  box-shadow: 0 8px 18px rgba(27, 77, 255, 0.35);
}

html[data-theme="dark"] .toggle-thumb {
  transform: translateX(24px);
  background: var(--cta);
  box-shadow: 0 8px 18px rgba(255, 77, 79, 0.35);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(27, 77, 255, 0.35);
  outline-offset: 4px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(27, 77, 255, 0.35);
  outline-offset: 4px;
  border-radius: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 6rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-light);
  transition: background 0.3s ease;
}

html[data-theme="dark"] .hero-overlay {
  background: var(--overlay-dark);
}

.hero-cover {
  padding: 7rem 0 5rem;
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

html[data-theme="dark"] .hero-bg-image {
  filter: brightness(0.55);
}

.hero-cover .hero-copy {
  color: #ffffff;
}

html[data-theme="light"] .hero-cover .hero-copy {
  color: var(--text);
}

html[data-theme="dark"] .hero-cover .hero-copy {
  color: #ffffff;
}

.hero-cover .hero-subhead,
.hero-cover .eyebrow,
.hero-cover .trust {
  color: inherit;
}

.hero-cover .hero-subhead {
  opacity: 0.9;
}

.hero-cover .button.ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
}

html[data-theme="dark"] .hero-cover .button.ghost {
  background: rgba(18, 26, 51, 0.85);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

html[data-theme="dark"] .hero-subhead {
  color: var(--muted-dark);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

html[data-theme="dark"] .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:focus-visible {
  outline: 3px solid rgba(27, 77, 255, 0.35);
  outline-offset: 4px;
}

.button.primary {
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(255, 77, 79, 0.35);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background: var(--cta-dark);
  box-shadow: 0 20px 45px rgba(255, 77, 79, 0.45);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button.ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
}

html[data-theme="dark"] .button.ghost {
  background: rgba(18, 26, 51, 0.85);
  border-color: var(--border-dark);
  color: var(--text-dark);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.trust {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 600;
}

html[data-theme="dark"] .trust {
  color: var(--muted-dark);
}

.hero-card {
  background: rgba(255, 255, 255, 0.88);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

html[data-theme="dark"] .hero-card {
  background: rgba(18, 26, 51, 0.88);
  border: 1px solid var(--border-dark);
}

.hero-media {
  display: grid;
  place-items: center;
}

.hero-media-frame {
  position: relative;
  width: min(100%, 420px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.hero-media-pulse {
  width: 100%;
  height: auto;
  display: block;
  animation: heroPulse 3.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heroPulse {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.03);
    filter: brightness(1.04);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.stat {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

html[data-theme="dark"] .stat {
  border-bottom-color: var(--border-dark);
}

.stat:last-of-type {
  border-bottom: none;
}

.stat-label {
  margin: 0;
  color: var(--muted);
}

html[data-theme="dark"] .stat-label {
  color: var(--muted-dark);
}

.stat-value {
  margin: 0.2rem 0 0;
  font-size: 1.6rem;
  font-weight: 800;
}

.stat-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

html[data-theme="dark"] .stat-note {
  color: var(--muted-dark);
}

.section {
  padding: 4.8rem 0;
}

.section-base {
  background: var(--section-base);
}

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

.section-emphasis {
  background: var(--section-emphasis);
}

.section-cta {
  background: var(--section-cta);
}

.section.alt {
  background: #ffffff;
}

html[data-theme="dark"] .section.alt {
  background: #0f152d;
}

.availability-section {
  background: var(--section-cta);
  color: var(--text-dark);
}

.availability-section .eyebrow {
  color: rgba(244, 246, 251, 0.7);
}

.availability-section h2 {
  color: var(--text-dark);
}

.availability-subline {
  color: rgba(244, 246, 251, 0.78);
  margin: 0;
}

.availability-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.availability-card {
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.availability-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  width: fit-content;
}

.availability-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.availability-status--open {
  color: var(--status-green);
  border-color: rgba(26, 255, 100, 0.35);
  box-shadow: 0 0 18px rgba(26, 255, 100, 0.25);
}

.availability-status--limited {
  color: var(--status-amber);
  border-color: rgba(255, 179, 0, 0.35);
  box-shadow: 0 0 18px rgba(255, 179, 0, 0.2);
}

.availability-status--full {
  color: var(--status-red);
  border-color: rgba(255, 59, 59, 0.35);
  box-shadow: 0 0 18px rgba(255, 59, 59, 0.2);
}

.availability-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  width: fit-content;
}

.availability-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.section-header {
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

html[data-theme="dark"] .card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(27, 77, 255, 0.2);
  border-color: rgba(27, 77, 255, 0.35);
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

html[data-theme="dark"] .about-panel {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li::before {
  content: "!";
  margin-right: 0.6rem;
  color: var(--cta);
  font-weight: 800;
}

.team-grid {
  display: flex;
  gap: 1.5rem;
}

.team-grid img {
  border-radius: var(--radius);
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

html[data-theme="dark"] .team-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.team-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 50px rgba(27, 77, 255, 0.25);
  border-color: rgba(27, 77, 255, 0.45);
}

.team-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-media img {
  width: 50%;
  height: auto;
  display: block;
  transition: transform 0.25s ease;
}

.team-card:hover .team-media img {
  transform: scale(1.05);
}

.team-badge {
  position: absolute;
  bottom: 1rem;
  left: 40%;
  background: rgba(15, 22, 41, 0.85);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.team-body {
  padding: 1.6rem;
}

.team-role {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

html[data-theme="dark"] .team-role {
  color: var(--muted-dark);
}

.proof-grid {
  display: grid;
  gap: 1.5rem;
}

.proof-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.8rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

html[data-theme="dark"] .proof-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(27, 77, 255, 0.15);
  border-color: rgba(27, 77, 255, 0.35);
}

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

.proof-list li::before {
  content: ">";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.6rem;
}

.proof-note {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--text);
}

html[data-theme="dark"] .proof-note {
  color: var(--text-dark);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(27, 77, 255, 0.1);
  color: var(--text);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(27, 77, 255, 0.25);
}

html[data-theme="dark"] .proof-badge {
  background: rgba(138, 162, 255, 0.12);
  border-color: rgba(138, 162, 255, 0.35);
  color: var(--text-dark);
}

.reference-scroll {
  display: grid;
  gap: 1.5rem;
}

.reference-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

html[data-theme="dark"] .reference-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.reference-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 45px rgba(27, 77, 255, 0.2);
  border-color: rgba(27, 77, 255, 0.35);
}

.reference-media {
  position: relative;
  background: rgba(27, 77, 255, 0.06);
}

.reference-media img {
  width: 100%;
  height: auto;
  display: block;
}

.reference-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(15, 22, 41, 0.85);
  color: #ffffff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.reference-body {
  padding: 1.5rem;
}

.reference-outcome {
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.reference-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.reference-bullets li::before {
  content: ">";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.6rem;
}

.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.reference-tags span {
  border: 1px solid rgba(27, 77, 255, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

html[data-theme="dark"] .reference-tags span {
  border-color: rgba(138, 162, 255, 0.35);
  color: var(--text-dark);
}

.trust-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .trust-panel {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.trust-brand {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.trust-logo {
  color: var(--text);
}

html[data-theme="dark"] .trust-logo {
  color: var(--text-dark);
}

.trust-stars {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.trust-stars svg {
  width: 22px;
  height: 22px;
  fill: var(--cta);
}

.trust-copy {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-weight: 600;
}

html[data-theme="dark"] .trust-copy {
  color: var(--muted-dark);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 600;
}

html[data-theme="dark"] .trust-list {
  color: var(--muted-dark);
}

.trust-note {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

html[data-theme="dark"] .trust-note {
  color: var(--muted-dark);
}

.trust-link {
  display: inline-flex;
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--accent);
}

.micro-cta {
  padding-top: 0;
}

.micro-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

html[data-theme="dark"] .micro-cta-inner {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.micro-cta-button {
  padding: 0.7rem 1.2rem;
}

.trust-cta {
  padding-top: 0;
}

.trust-cta-inner {
  text-align: center;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.6rem;
  font-weight: 600;
}

.problem-list li::before {
  content: "!";
  color: var(--cta);
  font-weight: 800;
  margin-right: 0.6rem;
}

.problem-note {
  margin: 0;
  font-weight: 700;
}

.solution-grid {
  display: grid;
  gap: 0.8rem;
}

.solution-item {
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 700;
}

html[data-theme="dark"] .solution-item {
  border-color: var(--border-dark);
  background: var(--surface-dark);
}

.project-showcase {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.project-item {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

html[data-theme="dark"] .project-item {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.project-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 40px rgba(27, 77, 255, 0.18);
  border-color: rgba(27, 77, 255, 0.35);
}

.project-copy h3 {
  margin-bottom: 0.6rem;
}

.project-devices {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.device {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(27, 77, 255, 0.2);
  background: rgba(27, 77, 255, 0.08);
  padding: 0.4rem;
  box-shadow:
    0 12px 30px rgba(15, 20, 40, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(120, 140, 255, 0.18);
}

html[data-theme="dark"] .device {
  border-color: rgba(27, 77, 255, 0.4);
  background: rgba(27, 77, 255, 0.12);
  box-shadow:
    0 14px 34px rgba(5, 10, 25, 0.45),
    0 0 0 1px rgba(120, 150, 255, 0.18),
    0 10px 26px rgba(40, 90, 255, 0.28);
}

.device-screen {
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  width: 100%;
  height: 100%;
}

html[data-theme="dark"] .device-screen {
  background: var(--surface-dark);
}

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

.device-laptop {
  width: min(100%, 420px);
  aspect-ratio: 16 / 10;
}

.device-tablet,
.device-phone {
  position: absolute;
  bottom: -8%;
}

.device-tablet {
  right: 6%;
  width: min(34%, 180px);
  aspect-ratio: 3 / 4;
  padding: 0.25rem;
}

.device-phone {
  left: 6%;
  width: min(24%, 120px);
  aspect-ratio: 9 / 19;
  padding: 0.2rem;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.8rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  position: relative;
}

html[data-theme="dark"] .pricing-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(27, 77, 255, 0.18);
  border-color: rgba(27, 77, 255, 0.35);
}

.pricing-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

html[data-theme="dark"] .pricing-label {
  color: var(--muted-dark);
}

.pricing-outcome {
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pricing-scope,
.pricing-proof {
  margin: 0 0 0.6rem;
  font-weight: 600;
  color: var(--muted);
}

html[data-theme="dark"] .pricing-scope,
html[data-theme="dark"] .pricing-proof {
  color: var(--muted-dark);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.pricing-list li::before {
  content: ">";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.6rem;
}

.pricing-button {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  font-size: 0.95rem;
  border-radius: 18px;
}

.pricing-badge {
  position: absolute;
  top: -40px;
  right: -20px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 77, 79, 0.35);
  background: rgba(255, 77, 79, 0.12);
  font-weight: 700;
  animation: badgePulse 2.6s ease-in-out infinite;
}

.badge-old {
  text-decoration: line-through;
  color: var(--muted);
}

.badge-save {
  color: var(--cta);
  font-size: 0.8rem;
}

html[data-theme="dark"] .pricing-badge {
  border-color: rgba(255, 77, 79, 0.5);
}

html[data-theme="dark"] .badge-old {
  color: var(--muted-dark);
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 77, 79, 0);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(255, 77, 79, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 77, 79, 0);
  }
}

.pricing-actions {
  display: grid;
  gap: 0.6rem;
}

.pricing-link {
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  font-size: 0.95rem;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.6rem 0 1rem;
  font-weight: 700;
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
}

html[data-theme="dark"] .price-old {
  color: var(--muted-dark);
}

.price-new {
  color: var(--text);
}

html[data-theme="dark"] .price-new {
  color: var(--text-dark);
}

.price-save {
  background: rgba(255, 77, 79, 0.15);
  color: var(--cta);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.pricing-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.pricing-signals span {
  border: 1px solid rgba(27, 77, 255, 0.2);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

html[data-theme="dark"] .pricing-signals span {
  border-color: rgba(138, 162, 255, 0.35);
}

.trust-points,
.risk-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  font-weight: 600;
}

.trust-points li::before,
.risk-list li::before {
  content: ">";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.6rem;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.faq-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

html[data-theme="dark"] .faq-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

.why-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.6rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

html[data-theme="dark"] .why-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(27, 77, 255, 0.16);
  border-color: rgba(27, 77, 255, 0.3);
}

.why-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.why-cta p {
  margin: 0;
  max-width: 560px;
  font-weight: 600;
}

.tag-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.tag {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

html[data-theme="dark"] .tag {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.process {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.process li {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.9rem;
  position: relative;
}

html[data-theme="dark"] .process li {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  font-weight: 800;
  color: var(--cta);
}

.cta {
  background: radial-gradient(
    circle at top left,
    #1d2440 0%,
    var(--bg-dark) 70%
  );
  color: #ffffff;
}

.cta .section-header p,
.cta .section-header h2 {
  color: #ffffff;
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.cta-note {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.calendly-wrap {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem;
  box-shadow: var(--shadow);
}

.calendly-inline-widget {
  min-height: 600px;
  width: 100%;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

html[data-theme="dark"] .site-footer {
  background: #0f152d;
  border-top-color: var(--border-dark);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-logo {
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

html[data-theme="dark"] .footer-social a {
  border-color: var(--border-dark);
  color: var(--text-dark);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--accent);
  border-color: rgba(27, 77, 255, 0.45);
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(27, 77, 255, 0.25);
}

.footer-copy {
  color: var(--muted);
  margin: 0;
}

html[data-theme="dark"] .footer-copy {
  color: var(--muted-dark);
}

/* Floating actions */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1200;
  pointer-events: none;
  align-items: flex-end;
}

.floating-button {
  pointer-events: auto;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.floating-button.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-cta {
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 77, 79, 0.35);
}

.floating-cta:hover,
.floating-cta:focus-visible {
  background: var(--cta-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 18px 36px rgba(255, 77, 79, 0.45);
}

.floating-top {
  background: rgba(15, 22, 41, 0.08);
  color: inherit;
  border: 1px solid var(--border);
  text-align: center;
}

html[data-theme="dark"] .floating-top {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-dark);
}

.floating-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.floating-top:hover,
.floating-top:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--glow);
}

.floating-top:hover svg,
.floating-top:focus-visible svg {
  transform: translateY(-2px) scale(1.1);
  filter: drop-shadow(0 6px 16px rgba(27, 77, 255, 0.35));
}

.floating-button:focus-visible {
  outline: 3px solid rgba(27, 77, 255, 0.35);
  outline-offset: 4px;
}

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

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reference-scroll {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .project-item {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .project-item--reverse .project-copy {
    order: 2;
  }

  .project-item--reverse .project-devices {
    order: 1;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  html[data-theme="dark"] .primary-nav {
    background: var(--surface-dark);
    border-color: var(--border-dark);
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .has-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    min-width: 0;
    transform: translateY(-4px);
    opacity: 0;
    pointer-events: auto;
    box-shadow: none;
    margin-top: 0.4rem;
    display: grid;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.2rem;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  html[data-theme="dark"] .dropdown {
    background: var(--surface-dark);
    border-color: var(--border-dark);
  }

  .has-dropdown.is-open .dropdown {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-link {
    padding: 0.55rem 0.6rem;
  }

  .dropdown-title {
    font-size: 0.9rem;
  }

  .dropdown-sub {
    font-size: 0.75rem;
  }

  .dropdown-link + .dropdown-link {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  html[data-theme="dark"] .dropdown-link + .dropdown-link {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .header-right {
    gap: 0.5rem;
  }

  .nav-actions--desktop {
    display: none;
  }

  .nav-actions--mobile {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .project-item--reverse .project-copy,
  .project-item--reverse .project-devices {
    order: 0;
  }
}

@media (max-width: 800px) {
  .reference-scroll {
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 85%);
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
  }

  .reference-card {
    scroll-snap-align: start;
  }
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .floating-actions {
    right: 0.9rem;
    bottom: 0.9rem;
    gap: 0.6rem;
  }

  .floating-button {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .primary-nav {
    left: 0;
    right: 0;
    width: 100vw;
    border-radius: 0 0 18px 18px;
  }

  .project-devices {
    min-height: 220px;
  }

  .device-tablet {
    right: 2%;
    bottom: -10%;
  }

  .device-phone {
    left: 2%;
    bottom: -6%;
  }

  .availability-status--open,
  .availability-status--limited,
  .availability-status--full {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
  }

  .availability-dot {
    box-shadow: 0 0 8px currentColor;
  }
}

@media (max-width: 420px) {
  .button {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .pricing-button {
    font-size: 0.9rem;
    padding: 0.7rem 0.9rem;
  }

  .dropdown-sub {
    display: none;
  }
}

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

  .no-aos [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
/* Base layout moved from inline critical styles */
:root {
  color-scheme: light dark;
}

html {
  background: #f6f7fb;
}

html[data-theme="dark"] {
  background: #0b1020;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: inherit;
  color: #0f1629;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
}

.hero {
  padding: 6rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  background: #ff4d4f;
  color: #ffffff;
}
