:root {
  --bg: #06111f;
  --bg-soft: #0b1728;
  --card: #142033;
  --card-strong: #192941;
  --border: #283a55;
  --primary: #50beff;
  --primary-deep: #168bd1;
  --success: #7ee787;
  --text: #f5f8fc;
  --muted: #a8b5c6;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max-width: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(80, 190, 255, 0.15), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, #071322 48%, #050d18 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(126, 231, 135, 0.85);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  color: var(--bg);
  background: var(--success);
  border-radius: var(--radius);
}

.anchor-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(6, 17, 31, 0.86);
  border-bottom: 1px solid rgba(40, 58, 85, 0.75);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.logo span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-mark,
.mini-mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(80, 190, 255, 0.22), rgba(126, 231, 135, 0.2));
  box-shadow: 0 0 22px rgba(80, 190, 255, 0.28);
}

.mini-mark {
  width: 18px;
  height: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--card);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: #03101b;
  background: var(--primary);
  box-shadow: 0 14px 38px rgba(80, 190, 255, 0.22);
}

.button-primary:hover {
  background: #7ed0ff;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.button-secondary:hover {
  border-color: var(--primary);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.93rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80, 190, 255, 0.44), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-subhead,
.section-heading p,
.pricing-top p,
.legal-container p {
  color: var(--muted);
}

.hero-subhead {
  max-width: 650px;
  margin: 0 0 30px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.trust-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.cta-note {
  margin: 14px 0 0;
  color: var(--success);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-visual {
  min-width: 0;
}

.browser-mockup {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #0d192b;
  box-shadow: var(--shadow);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
  background: #101d30;
}

.browser-top > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #38516f;
}

.browser-address {
  flex: 1;
  min-width: 0;
  margin-left: 8px;
  padding: 8px 12px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #071322;
  border: 1px solid rgba(40, 58, 85, 0.8);
  border-radius: 999px;
  font-size: 0.85rem;
}

.browser-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 22px;
  min-height: 390px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(80, 190, 255, 0.08), transparent 34%),
    #0a1525;
}

.runtime-page {
  display: grid;
  align-content: center;
  gap: 16px;
}

.page-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(40, 58, 85, 0.64);
  border-radius: var(--radius);
  background: rgba(20, 32, 51, 0.72);
}

.page-line {
  display: block;
  width: 62%;
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, #263a56, #38516f);
}

.page-line.wide {
  width: 74%;
}

.page-line.short {
  width: 48%;
}

.runtime-chip {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: #06111f;
  background: var(--success);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.extension-card {
  align-self: center;
  padding: 18px;
  border: 1px solid rgba(80, 190, 255, 0.34);
  border-radius: 14px;
  background: rgba(20, 32, 51, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.extension-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(40, 58, 85, 0.82);
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
  font-size: 1.18rem;
}

.target-row select {
  min-width: 96px;
  padding: 7px 8px;
  color: var(--text);
  background: #071322;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.status-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
  padding: 12px;
  color: #06111f;
  background: var(--success);
  border-radius: var(--radius);
}

.status-pill.is-over {
  color: var(--text);
  background: rgba(255, 125, 125, 0.18);
  border: 1px solid rgba(255, 125, 125, 0.5);
}

.copy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  color: #06111f;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.section {
  padding: 84px 0;
}

.section-alt {
  background: rgba(11, 23, 40, 0.66);
  border-block: 1px solid rgba(40, 58, 85, 0.42);
}

.video-section {
  padding-top: 70px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

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

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.feature-card,
.step-card,
.pricing-card,
.use-case-grid article,
.email-panel,
.faq-list details,
.legal-container {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(20, 32, 51, 0.9);
}

.card,
.feature-card,
.step-card,
.pricing-card,
.use-case-grid article {
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.card:hover,
.feature-card:hover,
.step-card:hover,
.pricing-card:hover,
.use-case-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(80, 190, 255, 0.7);
  background: var(--card-strong);
}

.card p,
.feature-card p,
.step-card p,
.pricing-top p {
  margin: 0;
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #06111f;
  background: var(--primary);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
}

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

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: #06111f;
  background: var(--success);
  border-radius: 50%;
  font-weight: 900;
}

.local-note,
.pricing-note {
  margin: 24px 0 0;
  color: var(--muted);
}

.local-note {
  padding: 18px 20px;
  border-left: 4px solid var(--success);
  background: rgba(126, 231, 135, 0.08);
  border-radius: var(--radius);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.use-case-grid article {
  min-height: 88px;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: rgba(126, 231, 135, 0.58);
}

.pricing-top {
  margin-bottom: 24px;
}

.pricing-top h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.coming-soon {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: #06111f;
  background: var(--success);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 7px;
  border-bottom: 3px solid var(--success);
  border-left: 3px solid var(--success);
  transform: rotate(-45deg);
}

.pricing-card .button {
  margin-top: auto;
}

.section-email {
  padding-top: 0;
}

.email-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 24px;
  align-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(80, 190, 255, 0.12), rgba(126, 231, 135, 0.06)),
    var(--card);
}

.email-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.email-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.email-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  background: #071322;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.email-form input::placeholder {
  color: #7f8fa4;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--success);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  padding: 20px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details[open] summary {
  color: var(--success);
  border-bottom: 1px solid var(--border);
}

.faq-list p {
  margin: 0;
  padding: 20px;
  color: var(--muted);
}

.final-cta {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(80, 190, 255, 0.18), rgba(126, 231, 135, 0.08)),
    #081625;
  border-top: 1px solid rgba(40, 58, 85, 0.62);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid rgba(40, 58, 85, 0.8);
  background: #050d18;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner a:hover {
  color: var(--primary);
}

.legal-page {
  padding: 64px 0 86px;
}

.legal-container {
  max-width: 860px;
  padding: 42px;
}

.legal-container h1 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-date {
  margin-bottom: 34px;
}

.legal-container section {
  padding-top: 20px;
  border-top: 1px solid rgba(40, 58, 85, 0.72);
}

.legal-container section + section {
  margin-top: 22px;
}

.legal-container h2 {
  font-size: 1.24rem;
}

.legal-container a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .site-nav .nav-cta-mobile {
    display: block;
    color: #03101b;
    background: var(--primary);
    font-weight: 800;
    text-align: center;
  }

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

  .browser-body {
    grid-template-columns: 1fr;
  }

  .extension-card {
    align-self: stretch;
  }

  .card-grid,
  .features-grid,
  .steps,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .email-panel,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .logo span:last-child {
    max-width: min(210px, calc(100vw - 128px));
  }

  .hero {
    padding: 62px 0 56px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions,
  .email-form {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .email-form .button {
    width: 100%;
  }

  .card-grid,
  .features-grid,
  .steps,
  .use-case-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .browser-body {
    padding: 18px;
  }

  .page-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-line,
  .page-line.wide,
  .page-line.short {
    width: 100%;
  }

  .email-panel,
  .legal-container {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 0.92rem;
  }

  .browser-address {
    font-size: 0.78rem;
  }

  .summary-row,
  .status-pill {
    align-items: flex-start;
    flex-direction: column;
  }
}
