:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --red: #e31e24;
  --red-light: #ff3b42;
  --blue: #1e4fd8;
  --blue-light: #3b6ef0;
  --text: #ffffff;
  --muted: #9ca3af;
  --muted-dark: #6b7280;
  --border: #1e293b;
  --font-display: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --max-width: 72rem;
  --nav-height: 4.75rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "kern" 1;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .section-header h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body.is-loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--red), var(--blue));
  box-shadow: 0 0 12px rgba(227, 30, 36, 0.5);
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(227, 30, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 79, 216, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: loader-grid-in 1s var(--ease-out) forwards;
}

@keyframes loader-grid-in {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1); }
}

.loader__inner {
  position: relative;
  text-align: center;
}

.loader__logo {
  width: 6rem !important;
  height: 6rem !important;
  margin: 0 auto;
  animation: loader-logo-in 0.8s var(--ease-out) forwards;
}

@keyframes loader-logo-in {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.loader__scan {
  position: absolute;
  left: -50%;
  right: -50%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--blue), transparent);
  animation: loader-scan 1.2s ease-in-out infinite;
}

@keyframes loader-scan {
  0% { transform: translateY(-80px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(80px); opacity: 0; }
}

.loader__skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: var(--muted);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: color 0.2s, border-color 0.2s;
}

.loader__skip:hover { color: var(--text); border-color: var(--red); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section {
  scroll-margin-top: var(--nav-height);
  padding: 5rem 0;
  position: relative;
}

.section--alt { background-color: rgba(17, 17, 17, 0.55); }

.section--slant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.04) 0%, transparent 50%, rgba(30, 79, 216, 0.04) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* Hero */
.hero-mesh {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(227, 30, 36, 0.14), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(30, 79, 216, 0.1), transparent),
    linear-gradient(to bottom, var(--bg), var(--bg-elevated));
}

.hero-grid {
  background-image:
    linear-gradient(rgba(227, 30, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 79, 216, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.35;
  animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
  0%, 100% { background: radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.14) 0%, transparent 50%); }
  50% { background: radial-gradient(circle at 80% 50%, rgba(30, 79, 216, 0.14) 0%, transparent 50%); }
}

.hero__arcs {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 500px);
  opacity: 0.35;
  pointer-events: none;
  animation: arcs-spin 24s linear infinite;
}

