@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:ital,wght@0,700;0,800;1,700;1,800&display=swap');

:root {
  color-scheme: dark;
  --background: oklch(0.09 0.018 260);
  --foreground: oklch(0.97 0.004 240);
  --card: oklch(0.12 0.020 260);
  --primary: oklch(0.55 0.22 260);
  --primary-fg: oklch(0.99 0.004 240);
  --secondary: oklch(0.15 0.022 260);
  --muted-fg: oklch(0.50 0.015 255);
  --border: oklch(0.20 0.025 260);
  --input: oklch(0.16 0.022 260);
  --electric: oklch(0.68 0.26 255);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 { letter-spacing: -0.02em; }

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

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

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ── Utilities ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--electric);
}

.heading-display {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.btn-royal {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.18s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-royal:hover {
  transform: translateY(-2px) skewX(-1deg);
  box-shadow: 0 10px 36px -6px oklch(0.55 0.22 260 / 0.55);
}
.btn-royal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(0.80 0.18 255 / 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn-royal:hover::after { opacity: 1; }

.btn-ghost-royal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--foreground);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.14s ease, border-color 0.18s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-ghost-royal:hover {
  background: oklch(0.55 0.22 260 / 0.12);
  transform: translateY(-2px);
  border-color: var(--electric);
}

.card-geo {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.card-geo:hover {
  transform: translateY(-4px);
  border-color: oklch(0.55 0.22 260 / 0.6) !important;
  box-shadow: 0 16px 48px -12px oklch(0.55 0.22 260 / 0.22);
}

.clip-tag {
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.noise-overlay { position: relative; }
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  opacity: 0.35;
}

.ticker-wrap {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: oklch(0.12 0.020 260 / 0.4);
  padding: 0.875rem 0;
}
.ticker-fade-l, .ticker-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 10;
  pointer-events: none;
}
.ticker-fade-l { left: 0; background: linear-gradient(to right, oklch(0.12 0.020 260), transparent); }
.ticker-fade-r { right: 0; background: linear-gradient(to left, oklch(0.12 0.020 260), transparent); }
.ticker-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up 0.5s ease both; }
.animate-fade-up-delay { animation: fade-up 0.5s 0.12s ease both; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: oklch(0.09 0.018 260 / 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav__logo { display: flex; align-items: center; gap: 0.625rem; cursor: pointer; }
.nav__logo-icon {
  width: 2rem; height: 2rem;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
  transition: background 0.2s;
}
.nav__logo:hover .nav__logo-icon { background: var(--electric); }
.nav__logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.nav__logo-text span { color: var(--primary); }
.nav__links { display: none; align-items: center; gap: 2rem; list-style: none; }
.nav__links a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--primary); }
.nav__cta { display: none; }
.nav__burger {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--muted-fg);
  cursor: pointer;
}
.nav__mobile {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
}
@media (min-width: 1024px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__burger { display: none; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg-slash {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(118deg, oklch(0.55 0.22 260 / 0.10) 0%, transparent 52%);
}
.hero__bg-corner {
  position: absolute; top: 0; right: 0;
  width: 420px; height: 420px; pointer-events: none;
  background: oklch(0.55 0.22 260 / 0.06);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 100% 40%);
}
.hero__grid {
  position: absolute; inset: 0; opacity: 0.025; pointer-events: none;
  background-image: linear-gradient(to right, var(--electric) 1px, transparent 1px),
    linear-gradient(to bottom, var(--electric) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__content {
  position: relative; z-index: 10;
  padding: 7rem 0 4rem;
  width: 100%;
}
.hero__grid-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .hero__content { padding: 8rem 0 5rem; }
}
.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
}
.hero__highlight {
  display: inline-block;
  padding: 0 0.75rem;
  background: var(--primary);
  color: white;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.hero__desc {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
}
.hero__desc strong { color: var(--foreground); }
.hero__checks { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero__checks li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); }
.hero__check-icon {
  width: 1.25rem; height: 1.25rem;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 50%, calc(100% - 5px) 100%, 0 100%);
}
.hero__btns { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero__btns { flex-direction: row; } }
.hero__stats {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.hero__stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}
.hero__stat-unit { font-size: 0.875rem; font-weight: 700; color: var(--electric); text-transform: uppercase; }
.hero__stat-label { font-size: 0.6875rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.125rem; }

