:root {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --bg-muted: #f3f3f3;
  --border: #e8e8e8;
  --text: #1b1b1b;
  --text-secondary: #727272;
  --brand: #343ced;
  --brand-dark: #2a30c4;
  --accent-1: #a9e0ff;
  --accent-2: #daf181;
  --accent-3: #ffdf69;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 60px rgba(52, 60, 237, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --nav-height: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans KR", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding-left: 1.1em;
}

li + li {
  margin-top: 0.45em;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 18s var(--ease-out) infinite alternate;
}

.ambient__orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(169, 224, 255, 0.7), transparent 70%);
}

.ambient__orb--2 {
  width: 420px;
  height: 420px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(218, 241, 129, 0.45), transparent 70%);
  animation-delay: -6s;
}

.ambient__orb--3 {
  width: 360px;
  height: 360px;
  top: 45%;
  right: 15%;
  background: radial-gradient(circle, rgba(255, 223, 105, 0.35), transparent 70%);
  animation-delay: -12s;
}

@keyframes float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(24px, -32px, 0) scale(1.06); }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
    backdrop-filter 0.4s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.nav__logo-wrap {
  display: flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 10px;
  background: #1b1b1b;
}

.nav__logo {
  height: 14px;
  width: auto;
}

.nav__brand-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links li {
  margin: 0;
}

.nav__links li + li {
  margin-top: 0;
}

.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.25s, background 0.25s;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
}

.nav__cta:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: calc(var(--nav-height) + 64px) 0 96px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.hero__content .hero__title {
  max-width: none;
}

.hero__visual {
  position: relative;
}

.hero__image-frame {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-muted));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s;
}

.hero__image-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: heroImageIn 1s var(--ease-out) 0.5s both;
}

.hero__image-glow {
  position: absolute;
  inset: 10% -10% -10% 10%;
  background: radial-gradient(circle, rgba(52, 60, 237, 0.12), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2.4s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand) 0%, #6b71f5 50%, var(--accent-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0 0 24px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero__summary {
  margin: 0 0 40px;
  max-width: 680px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.35s;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(52, 60, 237, 0.28);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  opacity: 0.5;
  transition: opacity 0.4s;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar:hover::before {
  opacity: 0.75;
}

.pillar:nth-child(1)::before {
  background: linear-gradient(180deg, rgba(169, 224, 255, 0.55), transparent);
}

.pillar:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(218, 241, 129, 0.5), transparent);
}

.pillar:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(255, 223, 105, 0.45), transparent);
}

