/* GI Capital V2 — Public Beta 0.1 + Foundation PS-001 */
@import url('foundation/tokens.css');
@import url('foundation/layout.css');
@import url('foundation/a11y.css');
@import url('foundation/ui-kit.css');
@import url('components.css');
@import url('responsive.css');
@import url('../../css/public-ai-assistant.css?v=20260708sec01');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.v2-body {
  margin: 0;
  font-family: var(--v2-font-sans);
  color: var(--v2-ink);
  background: var(--v2-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.v2-container {
  width: min(100% - 32px, var(--v2-max));
  margin-inline: auto;
}

/* ── Header ── */
.v2-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--v2-header-h);
  transition: background 0.3s var(--v2-ease), box-shadow 0.3s var(--v2-ease), border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.v2-header--force-dark,
.v2-header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-color: var(--v2-line);
  box-shadow: 0 8px 32px rgba(15, 28, 46, 0.06);
}

.v2-header--scrolled .v2-brand__text,
.v2-header--force-dark .v2-brand__text {
  color: var(--v2-muted);
}

.v2-header--scrolled .v2-nav-panel a:not(.v2-btn),
.v2-header--force-dark .v2-nav-panel a:not(.v2-btn) {
  color: var(--v2-ink);
}

.v2-header--scrolled .v2-nav-panel a:not(.v2-btn):hover,
.v2-header--force-dark .v2-nav-panel a:not(.v2-btn):hover {
  background: rgba(29, 79, 145, 0.08);
  color: var(--v2-primary);
}

.v2-header--scrolled .v2-nav-panel a[aria-current="page"],
.v2-header--force-dark .v2-nav-panel a[aria-current="page"] {
  color: var(--v2-primary);
  background: rgba(29, 79, 145, 0.12);
  font-weight: 700;
}

.v2-header:not(.v2-header--scrolled):not(.v2-header--force-dark) .v2-brand__text {
  color: #c5d4e8;
}

.v2-header:not(.v2-header--scrolled):not(.v2-header--force-dark) .v2-nav-panel a:not(.v2-btn) {
  color: #eef3f9;
}

.v2-header:not(.v2-header--scrolled):not(.v2-header--force-dark) .v2-nav-panel a:not(.v2-btn):hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.v2-header:not(.v2-header--scrolled):not(.v2-header--force-dark) .v2-nav-panel a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.v2-header:not(.v2-header--scrolled):not(.v2-header--force-dark) .v2-nav-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.v2-header:not(.v2-header--scrolled) .v2-nav-toggle span,
.v2-header:not(.v2-header--scrolled) .v2-nav-toggle span::before,
.v2-header:not(.v2-header--scrolled) .v2-nav-toggle span::after {
  background: #e8eef5;
}

.v2-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v2-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.v2-brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.v2-brand__text {
  display: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--v2-muted);
  letter-spacing: 0.02em;
}

.v2-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: var(--v2-surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.v2-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--v2-ink);
  position: relative;
}

.v2-nav-toggle span::before,
.v2-nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--v2-ink);
  transition: transform 0.25s var(--v2-ease);
}

.v2-nav-toggle span::before { top: -6px; }
.v2-nav-toggle span::after { top: 6px; }

.v2-nav-panel {
  display: flex;
  align-items: center;
  gap: 4px;
}

.v2-nav-panel a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--v2-ink);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.v2-nav-panel a:hover {
  background: rgba(29, 79, 145, 0.08);
  color: var(--v2-primary);
}

.v2-nav-panel .v2-btn {
  margin-left: 8px;
}

/* ── Buttons ── */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--v2-ease), box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}

.v2-btn:hover {
  transform: translateY(-2px);
}

.v2-btn--primary {
  background: linear-gradient(135deg, var(--v2-gold) 0%, var(--v2-gold-soft) 100%);
  color: var(--v2-dark);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.v2-btn--primary:hover {
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45);
}

.v2-btn--ghost {
  background: transparent;
  color: #e8eef5;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.v2-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.v2-btn--outline {
  background: var(--v2-surface);
  color: var(--v2-primary);
  border: 1px solid var(--v2-line);
}

.v2-btn--outline:hover {
  border-color: var(--v2-primary);
  box-shadow: var(--v2-shadow);
}

.v2-btn--dark {
  background: var(--v2-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(29, 79, 145, 0.3);
}

.v2-btn--sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* ── Typography helpers ── */
.v2-eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v2-gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.v2-eyebrow--light {
  color: var(--v2-gold-soft);
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.2);
}

.v2-section-title {
  margin: 0 0 16px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.v2-section-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--v2-muted);
  max-width: 62ch;
}

.v2-section-head {
  margin-bottom: 48px;
}