.hero__form-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.6);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
@media (min-width: 1024px) { .hero__form-card { padding: 2rem; } }
.hero__form-stripe { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--primary); }
.hero__form-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.hero__form-sub { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 1.5rem; line-height: 1.6; }

.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  margin-bottom: 0.375rem;
}
.form-label .req { color: var(--primary); margin-left: 0.25rem; }
.form-input {
  width: 100%;
  background: var(--input);
  border: 1px solid var(--border);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--primary); }
.form-input::placeholder { color: oklch(0.50 0.015 255 / 0.4); }
.form-note { font-size: 0.625rem; color: oklch(0.50 0.015 255 / 0.5); text-align: center; line-height: 1.6; margin-top: 0.5rem; }
.form-note a { text-decoration: underline; }
.form-success { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2.5rem 0; text-align: center; }
.form-success__icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.hero__avatars {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__avatar-stack { display: flex; }
.hero__avatar {
  width: 1.75rem; height: 1.75rem;
  border: 2px solid var(--card);
  margin-left: -0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem; font-weight: 700;
  color: var(--electric);
  background: var(--secondary);
}
.hero__avatar:first-child { margin-left: 0; }
.hero__avatar-note { font-size: 0.6875rem; color: var(--muted-fg); text-align: right; line-height: 1.4; }
.hero__avatar-note strong { color: var(--foreground); }

/* ── Sections ── */
.section { padding: 5rem 0; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section--tint { background: oklch(0.55 0.22 260 / 0.04); }
.section--slash::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(108deg, oklch(0.55 0.22 260 / 0.06) 0%, transparent 50%);
}
.section__top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary);
}
.section__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .section__header--end { align-items: flex-end; }
}
.section__title { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.section__title .accent { color: var(--primary); }
.section__aside { font-size: 0.875rem; color: var(--muted-fg); max-width: 20rem; line-height: 1.7; }
.section__aside--right { text-align: left; }
@media (min-width: 1024px) { .section__aside--right { text-align: right; } }

/* Stats grid */
.stats-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  position: relative;
  padding: 2rem;
  background: var(--card);
}
.stat-card--hl { background: oklch(0.55 0.22 260 / 0.08); }
.stat-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background 0.3s; }
.stat-card--hl .stat-card__bar { background: var(--primary); }
.stat-card:hover .stat-card__bar-hl { opacity: 1; }
.stat-card__bar-hl {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--electric); opacity: 0; transition: opacity 0.3s;
}
.stat-card__corner {
  position: absolute; bottom: 0; right: 0;
  width: 1.5rem; height: 1.5rem;
  background: var(--background);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.stat-card__value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card__label { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.stat-card__desc { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.6; }
.section__footnote { margin-top: 1rem; font-size: 0.625rem; color: oklch(0.50 0.015 255 / 0.4); text-transform: uppercase; letter-spacing: 0.05em; }

/* Benefits */
.cards-grid-3 {
  display: grid;
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}
@media (min-width: 1024px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.benefit-card { position: relative; padding: 2rem; background: var(--card); }
.benefit-card--hl { background: oklch(0.55 0.22 260 / 0.07); }
.benefit-card__tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.125rem 0.625rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  background: oklch(0.55 0.22 260 / 0.15);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}
.benefit-card__icon {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: oklch(0.55 0.22 260 / 0.1);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.benefit-card__icon svg { color: var(--primary); }
.benefit-card h3 { font-size: 1.125rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.75rem; }
.benefit-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 24px 100%);
}
.metrics-strip__item {
  padding: 1.75rem 2rem;
  text-align: center;
  border-right: 1px solid rgb(255 255 255 / 0.1);
}
.metrics-strip__item:last-child { border-right: none; }
.metrics-strip__val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}
.metrics-strip__label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgb(255 255 255 / 0.6); }

