:root {
  --bg: #050810;
  --bg2: #080e1a;
  --bg3: #0d1525;
  --bg4: #111e30;
  --brand: #00c48c;
  --brand-lt: #00e5a0;
  --brand-dim: rgba(0, 196, 140, 0.1);
  --brand-border: rgba(0, 196, 140, 0.28);
  --blue: #3b82f6;
  --t1: #f0f6ff;
  --t2: #8899b0;
  --t3: #4a5a6e;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --danger: #f43f5e;
  --warn: #f59e0b;
  --r8: 8px;
  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--bg);
  color: var(--t1);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cabinet Grotesk", sans-serif;
  line-height: 1.1;
}

code,
.mono {
  font-family: "JetBrains Mono", monospace;
}

a {
  color: inherit;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.section-center {
  text-align: center;
  margin-bottom: 44px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--t1);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--t2);
  max-width: 640px;
  line-height: 1.7;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r8);
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #050810;
}

.btn-primary:hover {
  background: var(--brand-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 196, 140, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--border2);
}

.btn-ghost:hover {
  border-color: var(--brand-border);
  color: var(--brand);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

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

.btn:active {
  transform: scale(0.97);
}

.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  transition: all 0.25s;
}

.card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s;
}

.navbar.scrolled {
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  color: var(--t2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--t1);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}

.mobile-menu a {
  color: var(--t2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.mobile-cta .btn {
  flex: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 196, 140, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--brand-border);
  background: var(--brand-dim);
  color: var(--brand);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 32px;
  transition: all 0.2s;
  animation: fadeUp 0.5s ease-out;
}

.hero-badge:hover {
  background: rgba(0, 196, 140, 0.18);
}

.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 900;
  letter-spacing: -2.5px;
  color: var(--t1);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease-out 0.1s both;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--brand), var(--brand-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--t2);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.hero-trust {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--t3);
  animation: fadeUp 0.6s ease-out 0.4s both;
}

.hero-mockup {
  margin-top: 56px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r16);
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  transform: perspective(1200px) rotateX(6deg);
  animation: float 5s ease-in-out infinite, fadeUp 0.8s ease-out 0.5s both;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
}

@keyframes float {
  0%,
  100% {
    transform: perspective(1200px) rotateX(6deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateX(6deg) translateY(-8px);
  }
}

.mockup-topbar {
  background: var(--bg3);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-url {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--t3);
}

.mockup-body {
  padding: 20px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mstat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r8);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstat-val {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
}

.mstat-lbl {
  font-size: 10px;
  color: var(--t3);
}

.mockup-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg3);
  border-radius: var(--r8);
  border: 1px solid var(--border);
}

.mrow-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--t2);
  flex: 1;
}

.mbadge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.mbadge-s {
  background: rgba(0, 196, 140, 0.12);
  color: var(--brand);
}

.mbadge-q {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warn);
}

.mrow-t {
  font-size: 11px;
  color: var(--t3);
}

.proof-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pstat {
  text-align: center;
}

.pstat-val {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  display: block;
  letter-spacing: -1px;
}

.pstat-lbl {
  font-size: 13px;
  color: var(--t3);
  margin-top: 4px;
  display: block;
}

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

.ticker-wrap {
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg2), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg2), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  font-size: 13px;
  font-weight: 500;
  color: var(--t3);
  padding: 8px 24px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 22px;
  position: relative;
}

.step-num-badge {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--r12);
  display: grid;
  place-items: center;
  border: 1px solid var(--brand-border);
  background: rgba(0, 196, 140, 0.07);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--t2);
  font-size: 15px;
}

.step-tip {
  margin-top: 14px;
  border: 1px dashed var(--border2);
  border-radius: var(--r12);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  color: var(--t2);
  font-size: 12px;
}

.step-connector {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 24px;
}

.step-card:last-child .step-connector {
  display: none;
}

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

.bento-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 22px;
  transition: all 0.25s;
}

.bento-card:hover {
  border-color: var(--brand-border);
  box-shadow: 0 0 40px rgba(0, 196, 140, 0.08);
  transform: translateY(-2px);
}

.bento-lg {
  grid-column: span 2;
}

.bento-sm h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.bento-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.bento-card p {
  color: var(--t2);
  margin-bottom: 16px;
}

.bento-icon {
  color: var(--brand);
  margin-bottom: 10px;
}

.bento-icon-sm {
  font-size: 24px;
  margin-bottom: 8px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tags span {
  border: 1px solid var(--border2);
  background: var(--bg4);
  color: var(--t2);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 100px;
}

.code-block,
.code-window {
  border: 1px solid var(--border2);
  border-radius: var(--r12);
  overflow: hidden;
  background: #04070f;
}

.code-header,
.code-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
}

.code-window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--t3);
  margin-right: 6px;
  display: inline-block;
}

.code-window-bar span:nth-child(1) {
  background: #f43f5e;
}

.code-window-bar span:nth-child(2) {
  background: #f59e0b;
}

.code-window-bar span:nth-child(3) {
  background: var(--brand);
}

.code-lang {
  font-size: 12px;
  color: var(--t2);
}

.copy-btn {
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--t2);
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
}

.copy-btn:hover {
  color: var(--brand);
  border-color: var(--brand-border);
}

pre {
  margin: 0;
}

pre code {
  display: block;
  font-size: 12px;
  color: #c8d4e4;
  overflow-x: auto;
  line-height: 1.7;
  padding: 14px;
}

.api-section {
  background: radial-gradient(circle at 30% 20%, rgba(0, 196, 140, 0.08), transparent 35%),
    var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.api-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.api-left,
.api-right {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 22px;
}

.code-tabs {
  display: flex;
  gap: 8px;
  margin: 18px 0 12px;
}

.code-tab {
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--t2);
  border-radius: 100px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 13px;
}

