/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --paper:      #FBFAF7;
  --navy:       #0B1A3D;
  --cyan:       #0891B2;
  --ink:        #0F1420;
  --line:       rgba(15,20,32,0.10);
  --line-mid:   rgba(15,20,32,0.14);
  --muted:      rgba(15,20,32,0.55);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --max-w: 1280px;
  --gap: clamp(24px, 4vw, 64px);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gap);
}
.serif { font-family: 'Fraunces', serif; }
.serif-italic { font-family: 'Fraunces', serif; font-style: italic; }
.mono { font-family: 'JetBrains Mono', monospace; }
.accent-text { color: var(--cyan); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: var(--paper);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 500; font-size: 14px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #060f25; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--navy);
  border: 1px solid rgba(11,26,61,0.22); padding: 10px 18px; border-radius: 999px;
  font-weight: 500; font-size: 14px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { background: rgba(11,26,61,0.05); }

.btn-outline {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--navy);
  border: 1px solid var(--line-mid); padding: 14px 26px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 15px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--navy); }

.btn-outline-white {
  display: inline-flex; align-items: center;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3); padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.btn-outline-navy {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--navy);
  border: 1px solid rgba(11,26,61,0.22); padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.btn-outline-navy:hover { background: rgba(11,26,61,0.05); }

.btn-primary-navy {
  display: inline-flex; align-items: center;
  background: var(--navy); color: var(--paper);
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-primary-navy:hover { background: #060f25; transform: translateY(-1px); }

.btn-accent {
  display: inline-flex; align-items: center;
  background: var(--cyan); color: #fff;
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-accent:hover { background: #0779a0; transform: translateY(-1px); }

.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,247,0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 18px var(--gap);
  max-width: var(--max-w); margin-inline: auto;
}
.logo-link {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.5px; color: var(--navy);
}
.main-nav {
  display: flex; gap: 28px; flex: 1;
  font-size: 15px; color: var(--muted);
}
.main-nav a:hover { color: var(--navy); }
.header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: var(--radius-sm);
  background: transparent; border: none; cursor: pointer;
}
.mobile-menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 1px;
  transition: transform .25s, opacity .25s;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px var(--gap) 24px;
}
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu nav a {
  display: block; padding: 10px 4px;
  font-size: 16px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu nav a:last-child, .mobile-menu nav a:nth-last-child(2) { border: none; margin-top: 8px; }
.mobile-menu.open { display: block; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding: clamp(64px, 10vw, 120px) var(--gap) clamp(48px, 6vw, 80px);
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(11,26,61,0.15); border-radius: 999px;
  font-size: 11px; letter-spacing: 1.8px; color: var(--navy);
  background: #fff; margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--cyan); display: inline-block;
}
.hero-headline {
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.96; letter-spacing: -0.035em;
  font-weight: 600; color: var(--navy);
  margin: 0 auto 28px;
  max-width: 1100px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--navy) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted); max-width: 640px; margin-inline: auto;
  line-height: 1.55; margin-bottom: 36px;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ─── AUDIENCE SPLIT ─────────────────────────────────────── */
.audience-split {
  padding: 0 var(--gap) clamp(64px, 8vw, 96px);
}
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.audience-card {
  padding: clamp(32px, 4vw, 48px); border-radius: var(--radius-lg);
  min-height: 320px; display: flex; flex-direction: column;
  justify-content: space-between; position: relative; overflow: hidden;
}
.card-dark { background: var(--navy); color: var(--paper); }
.card-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.glow-orb {
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 999px;
  background: radial-gradient(circle, rgba(8,145,178,0.3), transparent 70%);
  pointer-events: none;
}
.product-tag { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tag-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--cyan); display: inline-block; flex-shrink: 0;
}
.tag-dot-light { background: var(--navy); }
.tag-label { font-size: 12px; letter-spacing: 2px; font-weight: 600; color: var(--paper); }
.tag-label-light { color: var(--navy); }
.audience-forwho { font-size: 12px; color: rgba(251,250,247,0.6); margin-bottom: 24px; }
.forwho-light { color: var(--muted); }
.audience-headline {
  font-size: clamp(24px, 3vw, 36px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--paper);
}
.headline-dark { color: var(--navy); }
.audience-card-footer { margin-top: 32px; }

/* ─── SECTION COMMON ─────────────────────────────────────── */
.eyebrow {
  font-size: 11px; letter-spacing: 2px;
  color: var(--cyan); margin-bottom: 16px;
  display: block;
}
.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-headline {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em; line-height: 1.05;
  color: var(--navy); font-weight: 500;
}
.section-lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted); line-height: 1.6;
  margin-top: 16px; max-width: 540px;
}
.section-sublead {
  font-size: 17px; color: var(--muted);
  margin-top: 16px; max-width: 480px; margin-inline: auto;
}

