:root {
  --ink: #0c1118;
  --ink-soft: #141b24;
  --slate: #1f2937;
  --mist: #eef2f7;
  --glow: #35f2c7;
  --sun: #ffc857;
  --ocean: #2d6cdf;
  --frost: #d6e3ff;
  --stroke: rgba(15, 23, 42, 0.12);
  --shadow: 0 24px 60px rgba(12, 17, 24, 0.18);
  --radius: 20px;
  --font-display: "Syne", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top left, #f5f7ff 0%, #eef2f7 45%, #e9eef5 100%);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 1;
}

.chip-lines,
.chip-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.chip-lines span {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(45, 108, 223, 0.12);
  border-radius: 18px;
  transform: rotate(45deg);
}

.chip-lines span:nth-child(1) {
  top: -40px;
  left: 8%;
  box-shadow: 0 0 0 8px rgba(53, 242, 199, 0.08);
}

.chip-lines span:nth-child(2) {
  top: 30%;
  right: 12%;
  width: 260px;
  height: 260px;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: inset 0 0 0 6px rgba(255, 200, 87, 0.12);
}

.chip-lines span:nth-child(3) {
  bottom: -80px;
  left: 40%;
  width: 280px;
  height: 280px;
  border-color: rgba(53, 242, 199, 0.18);
}

.chip-grid {
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.8) 0%, transparent 65%);
}

.chip-grid span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 242, 199, 0.4), transparent 70%);
  width: 220px;
  height: 220px;
}

.chip-grid span:nth-child(1) {
  top: 12%;
  left: 14%;
}

.chip-grid span:nth-child(2) {
  top: 48%;
  right: 18%;
  width: 180px;
  height: 180px;
}

.chip-grid span:nth-child(3) {
  bottom: 12%;
  left: 28%;
  width: 140px;
  height: 140px;
}

.chip-grid span:nth-child(4) {
  bottom: 6%;
  right: 8%;
  width: 120px;
  height: 120px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 255, 0.7);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--ocean);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border: none;
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  padding: 100px 8vw 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 16px;
}

.lede {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.primary,
.ghost {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}

.primary {
  background: linear-gradient(120deg, var(--ocean), var(--glow));
  color: white;
  box-shadow: 0 16px 30px rgba(45, 108, 223, 0.3);
}

.ghost {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.metric {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
}

.label {
  color: rgba(12, 17, 24, 0.6);
  font-size: 0.9rem;
}

.hero-panel {
  background: var(--ink);
  color: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
}

.panel-grid {
  display: grid;
  gap: 16px;
}

.panel-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
}

.panel-card h3 {
  margin-bottom: 8px;
}

.panel-highlight {
  background: linear-gradient(140deg, rgba(53, 242, 199, 0.2), rgba(255, 200, 87, 0.2));
  border-radius: 16px;
  padding: 18px;
}

.panel-highlight ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.section {
  padding: 80px 8vw;
}

.section.alt {
  background: white;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cap-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.cap-grid article,
.solution-card {
  padding: 24px;
  background: #f8faff;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 18px rgba(12, 17, 24, 0.06);
}

.solution-card {
  background: linear-gradient(140deg, #ffffff 0%, #f0f5ff 100%);
}

.trial-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.trial-steps {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.step {
  display: inline-block;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.trial-form {
  background: var(--ink-soft);
  color: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.trial-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
  border-radius: 12px;
  border: none;
  padding: 10px 12px;
  font-family: var(--font-body);
}

.form-note {
  font-size: 0.85rem;
  opacity: 0.7;
}

.form-success {
  background: rgba(53, 242, 199, 0.15);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: #f8faff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--stroke);
  display: grid;
  gap: 16px;
}

.footer {
  padding: 40px 8vw;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    width: 100%;
  }
}