.v2-section-head--center {
  text-align: center;
}

.v2-section-head--center .v2-section-lead {
  margin-inline: auto;
}

/* ── Hero ── */
.v2-hero {
  position: relative;
  padding: calc(var(--v2-header-h) + 48px) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(29, 79, 145, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #0d1f3c 0%, var(--v2-dark) 45%, #060e1a 100%);
  color: #e8eef5;
  overflow: hidden;
}

.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 80%);
  pointer-events: none;
}

.v2-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.v2-hero__tagline {
  margin: 0 0 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--v2-gold-soft);
  font-style: italic;
}

.v2-hero h1 {
  margin: 0 0 20px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.v2-hero__sub {
  margin: 0 0 32px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #a8bdd4;
  max-width: 52ch;
}

.v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.v2-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v2-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c5d4e8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-hero__visual {
  position: relative;
}

.v2-hero__visual img {
  width: 100%;
  border-radius: var(--v2-radius-lg);
  box-shadow: var(--v2-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-hero__stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 16px 20px;
  border-radius: var(--v2-radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--v2-ink);
  box-shadow: var(--v2-shadow-lg);
  border: 1px solid var(--v2-line);
}

.v2-hero__stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--v2-primary);
  line-height: 1.2;
}

.v2-hero__stat span {
  font-size: 0.82rem;
  color: var(--v2-muted);
  font-weight: 600;
}

/* ── Sections ── */
.v2-section {
  padding: 88px 0;
}

.v2-section--alt {
  background: var(--v2-surface);
  border-block: 1px solid var(--v2-line);
}

.v2-section--dark {
  background: linear-gradient(180deg, var(--v2-dark) 0%, #0d1a2e 100%);
  color: #e8eef5;
}

.v2-section--dark .v2-section-lead {
  color: #9eb3cc;
}

/* ── Cards grid ── */
.v2-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.v2-card {
  padding: 28px;
  border-radius: var(--v2-radius);
  background: var(--v2-surface);
  border: 1px solid var(--v2-line);
  transition: transform 0.3s var(--v2-ease), box-shadow 0.3s var(--v2-ease), border-color 0.3s;
}

.v2-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow);
  border-color: #c5d8ef;
}

.v2-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(29, 79, 145, 0.1) 0%, rgba(201, 168, 76, 0.12) 100%);
  color: var(--v2-primary);
  font-size: 1.2rem;
}

.v2-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.v2-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--v2-muted);
  line-height: 1.65;
}

.v2-section--dark .v2-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.v2-section--dark .v2-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
}

.v2-section--dark .v2-card p {
  color: #9eb3cc;
}

/* ── Method steps ── */
.v2-method {
  display: grid;
  gap: 16px;
}

.v2-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--v2-radius);
  background: var(--v2-surface);
  border: 1px solid var(--v2-line);
  align-items: start;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.v2-step:hover {
  border-color: #b8cfe8;
  box-shadow: var(--v2-shadow);
}

.v2-step__num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--v2-primary);
  background: linear-gradient(135deg, #e8f1fb 0%, #f5edd8 100%);
  flex-shrink: 0;
}

.v2-step h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.v2-step p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 0.95rem;
}

.v2-step__note {
  margin-top: 8px !important;
  font-size: 0.82rem !important;
  font-style: italic;
  opacity: 0.9;
}

.v2-step__activities {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--v2-line);
}

.v2-step__activities-label {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v2-primary);
}

@media (min-width: 900px) {
  .v2-method--brand {
    gap: 20px;
  }
}

/* ── Differentiator grid ── */
.v2-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.v2-diff-item {
  padding: 24px;
  border-radius: var(--v2-radius);
  text-align: center;
  background: var(--v2-bg);
  border: 1px solid var(--v2-line);
  transition: transform 0.25s var(--v2-ease), background 0.25s;
}

.v2-diff-item:hover {
  transform: translateY(-3px);
  background: var(--v2-surface);
  box-shadow: var(--v2-shadow);
}

.v2-diff-item__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--v2-ink);
}

/* ── Tech block ── */
.v2-tech {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.v2-tech__features {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.v2-tech__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
}

.v2-tech__feature::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-gold);
  flex-shrink: 0;
}

.v2-tech__note {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--v2-gold-soft);
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--v2-gold);
}

.v2-tech__visual {
  border-radius: var(--v2-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--v2-shadow-lg);
}

/* ── Gisella block ── */
.v2-founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.v2-founder__media {
  position: relative;
}

.v2-founder__media img {
  width: 100%;
  border-radius: var(--v2-radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--v2-shadow);
}

.v2-founder__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  border-radius: var(--v2-radius);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--v2-line);
}

.v2-founder__badge strong {
  display: block;
  font-size: 1rem;
}