/* ─── PROBLEM SECTION ────────────────────────────────────── */
.problem-section {
  padding: clamp(64px, 8vw, 96px) var(--gap);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(48px, 6vw, 96px);
  align-items: flex-start; margin-bottom: 48px;
}
.problem-left { position: sticky; top: 120px; }
.problem-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.problem-card {
  padding: 24px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.problem-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(8,145,178,0.08); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.problem-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.problem-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.problem-banner {
  background: var(--navy); color: var(--paper);
  padding: 28px 36px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 17px; font-weight: 500; line-height: 1.4;
  flex-wrap: wrap;
}
.problem-banner .accent-text { font-size: 12px; letter-spacing: 1.5px; color: var(--cyan); white-space: nowrap; }

/* ─── WHAT SECTION ───────────────────────────────────────── */
.what-section {
  padding: clamp(64px, 8vw, 96px) var(--gap);
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feature-card {
  padding: clamp(28px, 3vw, 40px); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(8,145,178,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feature-title {
  font-size: 26px; font-weight: 600; color: var(--navy);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── PRODUCTS ───────────────────────────────────────────── */
.products-section {
  padding: clamp(64px, 8vw, 96px) var(--gap);
  background: #fff; border-top: 1px solid var(--line);
}
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: space-between;
}
.product-card-top { flex: 1; }
.product-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px; flex-wrap: wrap; gap: 8px;
}
.product-tag-text { font-size: 12px; letter-spacing: 2px; color: var(--cyan); font-weight: 700; }
.product-audience { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
.product-title {
  font-size: clamp(26px, 3vw, 34px); font-weight: 500;
  color: var(--navy); line-height: 1.1; letter-spacing: -0.02em;
  margin: 24px 0 16px;
}
.product-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }
.product-card-bottom { margin-top: 32px; }
.product-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--line);
  margin-bottom: 28px;
}
.product-bullets li {
  display: flex; gap: 12px; font-size: 14px; align-items: center;
}
.bullet-check {
  width: 20px; height: 20px; border-radius: 5px;
  background: rgba(8,145,178,0.12); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* ─── HOW SECTION ────────────────────────────────────────── */
.how-section {
  padding: clamp(64px, 8vw, 96px) var(--gap);
}
.network-diagram-wrap {
  background: #fff; border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line);
}
.network-diagram {
  position: relative; height: clamp(280px, 40vw, 400px);
}
.network-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.network-center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(100px, 12vw, 140px); height: clamp(100px, 12vw, 140px);
  border-radius: 999px; background: var(--navy);
  color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(8,145,178,0.3);
  text-align: center;
}
.network-label-top { font-size: 9px; letter-spacing: 2px; color: var(--cyan); }
.network-label-main { font-size: clamp(16px, 2vw, 22px); font-weight: 700; margin-top: 4px; }
.network-node {
  position: absolute; transform: translate(-50%, -50%);
  padding: 8px 14px; background: #fff;
  border: 1px solid var(--line-mid); border-radius: 999px;
  font-size: clamp(11px, 1.2vw, 13px); font-weight: 600; color: var(--navy);
  white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  display: flex; align-items: center; gap: 8px;
}
.node-tag { font-size: 9px; color: var(--cyan); letter-spacing: 1px; }

/* ─── IMPACT SECTION ─────────────────────────────────────── */
.impact-section {
  padding: clamp(64px, 8vw, 96px) var(--gap);
  background: var(--navy); color: var(--paper);
}
.impact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(48px, 6vw, 96px);
  align-items: flex-start;
}
.impact-section .section-headline { color: var(--paper); }
.impact-section .accent-text { color: var(--cyan); }
.impact-items { display: flex; flex-direction: column; gap: 0; }
.impact-item {
  display: grid; grid-template-columns: 40px 1fr; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(251,250,247,0.12);
}
.impact-item:last-child { border-bottom: none; }
.impact-num { font-size: 13px; color: var(--cyan); }
.impact-body h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.impact-body p { font-size: 15px; color: rgba(251,250,247,0.65); line-height: 1.55; }

