:root {
  color-scheme: dark;
  --bg: #05070a;
  --surface: #0e1319;
  --surface-strong: #141b23;
  --text: #f3f7fb;
  --muted: #a9b4bf;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #18d6a3;
  --accent-2: #4bb7ff;
  --accent-3: #f2b84b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-strong: #eef3f1;
  --text: #12171d;
  --muted: #53606b;
  --line: rgba(18, 23, 29, 0.13);
  --accent: #057d62;
  --accent-2: #0c6aaa;
  --accent-3: #a66b00;
  --shadow: 0 24px 70px rgba(18, 23, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(24, 214, 163, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(75, 183, 255, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 30%, transparent);
  }

  50% {
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent);
  }
}

@keyframes lineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes lineDrawLoop {
  0% {
    opacity: 1;
    stroke-dashoffset: 430;
  }

  28% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  84% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  88% {
    opacity: 0;
    stroke-dashoffset: 0;
  }

  89% {
    opacity: 0;
    stroke-dashoffset: 430;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 430;
  }
}

@keyframes metricFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes linktreeIn {
  from {
    transform: translateY(12px) scale(0.98);
  }

  to {
    transform: translateY(0) scale(1);
  }
}

.reveal,
.reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition: opacity 820ms var(--ease-out), transform 820ms var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  min-height: 68px;
  margin: 0;
  padding: 0.75rem max(0.5rem, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.logo-light,
:root[data-theme="light"] .logo-dark {
  display: none;
}

:root[data-theme="light"] .logo-light {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--text);
}

.theme-toggle {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 20;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transition: transform 220ms var(--ease-soft), background 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.theme-icon,
.theme-icon::before {
  display: block;
  border-radius: 999px;
}

.theme-icon {
  width: 14px;
  height: 14px;
  background: var(--accent-3);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-3) 18%, transparent);
}

:root[data-theme="light"] .theme-icon {
  background: var(--text);
  box-shadow: inset -6px -3px 0 0 var(--surface), 0 0 0 4px rgba(18, 23, 29, 0.08);
}

.hero,
.section,
.contact-section,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero,
.section,
.contact-section {
  scroll-margin-top: 88px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: auto;
  padding: clamp(3.6rem, 8vw, 6.4rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 12%;
  width: min(32vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
}

.hero-content {
  min-width: 0;
  max-width: 740px;
}

.hero .eyebrow {
  font-size: 0.83rem;
}

.eyebrow {
  max-width: 100%;
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.7vw, 4.05rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy,
.section p,
.contact-section p {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-copy {
  max-width: 660px;
  margin: 1.15rem 0 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  transition: transform 220ms var(--ease-soft), border-color 220ms var(--ease-soft), color 220ms var(--ease-soft);
}

.hero-points span:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  color: var(--text);
}

.hero-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.74rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 220ms var(--ease-soft), border-color 220ms var(--ease-soft), background 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03100d;
  border-color: transparent;
  animation: softPulse 3200ms ease-in-out infinite;
}

:root[data-theme="light"] .button.primary {
  color: #ffffff;
}

.button.secondary {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.growth-panel {
  position: relative;
  min-height: 360px;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-strong) 76%, transparent)),
    var(--surface);
  box-shadow: var(--shadow);
  animation: metricFloat 5200ms ease-in-out infinite;
}

.growth-panel::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 68%);
  pointer-events: none;
}

.growth-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.growth-header span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.growth-header strong {
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1;
  text-align: right;
}

.growth-chart {
  position: relative;
  height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg) 45%, transparent);
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100% 52px, 64px 100%;
  opacity: 0.38;
}

.growth-chart svg {
  position: absolute;
  inset: 1.45rem 1rem 1.2rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2.65rem);
  overflow: visible;
}

.productivity-line,
.cost-line {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 430;
  stroke-dashoffset: 430;
}

.productivity-line {
  stroke: var(--accent);
  animation: lineDrawLoop 6s ease-in-out 260ms infinite;
}

.cost-line {
  stroke: var(--accent-3);
  opacity: 0.95;
  animation: lineDrawLoop 6s ease-in-out 420ms infinite;
}

.chart-dot {
  opacity: 0;
  animation: fadeUp 420ms ease forwards;
}

.productivity-dot {
  fill: var(--accent);
  animation-delay: 1300ms;
}

.cost-dot {
  fill: var(--accent-3);
  animation-delay: 1300ms;
}

.chart-label {
  position: absolute;
  padding: 0.32rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg) 62%, transparent);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.label-productivity {
  top: 1rem;
  right: 0.9rem;
  color: var(--accent);
}

.label-cost {
  right: 0.9rem;
  bottom: 0.9rem;
  color: var(--accent-3);
}

.growth-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.growth-metrics span {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.growth-metrics strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
}

.section {
  padding: clamp(3.25rem, 7vw, 5.8rem) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.6rem;
}

