:root {
  --ink: #101c3e;
  --slate: #555d77;
  --muted: #858ba0;
  --blue: #0c3474;
  --blue-soft: #e8eef8;
  --lavender: #8a7be0;
  --rose: #ff536b;
  --rose-soft: #fff0f2;
  --paper: #faf9fc;
  --line: #e4e2ef;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 28, 62, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; width: 216px; min-width: 150px; }
.brand img { width: auto; height: 76px; object-fit: contain; }
.nav { display: flex; gap: clamp(14px, 2vw, 28px); color: var(--slate); font-size: 15px; font-weight: 750; }
.nav a:hover { color: var(--rose); }
.header-cta, .button, form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  font-weight: 850;
}
.header-cta, .button.primary, form button { color: var(--white); background: var(--ink); }
.header-cta { padding: 0 18px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px) 38px;
  background:
    radial-gradient(circle at 9% 16%, rgba(255, 83, 107, 0.12), transparent 28%),
    linear-gradient(120deg, var(--rose-soft), rgba(255,255,255,0) 48%),
    linear-gradient(180deg, var(--white), var(--paper));
}
.eyebrow { margin: 0 0 12px; color: var(--rose); font-size: 13px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; letter-spacing: 0; }
h1 { max-width: 840px; margin-bottom: 22px; font-size: clamp(42px, 5.8vw, 72px); line-height: 1.02; }
h2 { margin-bottom: 16px; font-size: clamp(30px, 4vw, 48px); line-height: 1.06; }
h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.2; }
.hero-text { max-width: 720px; margin-bottom: 26px; color: var(--slate); font-size: clamp(17px, 1.65vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { padding: 0 22px; }
.button.secondary { background: var(--white); border: 1px solid var(--line); color: var(--ink); }
.voice-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(232,238,248,0.78));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.wave-card {
  position: absolute;
  inset: 48px 48px 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.bar { width: 44px; border-radius: 999px; background: var(--lavender); box-shadow: 0 18px 42px rgba(16,28,62,0.12); }
.b1 { height: 135px; background: #c2c8d2; }
.b2 { height: 230px; background: var(--blue); }
.b3 { height: 290px; background: var(--rose); }
.b4 { height: 220px; background: var(--lavender); }
.b5 { height: 145px; background: var(--blue); }
.metrics {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}
.metrics div { min-width: 0; padding: 16px; background: rgba(255,255,255,0.8); border: 1px solid var(--line); border-radius: 8px; }
.metrics dt { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.metrics dd { margin: 5px 0 0; font-size: 18px; font-weight: 900; }
.strip { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip span { min-height: 72px; display: flex; align-items: center; justify-content: center; padding: 14px; color: var(--slate); font-size: 14px; font-weight: 850; text-align: center; border-right: 1px solid var(--line); }
.strip span:last-child { border-right: 0; }
.section { padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 800px; margin-bottom: 34px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-grid article { min-height: 245px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.service-grid article:nth-child(2n) { background: var(--paper); }
.service-grid span { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; margin-bottom: 24px; color: var(--rose); background: var(--rose-soft); border-radius: 8px; font-weight: 950; }
.service-grid p, .fit-list p, .launch span, .contact p, .footer p { color: var(--slate); }
.fit { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 70px); padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px); background: var(--ink); color: var(--white); }
.fit .eyebrow, .fit p { color: #d7d9ea; }
.fit-list { display: grid; gap: 14px; }
.fit-list article { padding: 24px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; }
.launch { background: linear-gradient(180deg, var(--paper), var(--white)); }
.launch ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding: 0; margin: 0; list-style: none; }
.launch li { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.launch strong { display: block; margin-bottom: 16px; color: var(--lavender); font-size: 34px; }
.contact { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr); gap: clamp(28px, 6vw, 88px); padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px); background: var(--blue-soft); }
form { display: grid; gap: 16px; padding: 26px; background: rgba(255,255,255,0.84); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
label { display: grid; gap: 7px; color: var(--slate); font-size: 14px; font-weight: 850; }
input, select, textarea { width: 100%; min-height: 46px; padding: 10px 12px; color: var(--ink); background: var(--white); border: 1px solid #d1d2df; border-radius: 7px; font: inherit; }
textarea { resize: vertical; }
form button { width: 100%; border: 0; cursor: pointer; font: inherit; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 28px clamp(18px, 5vw, 72px); background: var(--white); border-top: 1px solid var(--line); }
.footer img { width: 210px; max-height: 100px; object-fit: contain; }
.footer p { max-width: 720px; margin: 0; text-align: right; }
@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: space-between; }
  .hero, .fit, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .voice-panel { min-height: 430px; }
  .strip, .service-grid, .launch ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .brand { width: 176px; }
  .brand img { height: 66px; }
  .header-cta { min-height: 40px; padding: 0 12px; font-size: 14px; }
  .nav { gap: 8px; overflow-x: auto; justify-content: flex-start; padding-bottom: 2px; }
  .nav a { flex: 0 0 auto; }
  h1 { font-size: 40px; }
  .voice-panel { min-height: 380px; padding: 20px; }
  .wave-card { inset: 42px 28px 140px; gap: 10px; }
  .metrics, .strip, .service-grid, .launch ol { grid-template-columns: 1fr; }
  .strip span { min-height: 54px; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer { align-items: flex-start; flex-direction: column; }
  .footer p { text-align: left; }
}
