:root {
  --bg: #ffffff;
  --ink: #0b0b0d;
  --muted: #646873;
  --line: rgba(11, 11, 13, 0.1);
  --line-strong: rgba(11, 11, 13, 0.16);
  --blue: #7182ff;
  --green: #3cff52;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("./assets/fonts/GoogleSansFlex_24pt-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("./assets/fonts/GoogleSansFlex_24pt-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("./assets/fonts/NotoSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("./assets/fonts/NotoSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Google Sans Flex", "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

section {
  scroll-margin-top: 120px;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 40px 10px;
}

.legal-topbar {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.site-shell {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 32px 0 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 34px;
  height: 34px;
}

.chip-logo {
  width: 44px;
  height: 44px;
}

.brand-name {
  font-size: clamp(1.65rem, 1.8vw, 1.95rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 18px;
  font-size: 1.03rem;
  font-weight: 500;
  color: var(--ink);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-link.is-current::after {
  transform: scaleX(1);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.96rem;
  font-weight: 500;
}

.nav-button {
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  min-height: 60px;
  padding: 0 26px;
  font-size: 1.03rem;
  font-weight: 500;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 54px 0 92px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

h1 {
  max-width: none;
  margin-top: 0;
  font-family: "Google Sans Flex", "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(3.3rem, 8.2vw, 7.1rem);
  line-height: 0.98;
  white-space: nowrap;
}

h2 {
  font-weight: 500;
}

.gradient-word {
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy,
.overview-text,
.pricing-copy,
.bullet-row {
  max-width: 54ch;
  margin: 22px 0 0;
  font-size: 1.22rem;
  line-height: 1.75;
  color: var(--muted);
  font-family: "Noto Sans", sans-serif;
}

.hero-copy {
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.button-primary {
  background: var(--ink);
  color: #ffffff;
}

.button-secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.hero-subheadline {
  margin: 52px 0 0;
  font-size: clamp(1.62rem, 3.35vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 44px;
  align-items: center;
  padding: 18px 0 92px;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.overview-copy h2,
.pricing-section h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

.bullet-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.04rem;
  max-width: none;
  margin: 0;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  flex: 0 0 auto;
}

.video-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
}

.video-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}

.video-label {
  font-size: 0.88rem;
  color: var(--muted);
}

.video-screen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  margin-top: 14px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 28% 28%, rgba(60, 255, 82, 0.12), transparent 22%),
    radial-gradient(circle at 70% 35%, rgba(113, 130, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.video-glow {
  position: absolute;
  inset: 18% 16%;
  border-radius: 28px;
  border: 1px solid rgba(11, 11, 13, 0.06);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.92));
  box-shadow:
    0 30px 70px rgba(11, 11, 13, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.play-button {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  box-shadow: 0 24px 60px rgba(65, 96, 190, 0.22);
  z-index: 1;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #ffffff;
}

.video-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 1;
}

.video-caption span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
}

.pricing-section {
  padding: 10px 0 0;
  max-width: 760px;
}

.legal-shell {
  width: min(980px, calc(100% - 80px));
  padding-top: 44px;
}

.legal-hero {
  padding: 8px 0 40px;
}

.legal-title {
  max-width: 12ch;
  margin-top: 14px;
  white-space: normal;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  line-height: 0.98;
}

.legal-lead,
.legal-content p,
.legal-content li {
  font-family: "Noto Sans", sans-serif;
  color: var(--muted);
}

.legal-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.12rem;
  line-height: 1.8;
}

.legal-content {
  padding: 8px 0 10px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.08;
}

.legal-content p {
  max-width: 66ch;
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.9;
}

.legal-content ul {
  max-width: 66ch;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-note {
  margin-top: 32px;
  font-size: 0.95rem;
}

.inline-link {
  border-bottom: 1px solid rgba(11, 11, 13, 0.22);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(11, 11, 13, 0.25);
  padding-bottom: 2px;
}

.site-footer {
  width: 100%;
  margin-top: 84px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-logo {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .overview {
    grid-template-columns: 1fr;
  }

  h1 {
    white-space: normal;
  }

  .video-panel {
    width: 100%;
  }

  .video-screen {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 18px 18px 6px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .site-shell {
    width: min(100%, calc(100% - 24px));
    padding-top: 26px;
  }

  .legal-shell,
  .footer-inner {
    width: min(100%, calc(100% - 24px));
  }

  .main-nav,
  .hero-actions {
    gap: 12px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
    white-space: normal;
  }

  .hero {
    padding: 24px 0 64px;
  }

  .overview {
    gap: 28px;
    padding-bottom: 68px;
  }

  .video-screen {
    min-height: 300px;
  }

  .video-caption {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-inner {
    padding: 18px 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
