:root {
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', var(--font-body);
  --font-mono: 'DM Mono', monospace;
  --bg: #f5f4f0;
  --bg2: #eeecea;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.13);
  --ink: #111110;
  --ink2: #3a3a38;
  --muted: #888884;
  --dim: #b0afa9;
  --accent: #1a1a18;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* GRID + NOISE */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 0%, rgba(255, 255, 255, 0.75) 0%, transparent 65%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(245, 244, 240, 0.4);
  backdrop-filter: blur(20px);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span {
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 9px 20px;
  border: none;
  background: var(--ink);
  color: #f5f4f0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s;
}

a.nav-cta {
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--ink2);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}

.hero-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--border2);
  background: var(--surface);
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.15
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--dim);
}

.hero-inner>p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 500px;
  margin: 0 auto 48px;
  animation: fadeUp 0.7s ease 0.2s both;
}

/* HERO FORM */
.hero-form {
  animation: fadeUp 0.7s ease 0.3s both;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-form-row {
  display: flex;
  gap: 8px;
}

.hero-form input {
  flex: 1;
  padding: 13px 16px;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color .2s;

}

.hero-form input::placeholder {
  color: var(--dim);
}

.hero-form input:focus {
  border-color: var(--ink);
}

.hero-form-btn {
  width: 100%;
  padding: 14px 28px;
  background: var(--ink);
  color: #f5f4f0;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.hero-form-btn:hover {
  background: var(--ink2);
}

.hero-form-btn:disabled {
  opacity: 0.45;
}

.hero-form-note {
  font-size: 0.7rem;
  color: var(--dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-align: center;
}

.hero-form-success {
  display: none;
  padding: 18px 24px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.06);
  text-align: center;
  width: 100%;
}

.hero-form-success.show {
  display: block;
}

.hero-form-success strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #16a34a;
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.hero-form-success span {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s ease 0.45s both;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.stat-label {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

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

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* TICKER */
.ticker-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  background: var(--bg2);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 36px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.ticker-item::after {
  content: '//';
  color: var(--dim);
  margin-left: 36px;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* SECTIONS */
section {
  position: relative;
  z-index: 2;
  padding: 112px 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--dim);
}

h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--ink);
}

h2 em {
  font-style: normal;
  color: var(--dim);
}

/* CAPABILITIES */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
  border: 1px solid var(--border);
}

.cap-card {
  background: var(--bg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.cap-card:hover {
  background: var(--surface);
}

.cap-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.cap-card:hover::after {
  transform: scaleX(1);
}

.cap-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  display: block;
}

.cap-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border2);
  color: var(--ink);
}

.cap-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.cap-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* BRANDS */
.brands {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.brands-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--dim);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* ACCORDION TABS */
.acc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.acc-tab {
  padding: 10px 22px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink2);
  cursor: pointer;
  transition: all .22s ease;
  letter-spacing: 0.01em;
}

.acc-tab:hover {
  background: var(--surface);
  border-color: var(--dim);
  color: var(--ink);
}

.acc-tab.active {
  background: var(--ink);
  color: #f5f4f0;
  border-color: var(--ink);
}

/* ACCORDION PANELS */
.acc-panels {
  margin-top: 28px;
  min-height: 120px;
}

.acc-panel {
  display: none;
  animation: fadeUp 0.3s ease both;
}

.acc-panel.active {
  display: block;
}

.acc-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}

.acc-panel ul li {
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--ink2);
  line-height: 1.6;
  position: relative;
  transition: border-color .2s;
  text-align: center;
}

/* Removed arrow */

.acc-panel ul li:hover {
  border-color: var(--dim);
}

.brand-item {
  padding: 12px 24px;
  border: 1px solid var(--border);
  margin: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink2);
  background: var(--bg);
  border-radius: 100px;
  transition: all .2s ease;
}

.brand-item:hover {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--dim);
  transform: translateY(-1px);
}

/* HOW */
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}

.step:last-child {
  border-bottom: none;
}

.step:hover .step-num {
  color: var(--ink);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.1em;
  padding-top: 3px;
  min-width: 22px;
  transition: color .2s;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.step-content p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

.how-visual {
  position: sticky;
  top: 112px;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orbit-wrap {
  position: relative;
  width: 260px;
  height: 260px;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 1px solid var(--border2);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed var(--border2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 118px;
  height: 118px;
  animation: spin 9s linear infinite;
}

.ring-2 {
  width: 198px;
  height: 198px;
  animation: spin 16s linear infinite reverse;
}

.ring-3 {
  width: 260px;
  height: 260px;
  animation: spin 26s linear infinite;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.orbit-node {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
  border: 1px solid var(--border);
}

.testi-card {
  background: var(--bg);
  padding: 36px;
  transition: background .2s;
}

.testi-card:hover {
  background: var(--surface);
}

.testi-quote {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink2);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--ink2);
}

.testi-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}

.testi-role {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ADVANTAGE */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
  border: 1px solid var(--border);
}

.adv-card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background .25s ease;
  display: flex;
  flex-direction: column;
}

.adv-card:hover {
  background: var(--surface);
}

.adv-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.adv-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 20px;
}

.adv-list {
  list-style: none;
  margin-top: 12px;
}

.adv-item {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 10px;
}

.adv-item::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* LEAD CTA */
.lead-section {
  padding: 112px 0;
  background: var(--ink);
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-text .section-label {
  color: rgba(255, 255, 255, 0.3);
}

.lead-text .section-label::before {
  background: rgba(255, 255, 255, 0.18);
}

.lead-text h2 {
  color: #f5f4f0;
}

.lead-text p {
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 380px;
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.form-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5f4f0;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s;

}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.form-group input:focus {
  border-color: rgba(255, 255, 255, 0.32);
}

.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5f4f0;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s;

  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  width: 100%;
}

.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.32);
}

.form-group select option {
  background: #111110;
  color: #f5f4f0;
}

.form-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.55;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.submit-btn {
  padding: 14px 30px;
  background: #f5f4f0;
  color: var(--ink);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  transition: background .2s;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 9px;
}

.submit-btn:hover {
  background: var(--bg2);
}

.submit-btn:disabled {
  opacity: 0.4;
}

.success-msg {
  display: none;
  padding: 24px;
  border: 1px solid rgba(234, 179, 8, 0.28);
  background: rgba(234, 179, 8, 0.06);
}

.success-msg.show {
  display: block;
}

.success-msg h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #eab308;
  margin-bottom: 6px;
}

.success-msg p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.875rem;
}

.error-msg {
  display: none;
  padding: 13px 15px;
  border: 1px solid rgba(248, 113, 113, 0.28);
  background: rgba(248, 113, 113, 0.06);
  color: #f87171;
  font-size: 0.82rem;
}

.error-msg.show {
  display: block;
}

/* FOOTER */
footer {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.footer-logo span {
  color: var(--muted);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color .2s;
}

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

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--dim);
  letter-spacing: 0.08em;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  padding: 13px 20px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  transform: translateY(64px);
  opacity: 0;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  max-width: 260px;
  line-height: 1.5;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 860px) {

  .capabilities-grid,
  .testimonials-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .how-inner,
  .lead-inner {
    grid-template-columns: 1fr;
  }

  .hero-form-row {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  .how-visual {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
