:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --ink: #f4f0f2;
  --muted: #9e939a;
  --pink: #f888d0;
  --pink-bright: #ff9de0;
  --pink-deep: #603050;
  --pink-soft: rgba(248, 136, 208, 0.12);
  --line: rgba(248, 136, 208, 0.2);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1040px;
  --header-h: 0px;
  --page-x: max(1rem, env(safe-area-inset-left));
  --page-x-right: max(1rem, env(safe-area-inset-right));
  --cta-h: 0px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(248, 136, 208, 0.14), transparent 55%),
    var(--bg);
  font-family: var(--font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--cta-h) + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(248, 136, 208, 0.2);
}

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  overflow-wrap: break-word;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.03;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: calc(var(--header-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: var(--page-x);
  padding-right: var(--page-x-right);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  min-height: 44px;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--pink);
}

.nav-cta {
  color: #050505 !important;
  background: var(--pink);
  padding: 0.5rem 0.95rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--pink-bright);
  transform: translateY(-1px);
}

.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  background: var(--pink);
  color: #050505;
  font-size: 0.88rem;
  font-weight: 700;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--pink);
}

.mobile-nav {
  position: fixed;
  top: calc(var(--header-h) + env(safe-area-inset-top));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 39;
  display: grid;
  align-content: start;
  gap: 0.2rem;
  padding: 0.75rem var(--page-x) calc(1.5rem + env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, 0.98);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0.85rem 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(248, 136, 208, 0.12);
}

.mobile-nav-cta {
  margin-top: 0.75rem;
  justify-content: center;
  min-height: 52px !important;
  background: var(--pink);
  color: #050505 !important;
  border-bottom: none !important;
  font-weight: 700 !important;
}

.mobile-nav[hidden] {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding:
    calc(2rem + env(safe-area-inset-top))
    var(--page-x)
    calc(5.5rem + env(safe-area-inset-bottom));
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: min(640px, 92vw);
  height: min(640px, 92vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 136, 208, 0.2) 0%, transparent 68%);
  animation: pulse-glow 7s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.hero-logo {
  width: clamp(104px, 30vw, 160px);
  height: auto;
  border-radius: 50%;
  animation: logo-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  filter: drop-shadow(0 0 24px rgba(248, 136, 208, 0.32));
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-kicker {
  margin-top: 0.2rem;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.hero-line {
  font-size: clamp(1.55rem, 6.2vw, 2.65rem);
  font-weight: 700;
  max-width: 16ch;
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

.hero-sub {
  color: var(--muted);
  max-width: 36ch;
  font-size: 0.98rem;
  font-weight: 500;
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 0.75rem;
  margin-top: 0.45rem;
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-actions .btn,
.apply-panel .btn {
  width: 100%;
  max-width: 360px;
}

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

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--pink);
  color: #050505;
}

.btn-primary:hover {
  background: var(--pink-bright);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.scroll-hint {
  display: none;
}

.section {
  width: min(var(--max), calc(100% - (var(--page-x) + var(--page-x-right))));
  margin: 0 auto;
  padding: 3.25rem 0;
}

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

.section h2 {
  font-size: clamp(1.65rem, 7vw, 2.85rem);
  max-width: 16ch;
}

.section-lead {
  margin-top: 0.85rem;
  color: var(--muted);
  max-width: 46ch;
  font-size: 1rem;
}

.section-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.proof-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.results-gallery {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.result-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.result-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.results-slider {
  margin-top: 1.75rem;
  max-width: 720px;
}

.results-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a;
  touch-action: pan-y;
}

.results-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.result-slide {
  margin: 0;
  flex: 0 0 100%;
  min-width: 100%;
  background: #fff;
}

.result-slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(70vh, 640px);
  object-fit: contain;
  object-position: top center;
  background: #fff;
}

.results-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--pink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  flex-shrink: 0;
}

.slider-btn:hover,
.slider-btn:active {
  background: var(--pink-soft);
  border-color: var(--pink);
}

.slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(248, 136, 208, 0.28);
  cursor: pointer;
  touch-action: manipulation;
}

.slider-dot.is-active {
  background: var(--pink);
  transform: scale(1.15);
}

.slider-count {
  margin-top: 0.55rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.proof-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.proof-stat {
  font-size: clamp(1.85rem, 8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pink);
  line-height: 1.05;
}

.proof-label {
  margin-top: 0.4rem;
  color: var(--muted);
  max-width: 32ch;
  font-size: 0.95rem;
}

.stack-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.stack-list li {
  display: grid;
  gap: 0.4rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.stack-tag {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.stack-list h3 {
  font-size: 1.12rem;
  margin-bottom: 0.25rem;
}

.stack-list p {
  color: var(--muted);
  max-width: 48ch;
  font-size: 0.96rem;
}

.compare {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
}

.compare-col {
  padding: 1.2rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.compare-us {
  border-color: rgba(248, 136, 208, 0.45);
  background:
    linear-gradient(160deg, rgba(248, 136, 208, 0.1), transparent 50%),
    var(--bg-elevated);
}

.compare-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  color: var(--muted);
  line-height: 1.35;
}

.compare-us .compare-label {
  color: var(--pink);
}

.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.compare-col li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.55rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.compare-us li {
  color: var(--ink);
}

.compare-col li .mark {
  line-height: 1.35;
  font-size: 0.88rem;
}

.compare-col li strong {
  font-weight: 700;
}

.section-lead .req-note {
  color: var(--muted);
  font-weight: 500;
}

.icp-basics {
  margin-top: 1.25rem;
  padding: 1.25rem 1.1rem;
  border: 1px solid var(--line);
}

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

.icp-basics li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.icp-basics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--pink);
}

.split-grid {
  margin-top: 1.75rem;
  display: grid;
  gap: 0;
}

.split-card {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.split-card:last-child {
  border-bottom: 1px solid var(--line);
}

.split-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.split-card p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.96rem;
}

.faq-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2rem 1.15rem 0;
  font-size: 1rem;
  font-weight: 650;
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  touch-action: manipulation;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 1.25rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 1.15rem;
  color: var(--muted);
  max-width: 54ch;
  font-size: 0.96rem;
}

