:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d9e1e8;
  --teal: #0f9f9a;
  --teal-dark: #08706f;
  --amber: #f2ad3f;
  --coral: #ef6b57;
  --blue: #3768d8;
  --shadow: 0 24px 70px rgba(23, 31, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.18);
}

.logo-mark svg {
  width: 34px;
  height: 34px;
}

.logo-tray {
  fill: #f7fafc;
}

.logo-line {
  stroke: var(--teal);
  stroke-width: 3;
  stroke-linecap: round;
}

.logo-line.two {
  stroke: var(--amber);
}

.logo-dot {
  fill: var(--coral);
}

.logo-spark {
  fill: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #344054;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

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

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px) 36px;
  background:
    linear-gradient(90deg, rgba(15, 159, 154, 0.13), transparent 36%),
    linear-gradient(180deg, #fffdf8 0%, #eef7f5 100%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: #374151;
  font-size: clamp(1.04rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.product-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.product-stage::before,
.product-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(15, 159, 154, 0.22);
}

.product-stage::before {
  width: min(42vw, 520px);
  height: min(42vw, 520px);
}

.product-stage::after {
  width: min(30vw, 370px);
  height: min(30vw, 370px);
  border-color: rgba(239, 107, 87, 0.26);
}

.data-console {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.console-top,
.launch-strip,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 159, 154, 0.12);
  font-weight: 900;
  font-size: 0.8rem;
}

.console-date {
  color: var(--muted);
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.metric,
.feature-card,
.signal-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric {
  min-height: 124px;
  padding: 16px;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.trend {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.trend.up {
  color: var(--teal-dark);
}

.trend.warn {
  color: #9a5f00;
}

.chart-panel {
  position: relative;
  height: 210px;
  margin-top: 14px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.06) 1px, transparent 1px),
    #ffffff;
  background-size: 100% 46px, 58px 100%;
}

.chart-line {
  position: absolute;
  inset: 34px 22px 56px;
  clip-path: polygon(0 70%, 18% 42%, 34% 56%, 50% 23%, 66% 40%, 82% 18%, 100% 26%, 100% 38%, 82% 30%, 66% 52%, 50% 36%, 34% 68%, 18% 54%, 0 82%);
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--coral));
}

.bar-row {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 72px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 10px;
}

.bar-row span {
  height: var(--h);
  min-height: 20px;
  border-radius: 6px 6px 0 0;
  background: rgba(15, 159, 154, 0.3);
}

.insight-feed {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.insight-feed div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.insight-feed p {
  margin: 0;
  color: #334155;
  font-weight: 700;
  font-size: 0.92rem;
}

.feed-dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.feed-dot.teal {
  background: var(--teal);
}

.feed-dot.amber {
  background: var(--amber);
}

.feed-dot.coral {
  background: var(--coral);
}

.launch-strip {
  flex-wrap: wrap;
  padding: 18px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.section,
.insight-section,
.contact-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.feature-card {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #f2c14e;
  border-radius: 8px;
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  color: white;
  background: var(--teal);
}

.feature-card:nth-child(3) .feature-icon {
  color: white;
  background: var(--coral);
}

.feature-card h3 {
  margin: 28px 0 0;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #eef5f3;
}

.insight-copy p:not(.eyebrow),
.contact-copy p {
  color: #465466;
  line-height: 1.75;
  font-size: 1.04rem;
}

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

.signal-item {
  min-height: 150px;
  padding: 24px;
  background: #fff;
}

.signal-item strong {
  display: block;
  font-size: 1.25rem;
}

.signal-item span {
  display: block;
  margin-top: 40px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(242, 173, 63, 0.13), transparent 42%),
    #fffdf8;
}

.contact-copy {
  max-width: 580px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 159, 154, 0.2);
  border-color: var(--teal);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  flex-wrap: wrap;
  padding: 28px clamp(18px, 5vw, 72px);
  color: white;
  background: #0b1220;
}

.site-footer span:first-child {
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero,
  .insight-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4.6rem);
  }

  .metric-grid,
  .signal-board,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