/* ─── WHY SECTION ────────────────────────────────────────── */
.why-section {
  padding: clamp(64px, 8vw, 96px) var(--gap);
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.why-card {
  padding: clamp(28px, 3vw, 40px); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  position: relative;
}
.why-num {
  position: absolute; top: 24px; right: 24px;
  font-size: 13px; color: var(--cyan); font-weight: 600;
}
.why-title {
  font-size: 22px; font-weight: 600; color: var(--navy);
  margin-bottom: 12px; letter-spacing: -0.02em; margin-top: 32px;
}
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── CTA ────────────────────────────────────────────────── */
.cta-section {
  padding: 0 var(--gap) clamp(64px, 8vw, 96px);
}
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #061436 100%);
  color: var(--paper); border-radius: var(--radius-xl);
  padding: clamp(64px, 8vw, 96px) clamp(32px, 5vw, 64px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 999px;
  background: radial-gradient(circle, rgba(8,145,178,0.25), transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; }
.cta-headline {
  font-size: clamp(42px, 6vw, 72px); font-weight: 500;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 24px;
  max-width: 900px; margin-inline: auto;
}
.cta-lead {
  font-size: 18px; color: rgba(251,250,247,0.7);
  margin-bottom: 40px; max-width: 520px; margin-inline: auto;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 5vw, 64px) 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 64px; align-items: flex-start;
  padding-bottom: 48px;
}
.footer-brand .logo-link { margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 260px; line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px; padding-bottom: 28px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}

/* ─── MANAGEMENT PAGE ────────────────────────────────────── */
.page-hero {
  padding: clamp(80px, 10vw, 120px) var(--gap) clamp(48px, 6vw, 80px);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-headline {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95; letter-spacing: -0.04em;
  font-weight: 500; color: var(--navy);
  margin-bottom: 28px;
}
.page-lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted); max-width: 600px; line-height: 1.55;
  margin-bottom: 40px;
}
.page-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.features-list { display: flex; flex-direction: column; gap: 0; }
.feature-row {
  display: grid; grid-template-columns: 48px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: none; }
.feature-row-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--cyan); }
.feature-row-body h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.feature-row-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.screenshot-frame {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 8px 8px 0; overflow: hidden;
  box-shadow: 0 32px 80px rgba(11,26,61,0.25);
}
.screenshot-frame img { border-radius: 14px 14px 0 0; width: 100%; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-hero {
  padding: clamp(64px, 8vw, 96px) var(--gap) 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px;
  padding: 32px var(--gap) 96px;
  max-width: var(--max-w); margin-inline: auto;
  align-items: flex-start;
}
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 48px);
}
.form-card-title { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.form-help { font-size: 15px; color: var(--muted); margin-bottom: 36px; line-height: 1.5; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; }
.field-input, .field-select, .field-textarea {
  padding: 13px 16px; border: 1px solid var(--line-mid);
  border-radius: var(--radius-sm); background: var(--paper);
  font-size: 15px; color: var(--ink); outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 4px rgba(11,26,61,0.08);
  background: #fff;
}
.field-input::placeholder, .field-textarea::placeholder { color: var(--muted); }
.field-textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(15,20,32,0.5)' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.submit-btn {
  margin-top: 24px; background: var(--navy); color: var(--paper);
  padding: 15px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, transform .15s;
}
.submit-btn:hover { background: #060f25; transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 14px; }
.contact-right { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--navy); color: var(--paper);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; overflow: hidden;
}
.info-card::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 999px;
  background: radial-gradient(circle, rgba(8,145,178,0.22), transparent 65%);
  pointer-events: none;
}
.info-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.8px; color: rgba(251,250,247,0.55); margin-bottom: 20px; position: relative; }
.info-row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; position: relative; }
.info-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(251,250,247,0.08); border: 1px solid rgba(251,250,247,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--paper);
}
.info-title { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; color: rgba(251,250,247,0.55); margin-bottom: 4px; }
.info-value { font-size: 16px; color: var(--paper); line-height: 1.4; }
.info-value a:hover { color: #34D2EE; }

/* ─── LOGIN / INGRESO ────────────────────────────────────── */
.login-page {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
}
.login-left {
  background: var(--navy); color: var(--paper);
  padding: clamp(40px, 5vw, 80px); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.login-glow {
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 999px;
  background: radial-gradient(circle, rgba(8,145,178,0.2), transparent 70%);
  pointer-events: none;
}
.login-brand { display: flex; align-items: center; gap: 10px; margin-bottom: auto; }
.login-brand .wordmark { color: var(--paper); }
.login-headline {
  font-family: 'Fraunces', serif; font-size: clamp(36px, 4vw, 56px);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--paper); margin-bottom: 20px; position: relative;
}
.login-sub { font-size: 16px; color: rgba(251,250,247,0.65); line-height: 1.6; position: relative; }
.login-right {
  background: var(--paper); padding: clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.login-card { max-width: 400px; }
.login-title { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 500; color: var(--navy); margin-bottom: 32px; }
.login-form { display: flex; flex-direction: column; gap: 16px; }
.login-forgot { font-size: 13px; color: var(--cyan); text-align: right; margin-top: 4px; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav, .header-actions { display: none; }
  .mobile-menu-toggle { display: flex; margin-left: auto; }
  .split-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-left { position: static; }
  .problem-cards { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-right { position: static; }
  .login-page { grid-template-columns: 1fr; }
  .login-left { display: none; }
}
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .problem-cards { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .problem-banner { flex-direction: column; gap: 12px; }
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.fade-up {
  animation: fadeUp .6s cubic-bezier(.2,.6,.3,1) both;
}