.about-layout {
  display: grid;
  gap: 1.25rem;
}

.about-copy {
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 54ch;
}

.about-copy p:last-child {
  color: var(--ink);
  font-weight: 600;
}

.apply {
  padding-bottom: 2rem;
}

.apply-panel {
  padding: 1.5rem 1.15rem;
  background:
    linear-gradient(160deg, rgba(248, 136, 208, 0.1), transparent 45%),
    var(--bg-elevated);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  justify-items: stretch;
}

.apply-panel h2 {
  max-width: 14ch;
}

.apply-copy {
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  padding:
    0.75rem var(--page-x)
    calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92) 28%, #050505);
  border-top: 1px solid var(--line);
}

.mobile-cta .btn {
  width: 100%;
}

.mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer {
  width: min(var(--max), calc(100% - (var(--page-x) + var(--page-x-right))));
  margin: 0 auto;
  padding: 1.5rem 0 calc(1.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

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

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--pink);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Contact / linktree page */
.contact-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding:
    calc(1.5rem + env(safe-area-inset-top))
    var(--page-x)
    calc(1.5rem + env(safe-area-inset-bottom));
}

.contact-glow {
  position: fixed;
  top: 8%;
  left: 50%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 136, 208, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.contact-shell {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
}

.contact-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-back:hover {
  color: var(--pink);
}

.contact-card {
  text-align: center;
  padding: 2rem 1.15rem 1.5rem;
}

.contact-logo {
  width: 104px;
  height: 104px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(248, 136, 208, 0.35));
}

.contact-brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pink);
  margin-bottom: 0.35rem;
}

.contact-card h1 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.contact-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 auto 1.5rem;
  max-width: 32ch;
  line-height: 1.5;
}

.link-stack {
  display: grid;
  gap: 0.8rem;
}

.link-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  min-height: 68px;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.92);
  box-shadow: 0 0 0 0 rgba(248, 136, 208, 0);
  touch-action: manipulation;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.link-row:hover,
.link-row:active {
  border-color: var(--pink);
  background: rgba(248, 136, 208, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248, 136, 208, 0.12);
}

.link-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.link-icon-wa {
  background: #25d366;
}

.link-icon-tg {
  background: #2aabee;
}

.link-icon svg {
  display: block;
}

.link-text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.link-text strong {
  font-size: 1.02rem;
  font-weight: 700;
}

.link-text small {
  color: var(--muted);
  font-size: 0.84rem;
}

.link-arrow {
  color: var(--pink);
  font-size: 1.2rem;
  padding-right: 0.15rem;
}

@media (max-width: 899px) {
  :root {
    --cta-h: 76px;
  }
}

@media (min-width: 640px) {
  :root {
    --page-x: max(1.5rem, env(safe-area-inset-left));
    --page-x-right: max(1.5rem, env(safe-area-inset-right));
  }

  .hero-actions .btn,
  .apply-panel .btn {
    width: auto;
  }

  .apply-panel {
    justify-items: start;
    padding: 1.75rem 1.5rem;
  }
}

@media (min-width: 900px) {
  :root {
    --header-h: 68px;
    --cta-h: 0px;
    --page-x: max(2rem, env(safe-area-inset-left));
    --page-x-right: max(2rem, env(safe-area-inset-right));
  }

  body {
    padding-bottom: 0;
  }

  .nav {
    display: flex;
  }

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

  .mobile-cta {
    display: none;
  }

  .scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--pink);
    opacity: 0.75;
    border: none;
    animation: scroll-nudge 1.8s ease-in-out infinite;
  }

  .scroll-hint:hover {
    opacity: 1;
  }

  .scroll-hint svg {
    display: block;
  }

  @keyframes scroll-nudge {
    0%,
    100% {
      transform: translateX(-50%) translateY(0);
      opacity: 0.55;
    }
    50% {
      transform: translateX(-50%) translateY(6px);
      opacity: 1;
    }
  }

  .section {
    padding: clamp(4rem, 9vw, 6.5rem) 0;
  }

  .results-gallery {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .results-slider {
    max-width: 760px;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.25rem;
  }

  .stack-list li {
    grid-template-columns: 56px 1fr;
    align-items: start;
    gap: 1.25rem;
  }

  .compare {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .compare-col {
    padding: 1.5rem 1.35rem;
  }

  .split-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
  }

  .split-card {
    padding: 0;
    border: none;
  }

  .split-card:last-child {
    border: none;
  }

  .about-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 3rem;
  }

  .apply {
    padding-bottom: clamp(4.5rem, 10vw, 7rem);
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding-bottom: 2.5rem;
  }

  .site-footer p {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-glow,
  .hero-logo,
  .hero-kicker,
  .hero-line,
  .hero-sub,
  .hero-actions,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