.code-tab.active {
  border-color: var(--brand-border);
  color: var(--brand);
  background: var(--brand-dim);
}

.hidden {
  display: none;
}

.api-endpoints-title {
  margin-bottom: 10px;
  font-size: 24px;
}

.endpoints-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.endpoint {
  border: 1px solid var(--border);
  border-radius: var(--r12);
  background: var(--bg4);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ep-method {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.ep-post {
  color: var(--brand);
  background: var(--brand-dim);
}

.ep-get {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
}

.ep-path {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--t1);
  flex: 1;
}

.ep-credit {
  font-size: 11px;
  color: var(--warn);
}

.ep-credit.free {
  color: var(--brand);
}

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

.usecase-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 20px;
}

.usecase-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.usecase-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.usecase-card li {
  color: var(--t2);
  font-size: 14px;
}

.usecase-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

#pricing {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--border2);
  padding: 4px;
  border-radius: 100px;
  margin: 0 auto 30px;
  gap: 4px;
  align-items: center;
}

.pricing-toggle-wrap {
  text-align: center;
}

.ptoggle {
  border: none;
  background: transparent;
  color: var(--t2);
  font-size: 13px;
  border-radius: 100px;
  padding: 8px 14px;
  cursor: pointer;
}

.ptoggle.active {
  background: var(--brand-dim);
  color: var(--brand);
}

.toggle-badge {
  font-size: 11px;
  color: var(--t3);
  padding: 0 8px 0 2px;
}

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

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 22px;
  position: relative;
}

.pricing-featured {
  border-color: var(--brand-border);
  box-shadow: 0 0 36px rgba(0, 196, 140, 0.12);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--brand);
  color: #03120d;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
}

.plan-price {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 10px 0 4px;
}

.plan-price-monthly {
  display: none;
}

.plan-credits {
  color: var(--t2);
  font-size: 14px;
  margin-bottom: 16px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.plan-features li {
  font-size: 14px;
  color: var(--t1);
}

.plan-feat-no {
  color: var(--t3) !important;
}

.plan-cta {
  width: 100%;
}

.credit-info {
  margin-top: 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 20px;
}

.credit-info h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.credit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.credit-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: 10px 12px;
  font-size: 14px;
}

.credit-item span:last-child {
  color: var(--brand);
  font-weight: 600;
}

.free-credit {
  color: #60a5fa !important;
}

.trust-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--t2);
  font-size: 13px;
}

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

.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 20px;
}

.stars {
  color: var(--brand);
  margin-bottom: 8px;
}

.testimonial-card p {
  color: var(--t2);
  font-size: 15px;
}

.testimonial-author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #04130d;
  background: var(--brand);
}

.testimonial-author span {
  color: var(--t3);
  font-size: 12px;
}

.faq-container {
  max-width: 860px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r12);
  background: var(--bg3);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: transparent;
  color: var(--t1);
  border: 0;
  text-align: left;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  font-size: 22px;
  color: var(--brand);
  transition: transform 0.2s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-a p {
  color: var(--t2);
  padding: 0 16px 16px;
  font-size: 14px;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info,
.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 22px;
}

.contact-items {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  border: 1px solid var(--border);
  border-radius: var(--r12);
  background: var(--bg4);
  padding: 10px 12px;
  display: flex;
  gap: 10px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
}

.contact-item a,
.contact-item span {
  color: var(--t2);
  font-size: 14px;
  text-decoration: none;
}

.contact-icon {
  font-size: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border2);
  background: #0a1221;
  color: var(--t1);
  border-radius: var(--r8);
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-border);
  box-shadow: 0 0 0 2px rgba(0, 196, 140, 0.15);
}

.cta-banner {
  padding-top: 28px;
}

.cta-inner {
  background: radial-gradient(circle at 20% 20%, rgba(0, 196, 140, 0.17), transparent 40%),
    var(--bg3);
  border: 1px solid var(--brand-border);
  border-radius: var(--r20);
  padding: 32px 24px;
  text-align: center;
}

.cta-title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.3px;
}

.cta-sub {
  color: var(--t2);
  margin-top: 8px;
}

.cta-buttons {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cta-trust {
  margin-top: 12px;
  color: var(--t3);
  font-size: 13px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.footer {
  margin-top: 70px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.footer-grid {
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer-brand p {
  color: var(--t2);
  max-width: 320px;
}

.footer-copy {
  margin-top: 10px;
  color: var(--t3) !important;
  font-size: 13px;
}

.footer-col h5 {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  color: var(--t2);
  text-decoration: none;
  margin-bottom: 7px;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--t3);
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  gap: 12px;
}

.footer-legal-links a {
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--brand);
}

.legal-main {
  min-height: 100vh;
  padding-top: 110px;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.legal-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 24px;
}

.legal-card h1 {
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--t3);
  margin-bottom: 20px;
}

.legal-card h2 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--t2);
  margin-bottom: 10px;
}

.legal-card ul {
  margin-left: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 990px) {
  .steps-grid,
  .pricing-grid,
  .usecase-grid,
  .testimonials-grid,
  .bento-grid,
  .api-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bento-lg {
    grid-column: auto;
  }

  .step-connector {
    display: none;
  }

  .hero-mockup {
    transform: none;
    animation: float 5s ease-in-out infinite;
  }

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

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .container {
    padding: 0 16px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu.open {
    display: flex;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .proof-divider {
    display: none;
  }

  .pricing-toggle {
    flex-wrap: wrap;
    border-radius: var(--r12);
    justify-content: center;
  }

  .toggle-badge {
    width: 100%;
    padding: 4px 0 0;
  }

  .credit-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    padding: 14px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
