/* ====== Base ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #0b0b0f;
  --muted: rgba(11, 11, 15, 0.75);
  --muted2: rgba(11, 11, 15, 0.6);
  --border: rgba(11, 11, 15, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  --shadow2: 0 12px 40px rgba(0, 0, 0, 0.1);

  --radiusPill: 999px;
  --radiusBtn: 14px;
  --maxW: 980px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}

/* ====== Layout ====== */
.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 56px 18px;
}

.hero {
  width: min(var(--maxW), 100%);
  text-align: center;
  position: relative;
  padding: 18px 10px 8px;
}

/* ====== Top Pill ====== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radiusPill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pill__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: rgba(11, 11, 15, 0.78);
}

.pill__icon svg {
  width: 18px;
  height: 18px;
}

.pill__text {
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(11, 11, 15, 0.82);
}

.pill__arrow {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: rgba(11, 11, 15, 0.6);
}

.pill__arrow svg {
  width: 18px;
  height: 18px;
}

/* ====== Headline ====== */
.headline {
  margin: 26px 0 0;
  font-size: clamp(44px, 6.8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.subcopy {
  margin: 22px auto 0;
  max-width: 760px;
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.6;
  color: var(--muted);
}

.subcopy strong {
  color: rgba(11, 11, 15, 0.9);
  font-weight: 700;
}

/* ====== Buttons ====== */
.ctaRow {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 320px;
  padding: 14px 18px;
  border-radius: var(--radiusBtn);
  font-weight: 650;
  text-decoration: none;
  letter-spacing: -0.01em;

  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease,
}

.btn__arrow {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  opacity: 0.9;
}

.btn__arrow svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  color: #fff;
  background: #0b0b0f;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  color: rgba(11, 11, 15, 0.9);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(80, 120, 255, 0.35);
  box-shadow: 0 10px 32px rgba(80, 120, 255, 0.15);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(80, 120, 255, 0.18);
  border-color: rgba(80, 120, 255, 0.5);
}

/* ====== Icons Row ====== */
.techRow {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: rgba(11, 11, 15, 0.86);
}

.techIcon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
}

.techIcon svg {
  width: 34px;
  height: 34px;
}

.techBadge {
  font-size: 14px;
  font-weight: 800;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(11, 11, 15, 0.92);
  color: #fff;
}

/* ====== Soft glow under CTA ====== */
.glow {
  position: absolute;
  left: 50%;
  top: 63%;
  transform: translate(-50%, -50%);
  width: min(920px, 92vw);
  height: 220px;
  background:
    radial-gradient(closest-side, rgba(255, 205, 120, 0.22), transparent 60%),
    radial-gradient(closest-side, rgba(120, 160, 255, 0.22), transparent 60%);
  filter: blur(22px);
  z-index: -1;
  pointer-events: none;
}

/* ====== Small screens ====== */
@media (max-width: 520px) {
  .btn {
    min-width: 100%;
  }
}