/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --color-primary:   #6EC3CA;
  --color-secondary: #6CD4D7;
  --color-dark:      #0f172a;
  --color-dark-2:    #1e293b;
  --color-text:      #334155;
  --color-muted:     #64748b;
  --color-light:     #f8fafc;
  --color-border:    #e2e8f0;
  --color-success:   #10b981;
  --color-warning:   #f59e0b;
  --color-danger:    #ef4444;

  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease:  cubic-bezier(.25,.46,.45,.94);
  --max-w: 1200px;
  --pad-x: 24px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.feature-card,
.trend-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.feature-card.d2,
.trend-item.d2 { transition-delay: .12s; }
.feature-card.d3,
.trend-item.d3 { transition-delay: .24s; }
.feature-card.visible,
.trend-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV — matches index.html design system
   ============================================================ */
.b26-nav {
  background: #2E2E36;
  padding: 18px 0;
  border-bottom: 1px solid rgba(80,80,96,.4);
  position: sticky;
  top: 0;
  z-index: 100;
}
.b26-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.b26-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.b26-nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.b26-nav-logo-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #E8E8EE;
  letter-spacing: .02em;
}
.b26-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.b26-nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: #B0B0BC;
  transition: color .2s;
  font-family: 'Outfit', sans-serif;
}
.b26-nav-links a:hover { color: #E8E8EE; }
.b26-nav-cta {
  background: #6EC3CA !important;
  color: #2E2E36 !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: .85rem !important;
  transition: background .2s !important;
}
.b26-nav-cta:hover { background: #6CD4D7 !important; color: #2E2E36 !important; }

@media (max-width: 640px) {
  .b26-nav-links a:not(.b26-nav-cta) { display: none; }
}

/* ============================================================
   RATES PROMO (shown after form submit)
   ============================================================ */
.b26-rates-promo {
  background: #2E2E36;
  padding: 72px 0;
  display: none;
}
.b26-rates-promo.visible {
  display: block;
  will-change: opacity, transform;
  animation: fadeUp .6s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.b26-rates-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.b26-rates-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  color: #6EC3CA;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.b26-rates-hed {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #E8E8EE;
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.b26-rates-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #B0B0BC;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}
.b26-rates-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.b26-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: #6EC3CA;
  background: rgba(110,195,202,.1);
  border: 1px solid rgba(110,195,202,.25);
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.b26-rates-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #6EC3CA;
  color: #2E2E36;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 4px;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.b26-rates-btn:hover {
  background: #6CD4D7;
  transform: translateY(-2px);
}
.b26-rates-stat-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.b26-rates-stat {
  text-align: right;
}
.b26-rates-stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #6EC3CA;
  line-height: 1;
  margin-bottom: 4px;
}
.b26-rates-stat-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  color: #505060;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .b26-rates-inner { grid-template-columns: 1fr; gap: 36px; }
  .b26-rates-stat-col { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .b26-rates-stat { text-align: left; }
}

/* ============================================================
   HERO
   ============================================================ */
.b26-hero {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  text-align: center;
}
.b26-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.22) 0%, transparent 70%);
  pointer-events: none;
}
.b26-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.b26-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  color: #6EC3CA;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid rgba(96,165,250,.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.b26-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #6EC3CA;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.6); }
}
.b26-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.b26-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #6EC3CA, #6CD4D7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.b26-hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #94a3b8;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.b26-form-section {
  background: var(--color-light);
  padding: 0 0 80px;
}
.b26-form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04);
  padding: 48px 40px;
  max-width: 600px;
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  transition: box-shadow .25s var(--ease);
}
.b26-form-card:hover {
  box-shadow: 0 8px 40px rgba(15,23,42,.12), 0 2px 8px rgba(15,23,42,.06);
}
.b26-form-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.b26-form-card .b26-form-sub {
  font-size: .9rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.b26-field {
  margin-bottom: 20px;
}
.b26-field label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.b26-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.b26-field input::placeholder { color: #94a3b8; }
.b26-field input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.b26-field input.error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.b26-field-error {
  font-size: .8rem;
  color: var(--color-danger);
  margin-top: 5px;
  display: none;
}
.b26-field-error.visible { display: block; }

/* Honeypot */
.b26-hp { display: none; visibility: hidden; }

.b26-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .01em;
  transition: opacity .2s, transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.b26-submit-btn:hover:not(:disabled) {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.b26-submit-btn:active:not(:disabled) { transform: scale(.98); }
.b26-submit-btn:disabled { opacity: .65; cursor: not-allowed; }

.b26-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  will-change: transform;
  display: none;
}
.b26-spinner.active { display: block; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

.b26-form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--color-muted);
  margin-top: 14px;
}
.b26-form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  font-size: .95rem;
  color: #065f46;
  margin-top: 16px;
  line-height: 1.6;
}
.b26-form-success.visible { display: block; }
.b26-form-inline-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: .875rem;
  color: #991b1b;
  margin-top: 14px;
}
.b26-form-inline-error.visible { display: block; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.b26-why {
  background: var(--color-light);
  padding: 80px 0;
}
.b26-section-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.b26-why h2,
.b26-trends h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 48px;
}
.b26-trends h2 { color: #fff; }

.b26-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease),
              opacity .6s var(--ease), transform .6s var(--ease);
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
  transform: translateY(-3px);
}
.feature-card .card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.feature-card p {
  font-size: .9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   TRENDS SECTION
   ============================================================ */
.b26-trends {
  background: var(--color-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.b26-trends::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.1) 0%, transparent 65%);
  pointer-events: none;
}
.trend-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trend-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trend-item:last-child { border-bottom: none; }
.trend-num {
  font-size: .75rem;
  font-weight: 700;
  color: #6EC3CA;
  letter-spacing: .1em;
  padding-top: 4px;
  font-family: var(--font-heading);
}
.trend-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.trend-body p {
  font-size: .9rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.b26-footer {
  background: #0a1120;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 0;
}
.b26-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.b26-footer p {
  font-size: .8rem;
  color: #505060;
}
.b26-footer a {
  color: #6EC3CA;
  transition: color .2s;
}
.b26-footer a:hover { color: #93c5fd; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .b26-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .b26-hero { padding: 72px 0 64px; }
  .b26-form-card { padding: 32px 24px; margin-top: -32px; }
  .b26-form-section { padding-bottom: 60px; }
  .b26-why { padding: 60px 0; }
  .b26-trends { padding: 60px 0; }
  .b26-cards { grid-template-columns: 1fr; gap: 16px; }
  .b26-footer-inner { flex-direction: column; text-align: center; }
  .trend-item {
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 24px 0;
  }
}