.cards,
.steps {
  display: grid;
  gap: 1rem;
}

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

.card,
.steps article,
.benefit-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.card {
  position: relative;
  min-height: 220px;
  padding: 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--surface-strong) 62%, transparent)),
    var(--surface);
  transition:
    opacity 860ms var(--ease-out),
    transform 860ms var(--ease-out),
    border-color 280ms var(--ease-soft),
    background 280ms var(--ease-soft),
    box-shadow 280ms var(--ease-soft);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 520ms var(--ease-out), transform 820ms var(--ease-out);
}

.card.card-reveal {
  transform: translate3d(0, 30px, 0) scale(0.978);
}

.card.card-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.card.card-reveal.is-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.card:hover {
  transform: translate3d(0, -4px, 0) scale(1);
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 1.7rem;
  color: var(--accent-2);
  font-weight: 900;
  transition: transform 320ms var(--ease-soft), color 320ms var(--ease-soft);
}

.card:hover .card-icon {
  transform: translateY(-2px);
  color: var(--accent);
}

.card p,
.steps p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 850;
}

.text-link:hover {
  color: var(--accent-2);
}

.benefit-list {
  display: grid;
  gap: 0.75rem;
}

.benefit-item {
  position: relative;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--line) 82%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-strong) 70%, transparent)),
    var(--surface);
  transition: border-color 260ms var(--ease-soft), background 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft);
}

.benefit-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 260ms var(--ease-soft);
}

.benefit-item:hover,
.benefit-item.is-open {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.benefit-item:hover::before,
.benefit-item.is-open::before {
  opacity: 1;
}

.benefit-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 82px;
  padding: 1rem 1.05rem 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.benefit-trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 70%, transparent);
  outline-offset: -4px;
}

.benefit-trigger strong,
.benefit-trigger small {
  display: block;
}

.benefit-trigger strong {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.3;
}

.benefit-trigger small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.benefit-plus {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid color-mix(in srgb, var(--line) 58%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 38%, transparent);
  transition: border-color 240ms var(--ease-soft), background 240ms var(--ease-soft), transform 240ms var(--ease-soft);
}

.benefit-trigger:hover .benefit-plus {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
}

.benefit-item.is-open .benefit-plus {
  border-color: color-mix(in srgb, var(--accent) 60%, var(--line));
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  transform: rotate(180deg);
}

.benefit-plus::before,
.benefit-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translate(-50%, -62%) rotate(45deg);
  transition: transform 240ms var(--ease-soft);
}

.benefit-plus::after {
  display: none;
}

.benefit-item.is-open .benefit-plus::before {
  transform: translate(-50%, -38%) rotate(225deg);
}

.benefit-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease-soft);
}

.benefit-content > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: color-mix(in srgb, var(--muted) 92%, var(--text));
  font-size: 0.94rem;
  line-height: 1.65;
}

.benefit-item.is-open .benefit-content {
  grid-template-rows: 1fr;
}

.benefit-item.is-open .benefit-content > p {
  padding-bottom: 1.05rem;
}

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

.steps article {
  position: relative;
  min-height: 205px;
  padding: 1.1rem;
  overflow: hidden;
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out),
    border-color 280ms var(--ease-soft),
    background 280ms var(--ease-soft),
    box-shadow 280ms var(--ease-soft);
}

.steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 520ms var(--ease-out), transform 820ms var(--ease-out);
}

.steps article.step-reveal {
  transform: translate3d(0, 34px, 0) scale(0.975);
}

.steps article.step-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.steps article.step-reveal.is-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1.4rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 18%, var(--surface));
  color: var(--accent);
  font-weight: 900;
  transition: transform 320ms var(--ease-soft), background 320ms var(--ease-soft);
}

.steps article:hover {
  transform: translate3d(0, -4px, 0) scale(1);
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.steps article:hover span {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent) 26%, var(--surface));
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 82%, transparent), color-mix(in srgb, var(--surface-strong) 86%, transparent));
  box-shadow: var(--shadow);
}

.contact-section p {
  max-width: 680px;
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.linktree-body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0 1rem;
  overflow-x: hidden;
  background: var(--bg);
}

.linktree-body .linktree-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(390px, 100%);
  margin: 0 auto;
  padding: clamp(4.5rem, 14vh, 7rem) 0 2rem;
  text-align: center;
}

.linktree-body .linktree-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.linktree-body .linktree-card h1 {
  width: 100%;
  margin: 0;
  font-size: 1.6rem;
  text-align: center;
}

.linktree-body .linktree-card p {
  max-width: 310px;
  margin: 0.45rem auto 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.linktree-body .linktree-list {
  display: grid;
  width: 100%;
  gap: 0.72rem;
}

.linktree-body .linktree-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  animation: linktreeIn 520ms var(--ease-out) forwards;
  transition: transform 180ms var(--ease-soft), border-color 180ms var(--ease-soft), background 180ms var(--ease-soft);
}

