:root {
  --ink: #101923;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.12);
  --bg: #f6f9fc;
  --panel: rgba(255, 255, 255, 0.86);
  --blue: #1769d1;
  --blue-dark: #0f3159;
  --green: #18a66a;
  --cyan: #5fd4ff;
  --shadow: 0 24px 80px rgba(15, 49, 89, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(95, 212, 255, 0.24), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(24, 166, 106, 0.18), transparent 30rem),
    var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  inset: auto -10rem -14rem auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: rgba(23, 105, 209, 0.12);
  filter: blur(12px);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.wrap,
.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: inline-grid;
  place-items: center;
  background:
    radial-gradient(circle, var(--green) 0 34%, var(--blue-dark) 35% 50%, transparent 51%),
    linear-gradient(135deg, var(--blue-dark), #174f86);
  box-shadow: 0 14px 30px rgba(15, 49, 89, 0.24);
  color: #fff;
  font-weight: 900;
}

.logo-mark.small {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.logo-mark span {
  transform: translateY(-1px);
}

.links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.links a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.hero-copy,
.hero-product,
.section-head,
.feature-card,
.policy-card {
  animation: riseIn 700ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border: 1px solid rgba(23, 105, 209, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 0 13px;
  color: #24577f;
  font-weight: 780;
  font-size: 13px;
}

.eyebrow.small-text {
  min-height: auto;
  padding: 6px 11px;
  margin-bottom: 14px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(24, 166, 106, 0.56);
  animation: pulse 1.9s infinite;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.hero-lede {
  max-width: 680px;
  margin-top: 24px;
  font-size: 20px;
}

.typing {
  display: inline-block;
  color: var(--blue);
  overflow: hidden;
  border-right: 0.08em solid var(--green);
  white-space: nowrap;
  max-width: 0;
  animation: typing 2.4s steps(15, end) 500ms forwards, cursorBlink 700ms step-end infinite;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(15, 49, 89, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 49, 89, 0.14);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #0f8cd8);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.65);
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.trust-row span {
  border: 1px solid rgba(24, 166, 106, 0.22);
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.78);
  padding: 8px 11px;
  color: #176844;
  font-size: 13px;
  font-weight: 780;
}

.hero-product {
  position: relative;
  min-height: 520px;
}

.floating-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.main-preview {
  position: relative;
  z-index: 2;
  padding: 24px;
  animation: floatCard 5.8s ease-in-out infinite;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.preview-header p {
  font-size: 14px;
}

.tabs-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
  padding: 5px;
  border-radius: 14px;
  background: #eef4fb;
}

.tabs-preview span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}

.tabs-preview .active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(15, 49, 89, 0.08);
}

.text-box,
.review-box {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
  padding: 18px;
}

.highlight-line,
.add {
  height: 14px;
  border-radius: 999px;
  background: #b9d7ff;
}

.highlight-line.wide,
.add.wide {
  width: 92%;
}

.highlight-line {
  width: 74%;
}

.highlight-line.short,
.add.short {
  width: 54%;
}

.add {
  background: #a8f0c5;
}

.fake-button {
  width: 100%;
  min-height: 48px;
  margin: 16px 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 850;
}

.mini-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 13px 15px;
  box-shadow: 0 18px 40px rgba(15, 49, 89, 0.14);
  animation: bob 4.6s ease-in-out infinite;
}

.card-one {
  left: -34px;
  bottom: 92px;
}

.card-two {
  right: -22px;
  top: 78px;
  animation-delay: 900ms;
}

.mini-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.docs {
  background: #2f7df6;
}

.chrome {
  background: conic-gradient(#e94235, #fabb05, #34a853, #4285f4, #e94235);
}

.local {
  background: var(--green);
}

.review {
  background: var(--blue-dark);
}

.logo-strip {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.strip-grid div {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  color: #334155;
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 30px;
}

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

.feature-card,
.steps article,
.policy-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  padding: 26px;
  box-shadow: 0 16px 44px rgba(15, 49, 89, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.steps article:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(15, 49, 89, 0.13);
}

.feature-number {
  display: block;
  margin-bottom: 44px;
  color: var(--blue);
  font-weight: 900;
}

.feature-card h3,
.steps h3 {
  margin-bottom: 12px;
}

.dark-section {
  background: linear-gradient(135deg, #0f3159, #0d1b2a);
  color: #fff;
}

.dark-section p,
.dark-section .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.privacy-stack {
  display: grid;
  gap: 12px;
}

.privacy-stack div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  font-weight: 820;
}

.steps article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 14px;
  background: #eaf3ff;
  color: var(--blue);
  font-weight: 900;
}

.policy {
  max-width: 900px;
  padding: 70px 0;
}

.policy-hero {
  margin-bottom: 26px;
}

.policy-hero h1 {
  max-width: 860px;
  margin-bottom: 16px;
}

.policy-card {
  margin-bottom: 16px;
}

.policy-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.policy-card ul {
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 24px 0;
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typing {
  to {
    max-width: 12ch;
  }
}

@keyframes cursorBlink {
  50% {
    border-color: transparent;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(24, 166, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(24, 166, 106, 0);
  }
}

@keyframes floatCard {
  50% {
    transform: translateY(-10px) rotate(0.7deg);
  }
}

@keyframes bob {
  50% {
    transform: translateY(-8px);
  }
}

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

@media (max-width: 920px) {
  .hero-grid,
  .feature-grid,
  .steps,
  .split,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .mini-card {
    position: static;
    margin-top: 12px;
  }

  .footer-grid,
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 48px;
  }

  .links {
    gap: 14px;
  }

  .section {
    padding: 62px 0;
  }
}