/* Guarantees */
.two-col { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.guarantee-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.guarantee-item {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--card);
}
.guarantee-item:last-child { clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%); }
.guarantee-item__bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--primary); opacity: 0; transition: opacity 0.2s;
}
.guarantee-item:hover .guarantee-item__bar { opacity: 1; }
.kpi-panel {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.kpi-panel__head {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.kpi-panel__badge {
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  padding: 0.125rem 0.625rem;
  background: oklch(0.55 0.22 260 / 0.12);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}
.kpi-list { list-style: none; padding: 1.5rem; }
.kpi-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.kpi-list__num {
  width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem; font-weight: 700;
  color: var(--primary);
  background: oklch(0.55 0.22 260 / 0.12);
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 50%, calc(100% - 5px) 100%, 0 100%);
}

/* Safety */
.safety-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 1024px) { .safety-grid { grid-template-columns: 2fr 1fr; } }
.safety-cards { display: grid; gap: 1px; background: var(--border); }
@media (min-width: 640px) { .safety-cards { grid-template-columns: 1fr 1fr; } }
.safety-card { background: var(--card); padding: 1.5rem; position: relative; }
.safety-card__bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); opacity: 0; transition: opacity 0.3s;
}
.safety-card:hover .safety-card__bar { opacity: 1; }
.checklist-panel { background: var(--card); padding: 1.5rem; }
@media (min-width: 1024px) { .checklist-panel { padding: 2rem; } }
.checklist { list-style: none; }
.checklist li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.75rem; }

/* Comfort */
.comfort-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem 2rem; margin-top: 1rem; }
.comfort-tag { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-fg); }
.comfort-tag__dot {
  width: 1rem; height: 1rem; flex-shrink: 0;
  background: oklch(0.55 0.22 260 / 0.18);
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 50%, calc(100% - 4px) 100%, 0 100%);
}
.workflow-panel {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.workflow-step { display: flex; gap: 1rem; }
.workflow-step__num {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 700;
  color: var(--primary);
  background: oklch(0.55 0.22 260 / 0.12);
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.workflow-step__line { width: 1px; height: 1.5rem; background: var(--border); margin: 0.25rem auto; }
.workflow-step__body { padding-bottom: 1.5rem; }
.workflow-step__label { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; }
.workflow-step__sub { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.125rem; }

/* Team */
.team-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { position: relative; overflow: hidden; background: var(--card); }
.team-card--hl { background: oklch(0.55 0.22 260 / 0.07); }
.team-card__photo {
  margin: 1rem 1.25rem 0;
  height: 12rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  background: linear-gradient(135deg, oklch(0.55 0.22 260 / 0.3), oklch(0.12 0.020 260));
  display: flex; align-items: flex-end; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  font-style: italic;
  color: oklch(0.55 0.22 260 / 0.4);
}
.team-card__body { padding: 1.25rem; }
.team-card__role {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0.125rem 0.625rem;
  margin: 1.25rem 1.25rem 0;
  background: oklch(0.55 0.22 260 / 0.14);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}
.team-card h3 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.75rem; }
.team-card ul { list-style: none; }
.team-card li { display: flex; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.375rem; }
.team-card li::before { content: ''; width: 4px; height: 4px; background: var(--electric); margin-top: 0.4rem; flex-shrink: 0; }

/* Process */
.process-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-card { position: relative; padding: 1.75rem; background: var(--card); }
.process-card--hl { background: oklch(0.55 0.22 260 / 0.07); }
.process-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.process-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: oklch(0.55 0.22 260 / 0.18);
}
.process-card__dur {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  padding: 0.125rem 0.625rem;
  background: oklch(0.55 0.22 260 / 0.12);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}

/* Cases */
.case-tabs { display: flex; gap: 0.375rem; flex-wrap: wrap; }
.case-tab {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  background: oklch(0.55 0.22 260 / 0.08);
  color: var(--muted-fg);
}
.case-tab.active { background: var(--primary); color: white; }
.cases-layout {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 1024px) { .cases-layout { grid-template-columns: 2fr 1fr; } }
.case-panel { display: none; }
.case-panel.active { display: contents; }
.case-main { background: var(--card); padding: 1.5rem; }
@media (min-width: 1024px) { .case-main { padding: 2rem; } }
.case-sidebar { background: var(--card); padding: 1.5rem; }
@media (min-width: 1024px) { .case-sidebar { padding: 2rem; } }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-bottom: 1px; }
.case-metric { padding: 1.5rem 1.25rem; text-align: center; background: oklch(0.55 0.22 260 / 0.06); }
.case-metric__val { font-family: 'Barlow Condensed', sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--electric); }
.case-metric__label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); }
.case-ba { display: grid; gap: 1px; background: var(--border); margin-bottom: 1px; }
@media (min-width: 640px) { .case-ba { grid-template-columns: 1fr 1fr; } }
.case-quote { padding: 1.25rem; border-left: 2px solid var(--primary); background: var(--card); }
.case-quote p { font-size: 0.875rem; font-style: italic; margin-bottom: 0.25rem; }
.case-quote cite { font-size: 0.75rem; color: var(--muted-fg); font-style: normal; }

