﻿:root {
  --surface-900: #040608;
  --surface-800: #0c1017;
  --surface-700: #151a24;
  --surface-100: #f5f7fb;
  --accent-400: #7f5dff;
  --accent-300: #4fd7c8;
  --accent-200: #f4b860;
  --text-900: #0e1016;
  --text-100: #f9fbff;
  --text-muted: #9aa4ba;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --shadow: 0 24px 60px rgba(15, 16, 26, 0.22);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --font-base: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Spectral', 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--surface-900);
}

body.page-shell {
  font-family: var(--font-base);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(160deg, var(--surface-900) 0%, #101320 45%, #181d2b 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--accent-300);
}

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


.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: var(--accent-400);
  color: var(--text-100);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(4, 6, 8, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.masthead > .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-100);
  font-weight: 600;
}

.masthead__brand:hover .masthead__wordmark {
  opacity: 0.7;
}

.masthead__wordmark {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.5;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.site-nav__toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
}

.site-nav__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav__links a {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 500;
  position: relative;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--accent-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after,
.site-nav__links a.is-active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent-400), #9c7bff);
  color: var(--text-100);
  box-shadow: 0 16px 40px rgba(127, 93, 255, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(127, 93, 255, 0.42);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--accent-300);
  color: var(--accent-300);
}

.hero {
  padding: 140px 0 120px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 64px;
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-200);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__lede {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.hero__stat {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(21, 26, 36, 0.6);
  backdrop-filter: blur(8px);
}

.hero__stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-300);
}

.hero__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__aside {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(200deg, rgba(127, 93, 255, 0.12), rgba(79, 215, 200, 0.08));
  display: grid;
  gap: 24px;
  align-content: start;
}

.hero__badge {
  margin: 0 auto;
}

.hero__badge-title {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.hero__badge-copy p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--accent-200);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text-100);
}

.vision {
  padding: 120px 0 100px;
}

.vision__wrap {
  display: grid;
  gap: 56px;
}

.vision__statements {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vision__card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(21, 26, 36, 0.58);
  min-height: 220px;
}

.vision__card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.vision__card p {
  color: rgba(255, 255, 255, 0.65);
}

.practice {
  padding: 120px 0;
  background: radial-gradient(circle at top left, rgba(127, 93, 255, 0.2), transparent 45%),
              radial-gradient(circle at bottom right, rgba(79, 215, 200, 0.16), transparent 45%);
}

.practice__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.practice__item {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(12, 16, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
}

.practice__item h3 {
  font-size: 1.4rem;
}

.practice__list {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.practice__list li::before {
  content: '▸';
  margin-right: 8px;
  color: var(--accent-300);
}

.cases {
  padding: 120px 0 80px;
}

.cases__list {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 19, 30, 0.72);
  display: grid;
  gap: 18px;
  min-height: 320px;
}

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

.case__title {
  font-size: 1.5rem;
  color: var(--text-100);
}

.case__summary {
  color: rgba(255, 255, 255, 0.68);
}

.case__highlights {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.case__highlights li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.case__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-300);
}

.milestones {
  padding: 40px 0 120px;
}

.milestones__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.milestones__card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(21, 24, 34, 0.78);
  text-align: center;
}

.milestones__number {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent-300);
}

.milestones__caption {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.workflow {
  padding: 100px 0 120px;
  background: linear-gradient(160deg, rgba(12, 18, 28, 0.8), rgba(15, 23, 36, 0.6));
}

.workflow__steps {
  list-style: none;
  display: grid;
  gap: 24px;
}

.workflow__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 20, 0.8);
}

.workflow__badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(127, 93, 255, 0.2);
  color: var(--accent-300);
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0.06em;
}

.workflow__copy h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.workflow__copy p {
  color: rgba(255, 255, 255, 0.68);
}

.cta {
  padding: 120px 0;
}

.cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 48px;
  align-items: start;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: rgba(14, 18, 28, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.cta__channels {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.cta__channels strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cta__channels a {
  color: var(--text-100);
  font-weight: 500;
}

.cta__channels span {
  color: rgba(255, 255, 255, 0.64);
}

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

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field textarea {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 16, 0.9);
  color: var(--text-100);
  font: inherit;
  transition: var(--transition);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--accent-300);
  box-shadow: 0 0 0 3px rgba(79, 215, 200, 0.25);
}

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

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 6, 8, 0.85);
}

.site-footer__layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__jump {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__jump:hover,
.site-footer__jump:focus-visible {
  border-color: var(--accent-300);
  color: var(--accent-300);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(127, 93, 255, 0.3), rgba(4, 6, 8, 0.95));
  font-family: var(--font-base);
  color: var(--text-100);
}

.thanks-box {
  width: min(460px, 88vw);
  padding: 56px;
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 26, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: 24px;
}

.thanks-box h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.thanks-box p {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero__grid,
  .practice__grid,
  .cases__list,
  .vision__statements,
  .milestones__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta__layout {
    grid-template-columns: 1fr;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav__links {
    position: absolute;
    top: 96px;
    right: 4vw;
    width: min(320px, 88vw);
    flex-direction: column;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(5, 8, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    transform: scale(0.96);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
  }

  .site-nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .masthead > .shell {
    min-height: 72px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    order: -1;
  }

  .vision__statements,
  .practice__grid,
  .cases__list,
  .milestones__grid {
    grid-template-columns: 1fr;
  }

  .workflow__step {
    grid-template-columns: 1fr;
  }

  .site-footer__layout {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero__quick-stats {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