.linktree-body .linktree-list a:nth-child(1) {
  animation-delay: 80ms;
}

.linktree-body .linktree-list a:nth-child(2) {
  animation-delay: 160ms;
}

.linktree-body .linktree-list a:nth-child(3) {
  animation-delay: 240ms;
}

.linktree-body .linktree-list a:nth-child(4) {
  animation-delay: 320ms;
}

.linktree-body .linktree-list a:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: var(--surface-strong);
}

.site-footer {
  width: 100%;
  margin-top: 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 1.5rem;
  width: calc(100% - 3rem);
  min-height: 76px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
}

.footer-logo .brand-mark {
  width: 32px;
  height: 32px;
}

.footer-logo .brand-mark img {
  width: 32px;
  height: 32px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.4rem);
}

.footer-inner > span {
  justify-self: end;
}

.footer-nav a,
.footer-inner > span {
  color: var(--muted);
}

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

@media (max-width: 860px) {
  .site-header {
    min-height: 64px;
    padding-inline: 1rem;
  }

  .nav-links {
    display: none;
  }

  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.75rem;
    grid-template-columns: 1fr;
  }

  .growth-panel {
    display: none;
  }

  h1 {
    max-width: 680px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    background:
      radial-gradient(circle at 10% 0%, rgba(24, 214, 163, 0.12), transparent 17rem),
      var(--bg);
  }

  .linktree-body .linktree-card {
    width: 100%;
    max-width: 300px;
    padding-top: clamp(4.5rem, 15vh, 6.5rem);
  }

  .linktree-body .linktree-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 0.65rem;
  }

  .linktree-body .linktree-card h1 {
    font-size: 1.35rem;
  }

  .linktree-body .linktree-card p {
    max-width: 300px;
    margin: 0.35rem auto 1.05rem;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .linktree-body .linktree-list {
    gap: 0.58rem;
  }

  .linktree-body .linktree-list a {
    min-height: 43px;
    padding: 0.66rem 0.85rem;
    font-size: 0.9rem;
  }

  .linktree-body .theme-toggle {
    right: 1rem;
    bottom: 1rem;
  }

  .hero,
  .section,
  .contact-section {
    width: min(calc(100% - 2rem), 360px);
    margin-left: 1rem;
    margin-right: auto;
  }

  .footer-inner {
    width: min(calc(100% - 2rem), 360px);
    margin-left: 1rem;
    margin-right: auto;
  }

  .site-header {
    width: 100%;
    min-height: 62px;
    padding: 0.65rem 0.75rem;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .theme-toggle {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 2.45rem 0 3.2rem;
    scroll-margin-top: 74px;
  }

  .hero::after {
    display: none;
  }

  .eyebrow {
    margin-bottom: 0.72rem;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  h1 {
    max-width: 14.5ch;
    font-size: clamp(1.78rem, 7vw, 2.02rem);
    line-height: 1.12;
  }

  .eyebrow,
  .hero-copy {
    max-width: 100%;
  }

  .hero-copy,
  .section p,
  .contact-section p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
    margin-top: 1.05rem;
  }

  .hero-points span {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.88rem;
  }

  .hero-points span:hover {
    transform: none;
  }

  h2 {
    font-size: clamp(1.45rem, 6.8vw, 1.95rem);
    line-height: 1.15;
  }

  h3 {
    font-size: 1.05rem;
  }

  .hero-actions,
  .contact-actions {
    gap: 0.65rem;
    margin-top: 1.45rem;
  }

  .button {
    width: 100%;
    min-height: 44px;
    font-size: 0.94rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading {
    margin-bottom: 1.1rem;
  }

  .card {
    min-height: auto;
    padding: 1rem;
  }

  .card-icon {
    margin-bottom: 1.1rem;
  }

  .split {
    gap: 1.35rem;
  }

  .text-link {
    margin-top: 0.85rem;
    font-size: 0.9rem;
  }

  .benefit-list {
    gap: 0.62rem;
  }

  .benefit-trigger {
    min-height: auto;
    align-items: flex-start;
    padding: 0.9rem 0.9rem 0.9rem 1rem;
  }

  .benefit-trigger strong {
    font-size: 0.96rem;
  }

  .benefit-trigger small {
    font-size: 0.86rem;
  }

  .benefit-plus {
    width: 27px;
    height: 27px;
    margin-top: 0.1rem;
  }

  .benefit-content > p {
    padding-inline: 1rem;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .benefit-item.is-open .benefit-content > p {
    padding-bottom: 0.95rem;
  }

  .steps article {
    min-height: auto;
  }

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

  .footer-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: min(calc(100% - 2rem), 360px);
    min-height: auto;
    padding: 1rem 0;
  }

  .footer-inner > span {
    justify-self: auto;
  }

  .footer-nav {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-item {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