/* Reviews */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}
@media (min-width: 1024px) { .logo-strip { grid-template-columns: repeat(6, 1fr); } }
.logo-cell {
  background: var(--card);
  height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.logo-cell__abbr { font-size: 0.75rem; font-weight: 700; color: var(--primary); }
.logo-cell__name { font-size: 0.625rem; color: var(--muted-fg); }
.reviews-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { position: relative; padding: 1.5rem; background: var(--card); }
.review-card--hl { background: oklch(0.55 0.22 260 / 0.07); }
.review-card__quote { font-family: 'Barlow Condensed', sans-serif; font-size: 2.25rem; font-weight: 700; color: oklch(0.55 0.22 260 / 0.5); line-height: 1; margin-bottom: 1rem; }
.review-card__text { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.review-card__author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.review-card__avatar {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: var(--primary);
  background: oklch(0.55 0.22 260 / 0.15);
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { position: relative; padding: 1.5rem; background: var(--card); display: flex; flex-direction: column; }
@media (min-width: 1024px) { .pricing-card { padding: 2rem; } }
.pricing-card--pop { background: oklch(0.55 0.22 260 / 0.09); }
.pricing-card__badge {
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}
.pricing-card__name { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); margin-bottom: 0.5rem; }
.pricing-card--pop .pricing-card__name { color: var(--electric); }
.pricing-card__price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.875rem; font-weight: 800; font-style: italic; margin-bottom: 0.5rem; }
.pricing-card__desc { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.6; margin-bottom: 1.5rem; }
.pricing-card__features { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.pricing-card__features li { display: flex; gap: 0.625rem; font-size: 0.875rem; margin-bottom: 0.625rem; color: var(--muted-fg); }
.pricing-card__features li.key { color: var(--foreground); font-weight: 600; }
.pricing-card__features svg { flex-shrink: 0; margin-top: 0.125rem; }

/* FAQ */
.faq-layout { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: 1fr 2fr; gap: 4rem; } }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
}
.faq-q__icon {
  width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: oklch(0.55 0.22 260 / 0.07);
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 50%, calc(100% - 5px) 100%, 0 100%);
  transition: background 0.2s;
}
.faq-item.open .faq-q__icon { background: oklch(0.55 0.22 260 / 0.15); }
.faq-q__text { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.4; }
.faq-q:hover .faq-q__text { color: var(--primary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.faq-item.open .faq-a { max-height: 240px; opacity: 1; }
.faq-a__inner {
  padding: 0 0 1.25rem 2.5rem;
  margin-left: 0.75rem;
  border-left: 2px solid var(--primary);
}
.faq-a__inner p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* CTA */
.cta-ghost {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; user-select: none; overflow: hidden;
}
.cta-ghost span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: min(22vw, 260px);
  font-weight: 800;
  line-height: 1;
  color: oklch(0.55 0.22 260 / 0.04);
  letter-spacing: -0.04em;
}
.cta-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 3fr 2fr; } }
.cta-form-panel { background: var(--card); padding: 1.5rem; }
@media (min-width: 1024px) { .cta-form-panel { padding: 2rem; } }
.cta-side { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.cta-side-panel { background: var(--card); padding: 1.5rem; flex: 1; }
.contact-link {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--muted-fg);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--foreground); }
.contact-link__icon {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  background: oklch(0.55 0.22 260 / 0.12);
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.contact-link__icon svg { color: var(--primary); }

/* Footer */
.footer { border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.footer__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); }
.footer__grid {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer__links h4 {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: 0.625rem; }
.footer__links a { font-size: 0.75rem; color: var(--muted-fg); transition: color 0.2s; }
.footer__links a:hover { color: var(--primary); }
.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer__bottom p { font-size: 0.6875rem; color: oklch(0.50 0.015 255 / 0.5); }

.hidden { display: none !important; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-6 { margin-top: 1.5rem; }
.cursor-pointer { cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
}