@keyframes arcs-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero__content {
  position: relative;
  max-width: 48rem;
  padding: 6rem 0 4rem;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-reveal--visible,
body:not(.is-loading) .hero-reveal {
  opacity: 1;
  transform: none;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.logo-img {
  display: block;
  object-fit: contain;
  padding: 0.2rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #000;
  box-shadow: 0 0 0 1px rgba(227, 30, 36, 0.25), 0 4px 16px rgba(0, 0, 0, 0.45);
}

.nav__logo .logo-img { width: 3rem; height: 3rem; }

.hero__badge .logo-img {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  box-shadow: 0 0 0 1px rgba(227, 30, 36, 0.3), 0 0 24px rgba(30, 79, 216, 0.2), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hero__badge span { font-weight: 600; font-size: 1rem; }

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.text-gradient {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient--red { background-image: linear-gradient(135deg, #ff6b6f, var(--red)); }
.text-gradient--blue { background-image: linear-gradient(135deg, #6b9fff, var(--blue)); }

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero__subtitle strong { color: var(--text); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 3px;
  z-index: 50;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: height 0.3s var(--ease-out), background 0.3s;
}

.nav--scrolled {
  height: 4rem;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 1;
  min-width: 0;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 1.05rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.nav__brand-full { display: none; }
.nav__brand-short { display: inline; }

@media (min-width: 768px) {
  .nav__brand-full { display: inline; }
  .nav__brand-short { display: none; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.125rem;
  padding: 0.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) { .nav__links { display: flex; } }

.nav__link {
  position: relative;
  padding: 0.45rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 0.375rem;
  white-space: nowrap;
}

.nav__link:hover { color: var(--text); }

.nav__link--active {
  color: var(--text);
  background: rgba(227, 30, 36, 0.12);
}

.nav__actions { display: none; align-items: center; flex-shrink: 0; }
@media (min-width: 768px) { .nav__actions { display: flex; } }

.nav__cta-short { display: inline; }
.nav__cta-full { display: none; }

@media (min-width: 1024px) {
  .nav__cta-short { display: none; }
  .nav__cta-full { display: inline; }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
}

@media (min-width: 768px) { .nav__toggle { display: none; } }

.nav__toggle-bar {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__toggle--open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle--open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s, padding 0.3s;
}

.nav__mobile--open {
  max-height: 32rem;
  opacity: 1;
}

.nav__mobile-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.nav__mobile .nav__link,
.nav__mobile .btn {
  display: block;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.05s);
}

.nav__mobile--open .nav__link,
.nav__mobile--open .btn {
  opacity: 1;
  transform: none;
}

.nav__mobile .nav__link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.nav__mobile .nav__link--active {
  color: var(--red);
  background: rgba(227, 30, 36, 0.08);
}

.nav__mobile .btn { width: 100%; margin-top: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  position: relative;
}

.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.btn--primary { background: var(--red); color: var(--text); }
.btn--primary:hover { background: var(--red-light); box-shadow: 0 0 24px rgba(227, 30, 36, 0.35); transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--blue); border: 1px solid rgba(30, 79, 216, 0.6); }
.btn--secondary:hover { border-color: var(--blue); background: rgba(30, 79, 216, 0.08); box-shadow: 0 0 20px rgba(30, 79, 216, 0.15); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.0625rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--red:hover { border-color: var(--red); box-shadow: 0 0 28px rgba(227, 30, 36, 0.15); }
.pricing-card--blue:hover { border-color: var(--blue); box-shadow: 0 0 28px rgba(30, 79, 216, 0.15); }

.pricing-card--featured {
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(227, 30, 36, 0.18);
  animation: float-card 5s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.pricing-card--featured:hover { transform: translateY(-6px); }

.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  background: var(--red);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__badge--shimmer {
  background: linear-gradient(90deg, var(--red), #ff6b6f, var(--red));
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.pricing-card__count {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.pricing-card__period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  font-family: var(--font-sans);
}

.pricing-card__desc {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.pricing-card ul { margin-bottom: 1.5rem; flex-grow: 1; }

.pricing-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.pricing-card--blue li::before { background: var(--blue); }
.pricing-card .btn { width: 100%; margin-top: auto; }

/* About */
.about-story {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.about-story p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.coaches {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) { .coaches { grid-template-columns: repeat(2, 1fr); } }

.coach-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.coach-card--max { border-top: 3px solid var(--red); }
.coach-card--kyle { border-top: 3px solid var(--blue); }

.coach-card:hover { transform: translateY(-4px); }
.coach-card--max:hover { border-color: var(--red); box-shadow: 0 0 28px rgba(227, 30, 36, 0.15); }
.coach-card--kyle:hover { border-color: var(--blue); box-shadow: 0 0 28px rgba(30, 79, 216, 0.15); }

.coach-card__body { padding: 2rem; }

.coach-card__accent {
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.coach-card--max .coach-card__accent { background: var(--red); }
.coach-card--kyle .coach-card__accent { background: var(--blue); }

.coach-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.coach-card__role {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.coach-card__bio {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.coach-card__phone {
  display: inline-block;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.coach-card--max .coach-card__phone:hover { color: var(--red-light); border-color: var(--red); }
.coach-card--kyle .coach-card__phone:hover { color: var(--blue-light); border-color: var(--blue); }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.contact-cta {
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) { .contact-methods { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .contact-methods { grid-template-columns: 1fr; } }
@media (min-width: 1100px) { .contact-methods { grid-template-columns: repeat(2, 1fr); } }

.contact-method {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 30, 36, 0.4);
  box-shadow: 0 0 24px rgba(227, 30, 36, 0.1);
}

.contact-method h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

.contact-method p {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.contact-method p:last-child { margin-bottom: 0; }
.contact-method p span { min-width: 5.5rem; color: var(--text); font-weight: 500; }

.contact-method a {
  color: var(--blue-light);
  transition: color 0.2s;
  word-break: break-word;
}

.contact-method a:hover { color: var(--text); }

/* Contact form */
.contact-form-wrap {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.contact-form-sub {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
}

.form-float {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-float input,
.form-float select,
.form-float textarea {
  width: 100%;
  padding: 1.35rem 1rem 0.6rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-float select {
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: var(--muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-float textarea { min-height: 7rem; resize: vertical; }

.form-float label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.2s var(--ease-out), font-size 0.2s, color 0.2s;
}

.form-float input:focus,
.form-float select:focus,
.form-float textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, 0.15);
}

.form-float input:focus + label,
.form-float textarea:focus + label,
.form-float input:not(:placeholder-shown) + label,
.form-float textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.7rem);
  font-size: 0.7rem;
  color: var(--blue-light);
}

.form-optional { font-weight: 400; color: var(--muted-dark); }

.contact-form .btn { width: 100%; margin-top: 0.25rem; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  text-align: center;
}

.form-status--visible { display: block; }

.form-status--success {
  background: rgba(30, 79, 216, 0.1);
  border: 1px solid rgba(30, 79, 216, 0.35);
  color: #cdd9ff;
}

.form-status--error {
  background: rgba(227, 30, 36, 0.1);
  border: 1px solid rgba(227, 30, 36, 0.35);
  color: #ffc7c9;
}

/* Footer */
.footer {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--red), var(--blue)) 1;
  padding: 3rem 0 2rem;
  background: var(--bg-elevated);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer__brand .logo-img { width: 3rem; height: 3rem; }

.footer__brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer__tagline { color: var(--muted); font-size: 0.875rem; }

.footer h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--muted);
}

.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }

.social-links { display: flex; gap: 0.75rem; }

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.social-links a:hover {
  color: var(--text);
  border-color: var(--red);
  background: rgba(227, 30, 36, 0.08);
  transform: translateY(-2px);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-dark);
  font-size: 0.8125rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 45;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.2s, box-shadow 0.2s;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(227, 30, 36, 0.25);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero__arcs { animation: none; }
  .hero__glow { animation: none; }
  .pricing-card--featured { animation: none; }
  .reveal, .hero-reveal { opacity: 1; transform: none; }
}
