:root {
  --speed: #1e66cc;
  --speed-dim: rgba(0, 152, 168, 0.06);
  --speed-border: rgba(0, 152, 168, 0.2);
  --trust: #1e66cc;
  --trust-dim: rgba(30, 102, 204, 0.06);
  --trust-border: rgba(30, 102, 204, 0.2);
  --trust-subtle: rgba(30, 102, 204, 0.02);
  --trust-rgb: 30, 102, 204;
  --deep: #1e66cc;
  --deep-dim: rgba(74, 93, 212, 0.06);
  --deep-border: rgba(74, 93, 212, 0.2);
  --text: #1a1a2e;
  --text-2: #5a5f7a;
  --text-3: #9a9fb5;
  --surface: #f5f6f8;
  --border: rgba(0, 0, 0, 0.07);
  --bg: #fff;
  --btn-bg: #1e66cc;
  --btn-bg-hover: #1759b3;
  --btn-text: #fff;
  --nav-bg: rgba(255, 255, 255, 0.94);
  --shadow: rgba(26, 26, 46, 0.15);
  --shadow-soft: rgba(0, 0, 0, 0.06);
  --bar-track: rgba(0, 0, 0, 0.04);
  --on-dark: rgba(255, 255, 255, 0.6);
  --on-dark-bg: rgba(255, 255, 255, 0.08);
  --green: #00a884;
  --green-light: rgba(0, 168, 132, 0.08);
  --emerald: #00a884;
  --amber: #d97706;
  --amber-light: rgba(217, 119, 6, 0.07);
  --rose: #c44b7a;
  --rose-light: rgba(196, 75, 122, 0.06);
  --red: rgba(200, 50, 50, 0.6);
  --card-bg: rgba(255, 255, 255, 0.92);
  --graph-entity-rgb: 30, 102, 204;
  --graph-metric-rgb: 217, 119, 6;
  --graph-document-rgb: 0, 152, 168;
  --graph-action-rgb: 196, 75, 122;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#graph-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  opacity: 0.5;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#graph-canvas.typing {
  opacity: 0.75;
}
#graph-canvas.traversing {
  opacity: 0.85;
}
#graph-canvas.resolved {
  opacity: 0.35;
}

.graph-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(255, 255, 255, 0.88) 80%);
}

.graph-scroll-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page {
  position: relative;
  z-index: 2;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-img {
  height: 24px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}

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

.btn-ghost {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--btn-bg-hover);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-2);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 48px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--speed);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero h1 .accent {
  color: var(--trust);
}

.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-2);
  font-weight: 400;
  max-width: 580px;
  line-height: 1.6;
  margin: 0 auto 28px;
}

.hero-tagline {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}
.hero-tagline .t1 {
  color: var(--speed);
}
.hero-tagline .sep {
  color: var(--text-3);
  margin: 0 10px;
}
.hero-tagline .t2 {
  color: var(--trust);
}
.hero-tagline .t3 {
  color: var(--deep);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero.primary {
  background: var(--btn-bg);
  color: var(--btn-text);
}
.btn-hero.primary:hover {
  background: var(--btn-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow);
}
.btn-hero.secondary {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
}
.btn-hero.secondary:hover {
  border-color: var(--text-3);
  color: var(--text);
}

.agent-showcase {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 48px 56px;
}

.agent-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  width: fit-content;
  margin: 0 auto 20px;
}

.agent-tab {
  padding: 10px 24px;
  border-radius: 9px;
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.agent-tab:hover {
  color: var(--text);
}
.agent-tab.active {
  background: var(--bg);
  color: var(--trust);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.agent-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px var(--trust-subtle), 0 12px 48px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ac-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(245, 246, 248, 0.6);
}

.ac-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ac-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(0, 168, 132, 0.4);
  animation: pulse 2s infinite;
  transition: all 0.4s;
}
.ac-status.traversing {
  background: var(--trust);
  box-shadow: 0 0 12px var(--trust-border);
  animation: statePulse 0.8s infinite;
}

@keyframes statePulse {
  0%, 100% {
    box-shadow: 0 0 6px var(--trust-subtle);
  }
  50% {
    box-shadow: 0 0 14px var(--trust-border);
  }
}
.ac-title {
  font-size: 14px;
  font-weight: 600;
}

.ac-sub {
  font-size: 11px;
  color: var(--text-3);
  font-family: "JetBrains Mono", monospace;
  transition: all 0.3s;
}

.ac-graph-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--trust-dim);
  border: 1px solid var(--trust-border);
  font-size: 11px;
  color: var(--trust);
  font-weight: 500;
}