.pillar__label {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.pillar__title {
  position: relative;
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pillar__desc {
  position: relative;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.pillar__stat {
  position: relative;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section--dark {
  background: linear-gradient(180deg, #141418 0%, #1b1b22 100%);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section__eyebrow--light {
  color: var(--accent-1);
}

.section__title--light {
  color: #fff;
}

.section__intro--light {
  color: rgba(255, 255, 255, 0.68);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.split__media--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.split__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.split__media:hover .split__image {
  transform: scale(1.02);
}

.split__title {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.split__text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.split--manager {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.product-gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.product-gallery__item:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 224, 255, 0.25);
}

.product-gallery__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  background: #0a0a0c;
}

.product-gallery__item figcaption {
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.partner-logos {
  margin-top: 56px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}

.partner-logos__label {
  margin: 0 0 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
}

.partner-logos__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.partner-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 12px 24px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}

.partner-logos__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.partner-logos__item--dark {
  background: #1b1b1b;
  border-color: rgba(255, 255, 255, 0.08);
}

.partner-logos__item img {
  max-height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

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

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.section__header--center .section__intro {
  margin-inline: auto;
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.section--alt .faq-item {
  background: var(--bg);
}

.faq-item[open] {
  border-color: rgba(52, 60, 237, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s;
}

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

.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-muted);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 0.35s var(--ease-out), background 0.25s, color 0.25s;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
  background: var(--brand);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item__question:hover {
  color: var(--brand);
}

.faq-item__answer {
  padding: 0 24px 20px;
}

.faq-item__answer p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item__answer li + li {
  margin-top: 0;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.section__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__intro {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.section--alt .card {
  background: var(--bg-elevated);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(52, 60, 237, 0.15);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.card__icon--blue { background: rgba(169, 224, 255, 0.45); }
.card__icon--green { background: rgba(218, 241, 129, 0.45); }
.card__icon--yellow { background: rgba(255, 223, 105, 0.45); }
.card__icon--brand { background: rgba(52, 60, 237, 0.1); color: var(--brand); }

.card__title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.feature-tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}

.section--alt .feature-tag {
  background: var(--bg);
}

.feature-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 60, 237, 0.25);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
  border: 1px solid var(--border);
}

.stat {
  padding: 28px 24px;
  background: var(--bg-elevated);
  text-align: center;
}

.stat__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.resource-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card .card__text {
  flex: 1;
}

.resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  transition: gap 0.3s;
}

.resource-card__link:hover {
  gap: 10px;
}

.cta {
  padding: 72px 0 96px;
}

.cta__box {
  position: relative;
  padding: 56px 48px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #1b1b1b 0%, #2d2d3a 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(52, 60, 237, 0.35), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(169, 224, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
}

.cta__title {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta__text {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.cta .btn--primary {
  background: #fff;
  color: var(--text);
  box-shadow: none;
}

.cta .btn--primary:hover {
  background: #f0f0f0;
}

.note {
  margin-top: 48px;
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
}

.note__title {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.note__list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 16px;
  width: auto;
  filter: brightness(0);
  opacity: 0.55;
}

.footer__divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.hero .reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s var(--ease-out) forwards;
}

.hero .reveal-hero:nth-child(1) { animation-delay: 0.1s; }
.hero .reveal-hero:nth-child(2) { animation-delay: 0.2s; }
.hero .reveal-hero:nth-child(3) { animation-delay: 0.3s; }
.hero .reveal-hero:nth-child(4) { animation-delay: 0.4s; }
.hero .reveal-hero:nth-child(5) { animation-delay: 0.5s; }
.hero .reveal-hero:nth-child(6) { animation-delay: 0.65s; }

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

@media (max-width: 960px) {
  .hero__grid,
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__visual {
    order: -1;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery__item img {
    height: 220px;
  }

  .pillars,
  .grid-3,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats .stat:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), opacity 0.4s, visibility 0.4s;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__menu .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__menu .nav__links a {
    padding: 12px 16px;
    border-radius: 12px;
  }

  .nav__menu .nav__cta {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 64px;
  }

  .hero__grid {
    margin-bottom: 48px;
  }

  .nav__brand-text {
    display: none;
  }

  .nav__brand-divider {
    display: none;
  }

  .split--manager {
    margin-top: 40px;
    padding-top: 40px;
  }

  .partner-logos {
    padding: 24px 16px;
  }

  .partner-logos__item {
    flex: 1 1 calc(50% - 8px);
    min-width: 120px;
  }

  .pillars,
  .grid-2,
  .grid-3,
  .stats {
    grid-template-columns: 1fr;
  }

  .stats .stat:last-child {
    grid-column: auto;
  }

  .section {
    padding: 64px 0;
  }

  .cta__box {
    padding: 40px 28px;
  }

  .faq-item__question {
    padding: 16px 18px;
    font-size: 0.94rem;
  }

  .faq-item__answer {
    padding: 0 18px 16px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

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

  .ambient__orb,
  .hero__eyebrow-dot {
    animation: none;
  }

  .reveal,
  .hero .reveal-hero {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .pillar:hover,
  .card:hover,
  .btn:hover,
  .feature-tag:hover,
  .hero__image-frame:hover,
  .split__media:hover .split__image,
  .product-gallery__item:hover,
  .partner-logos__item:hover {
    transform: none;
  }
}