.v2-founder__badge span {
  font-size: 0.85rem;
  color: var(--v2-muted);
}

.v2-quote {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-radius: var(--v2-radius);
  border-left: 4px solid var(--v2-gold);
  background: linear-gradient(135deg, #f8fafc 0%, #f5f0e4 100%);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--v2-ink);
}

/* Testimonios: ver components.css */

/* ── Campaign cards ── */
.v2-campaign {
  padding: 32px;
  border-radius: var(--v2-radius-lg);
  background: linear-gradient(135deg, var(--v2-dark-mid) 0%, var(--v2-dark) 100%);
  color: #e8eef5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: transform 0.3s var(--v2-ease), box-shadow 0.3s;
}

.v2-campaign:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-lg);
}

.v2-campaign h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.v2-campaign__details {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #a8bdd4;
}

.v2-campaign__disclaimer {
  margin: 0;
  font-size: 0.78rem;
  color: #7a92ad;
  max-width: 52ch;
}

.v2-campaign__cta {
  flex-shrink: 0;
}

/* ── Education ── */
.v2-edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.v2-edu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--v2-radius);
  background: var(--v2-surface);
  border: 1px solid var(--v2-line);
  text-decoration: none;
  transition: transform 0.25s var(--v2-ease), box-shadow 0.25s, border-color 0.25s;
}

.v2-edu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--v2-shadow);
  border-color: var(--v2-primary);
}

.v2-edu-item__num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--v2-gold);
  background: rgba(201, 168, 76, 0.12);
  flex-shrink: 0;
}

.v2-edu-item h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.v2-edu-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--v2-muted);
}

/* ── CTA blocks ── */
.v2-cta-mid {
  padding: 48px;
  border-radius: var(--v2-radius-lg);
  background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-dark) 100%);
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--v2-ease), transform 0.6s var(--v2-ease);
}

.v2-cta-mid.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-cta-mid h2 {
  margin: 0 0 12px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.v2-cta-mid p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 48ch;
  margin-inline: auto;
}

.v2-cta-final {
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
    var(--v2-dark);
  color: #e8eef5;
}

.v2-cta-final h2 {
  margin: 0 0 16px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.v2-cta-final p {
  margin: 0 auto 32px;
  max-width: 52ch;
  color: #a8bdd4;
  font-size: 1.05rem;
}

/* ── Footer ── */
.v2-footer {
  padding: 48px 0 32px;
  background: #060e1a;
  color: #8ba4c4;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.v2-footer__brand img {
  width: 56px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.v2-footer__brand p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 32ch;
}

.v2-footer h4 {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e8eef5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.v2-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-footer li {
  margin-bottom: 8px;
}

.v2-footer a {
  color: #8ba4c4;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.v2-footer a:hover {
  color: var(--v2-gold-soft);
}

.v2-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
}

.v2-footer__version {
  color: #5a7394;
  font-weight: 600;
}

/* ── Reveal animations ── */
.v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--v2-ease), transform 0.7s var(--v2-ease);
}

.v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-reveal--delay-1 { transition-delay: 0.1s; }
.v2-reveal--delay-2 { transition-delay: 0.2s; }
.v2-reveal--delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (min-width: 768px) {
  .v2-brand__text { display: block; }
}

@media (max-width: 960px) {
  .v2-hero__grid,
  .v2-tech,
  .v2-founder,
  .v2-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-campaign {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .v2-campaign__cta {
    justify-self: center;
  }

  .v2-hero__stat {
    left: auto;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 720px) {
  .v2-nav-toggle {
    display: inline-flex;
  }

  .v2-nav-panel {
    position: fixed;
    inset: var(--v2-header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--v2-line);
    box-shadow: var(--v2-shadow);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--v2-ease), opacity 0.3s, visibility 0.3s;
  }

  .v2-nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .v2-nav-panel a {
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--v2-ink);
  }

  .v2-nav-panel a[aria-current="page"] {
    color: var(--v2-primary);
    background: rgba(29, 79, 145, 0.1);
    font-weight: 700;
  }

  .v2-nav-panel .v2-btn {
    margin: 8px 0 0;
    width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
  }

  body.v2-nav-open {
    overflow: hidden;
  }

  .v2-section {
    padding: 64px 0;
  }

  .v2-diff-grid {
    grid-template-columns: 1fr;
  }

  .v2-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v2-cta-mid {
    padding: 32px 24px;
  }

  .v2-footer__grid {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .v2-reveal,
  .v2-cta-mid {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .v2-btn:hover,
  .v2-card:hover,
  .v2-step:hover,
  .v2-diff-item:hover,
  .v2-edu-item:hover,
  .v2-campaign:hover {
    transform: none;
  }
}