.ac-body {
  display: flex;
  height: 460px;
}

.ac-sidebar {
  width: 260px;
  flex-shrink: 0;
  padding: 20px;
  border-right: 1px solid var(--border);
  background: rgba(245, 246, 248, 0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ac-sidebar-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.time-item {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.time-item:hover {
  border-color: var(--trust-border);
}

.time-label {
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.time-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-old {
  font-size: 11px;
  color: var(--text-3);
  font-family: "JetBrains Mono", monospace;
  text-decoration: line-through;
  opacity: 0.7;
}

.time-arrow {
  color: var(--trust);
  font-size: 12px;
}

.time-new {
  font-size: 12px;
  color: var(--trust);
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
}

.ac-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ac-messages {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.ac-messages::-webkit-scrollbar {
  width: 3px;
}
.ac-messages::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.msg {
  display: flex;
  gap: 9px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}
.msg.visible {
  opacity: 1;
  transform: translateY(0);
}
.msg.user {
  flex-direction: row-reverse;
}

.msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.msg-avatar.ai {
  background: linear-gradient(135deg, var(--trust), var(--btn-bg-hover));
  color: #fff;
}
.msg-avatar.human {
  background: var(--amber-light);
  border: 1px solid rgba(217, 119, 6, 0.25);
  color: var(--amber);
}

.msg-body {
  max-width: 85%;
}

.msg-bubble {
  padding: 11px 14px;
  border-radius: 11px;
  font-size: 13px;
  line-height: 1.6;
}

.msg.ai .msg-bubble {
  background: var(--trust-subtle);
  border: 1px solid var(--trust-border);
}

.msg.user .msg-bubble {
  background: var(--amber-light);
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.msg-meta {
  font-size: 9.5px;
  color: var(--text-3);
  margin-top: 3px;
  font-family: "JetBrains Mono", monospace;
}

.msg.user .msg-meta {
  text-align: right;
}

.mini-graph-wrap {
  margin: 0 0 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--trust-border);
  background: var(--trust-subtle);
  height: 140px;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s ease;
}
.mini-graph-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.mini-graph-label {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 9px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  color: var(--trust);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.8);
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 2;
}

.graph-traverse {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 7px;
  background: var(--trust-subtle);
  border: 1px dashed var(--trust-border);
  font-size: 10.5px;
  color: var(--text-3);
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 7px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.graph-traverse.visible {
  opacity: 1;
  transform: translateY(0);
}

.traverse-dots {
  display: flex;
  gap: 2px;
}
.traverse-dots span {
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: var(--trust);
  animation: dotPulse 1.4s infinite;
}
.traverse-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.traverse-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}
.msg-sources {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 7px;
}

.src-tag {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
}
.src-tag.sec {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(0, 168, 132, 0.15);
}
.src-tag.earn {
  background: var(--rose-light);
  color: var(--rose);
  border: 1px solid rgba(196, 75, 122, 0.15);
}
.src-tag.kg {
  background: var(--trust-dim);
  color: var(--trust);
  border: 1px solid var(--trust-border);
}
.src-tag.gold {
  background: var(--amber-light);
  color: var(--amber);
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.ac-input {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: rgba(245, 246, 248, 0.5);
}

.ac-input-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.25s;
}
.ac-input-wrap.active {
  border-color: var(--trust-border);
  box-shadow: 0 0 0 3px var(--trust-subtle);
}

.ac-input-text {
  flex: 1;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text);
  min-height: 20px;
  overflow: hidden;
}
.ac-input-text.placeholder {
  color: var(--text-3);
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: var(--trust);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.ac-send {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: none;
  background: var(--trust);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.ac-footer-note {
  text-align: center;
  font-size: 10px;
  color: var(--text-3);
  margin-top: 8px;
  font-family: "JetBrains Mono", monospace;
}

@media (max-width: 1024px) {
  .ac-sidebar {
    display: none;
  }
  .agent-showcase {
    padding: 24px 24px 56px;
  }
}
@media (max-width: 640px) {
  .agent-tabs {
    flex-direction: column;
    width: 100%;
  }
  .agent-tab {
    text-align: center;
  }
  .agent-showcase {
    padding: 20px 20px 48px;
  }
}
.statement {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 48px 120px;
  text-align: center;
}

.statement-inner {
  border-top: 3px solid var(--text);
  padding-top: 48px;
}

.statement h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.statement p {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.statement .punchline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.statement .punchline .s {
  color: var(--trust);
}
.statement .punchline .d {
  color: var(--deep);
}

.pillars {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

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

.pillar {
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--bg);
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px var(--shadow-soft);
}
.pillar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.pillar.s::after {
  background: var(--speed);
}
.pillar.t::after {
  background: var(--trust);
}
.pillar.d::after {
  background: var(--deep);
}
.pillar.s .pillar-body .sub {
  color: var(--speed);
}
.pillar.t .pillar-body .sub {
  color: var(--trust);
}
.pillar.d .pillar-body .sub {
  color: var(--deep);
}

.pillar-video {
  aspect-ratio: 16/9;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border-bottom: 1.5px solid var(--border);
}
.pillar-video:hover .play-btn {
  transform: scale(1.12);
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.pillar.s .play-btn {
  background: var(--speed-dim);
  color: var(--speed);
  border: 1.5px solid var(--speed-border);
}

.pillar.t .play-btn {
  background: var(--trust-dim);
  color: var(--trust);
  border: 1.5px solid var(--trust-border);
}

.pillar.d .play-btn {
  background: var(--deep-dim);
  color: var(--deep);
  border: 1.5px solid var(--deep-border);
}

.vid-label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
}

.pillar-body {
  padding: 32px 28px;
}
.pillar-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pillar-body .sub {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pillar-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-body li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.pillar-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.pillar-body .pillar.s li::before {
  background: var(--speed);
}
.pillar-body .pillar.t li::before {
  background: var(--trust);
}
.pillar-body .pillar.d li::before {
  background: var(--deep);
}

.compare {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

.compare-header {
  margin-bottom: 48px;
}
.compare-header h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.compare-header p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.6;
}

.comp-table-wrap {
  border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow-x: auto;
  margin-bottom: 56px;
}

table.comp {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 580px;
}
table.comp thead th {
  background: var(--surface);
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1.5px solid var(--border);
  color: var(--text-2);
}
table.comp thead th:first-child {
  width: 140px;
}
table.comp thead th.cc {
  color: var(--text);
  position: relative;
}
table.comp thead th.cc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--speed), var(--trust), var(--deep));
}
table.comp tbody td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.5;
  color: var(--text-2);
}
table.comp tbody td:first-child {
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
}
table.comp tbody td.cc {
  color: var(--text);
  background: var(--trust-subtle);
}
table.comp tbody tr:last-child td {
  border-bottom: none;
}

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

.bar-track {
  flex: 1;
  height: 6px;
  background: var(--bar-track);
  border-radius: 3px;
  overflow: hidden;
  max-width: 80px;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
}
.bar-fill.high {
  background: var(--green);
  width: 90%;
}
.bar-fill.mid {
  background: var(--amber);
  width: 40%;
}
.bar-fill.none {
  background: var(--red);
  width: 4%;
}

.bar-label {
  font-size: 13px;
  white-space: nowrap;
}
.bar-label.high {
  color: var(--green);
  font-weight: 700;
}
.bar-label.mid {
  color: var(--amber);
}
.bar-label.none {
  color: var(--red);
}

.cc .bar-fill {
  background: var(--green);
  width: 95%;
}
.cc .bar-label {
  color: var(--green);
  font-weight: 700;
}

.ptag {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.ptag.s {
  color: var(--speed);
  background: var(--speed-dim);
}
.ptag.t {
  color: var(--trust);
  background: var(--trust-dim);
}
.ptag.d {
  color: var(--deep);
  background: var(--deep-dim);
}

.ip-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

.ip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.ip-left {
  background: var(--surface);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ip-left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ip-left h2 span {
  color: var(--deep);
}
.ip-left p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

.ip-right {
  background: var(--btn-bg);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.ip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ip-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--on-dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.ip-item h4 {
  color: var(--btn-text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ip-item p {
  color: var(--on-dark);
  font-size: 13px;
  line-height: 1.5;
}

.cta {
  text-align: center;
  padding: 80px 48px 160px;
  max-width: 1200px;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 40px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .foot-left {
  font-size: 13px;
  color: var(--text-3);
}
footer .foot-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
footer .foot-links a {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
footer .foot-links a:hover {
  color: var(--text-2);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > * {
  animation: fadeUp 0.7s ease-out both;
}
.hero-content > *:nth-child(1) {
  animation-delay: 0s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.1s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.2s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.25s;
}
.hero-content > *:nth-child(5) {
  animation-delay: 0.35s;
}

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  nav .nav-links {
    display: none;
  }
  .hero {
    padding: 120px 24px 60px;
  }
  .statement {
    padding: 20px 24px 80px;
  }
  .pillars,
  .compare,
  .ip-strip {
    padding: 0 24px 80px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .ip-inner {
    grid-template-columns: 1fr;
  }
  .cta {
    padding: 60px 24px 120px;
  }
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */
