
:root {
  --ink: #06101d;
  --ink-2: #0a1728;
  --ink-3: #10223a;
  --white: #ffffff;
  --paper: #f5f8fc;
  --paper-2: #edf3f9;
  --text: #172438;
  --muted: #68768a;
  --blue: #27b7ff;
  --blue-2: #4dc3ff;
  --cyan: #5ce1e6;
  --violet: #7b61ff;
  --green: #33d6a6;
  --red: #ff6b7a;
  --border: rgba(121, 154, 190, .18);
  --shadow: 0 24px 80px rgba(1, 12, 27, .18);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.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 {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(4, 13, 25, .78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-plate {
  width: 205px;
  height: 54px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 32px rgba(1,11,24,.2);
}
.brand-plate img { width: 100%; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--white); }

.site-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--blue-2), var(--cyan));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: 150px 0 120px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(39,183,255,.15), transparent 35%),
    radial-gradient(circle at 86% 18%, rgba(123,97,255,.16), transparent 38%),
    linear-gradient(145deg, #07111f 0%, #0a1627 48%, #07111f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}
.hero-glow-one {
  width: 520px;
  height: 520px;
  right: -150px;
  top: 80px;
  background: rgba(39,183,255,.08);
}
.hero-glow-two {
  width: 350px;
  height: 350px;
  left: -170px;
  bottom: 30px;
  background: rgba(92,225,230,.05);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #087ab3; }

.hero h1,
.section-heading h2,
.partner-copy h2,
.form-card h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(235,244,255,.75);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-lead strong { color: var(--white); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 780;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--blue-2), var(--cyan));
  box-shadow: 0 14px 35px rgba(39,183,255,.22);
}
.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(4,14,28,.18);
}
.button.full { width: 100%; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: rgba(234,244,255,.58);
  font-size: .8rem;
  font-weight: 700;
}
.hero-proof span {
  position: relative;
  padding-left: 14px;
}
.hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(92,225,230,.85);
}

.product-window {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(12, 29, 49, .72);
  box-shadow: 0 40px 120px rgba(0,0,0,.44);
  backdrop-filter: blur(16px);
}
.product-window::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(77,195,255,.45), transparent 30%, transparent 70%, rgba(123,97,255,.3));
  opacity: .8;
}

.window-bar,
.inbox-toolbar,
.email-row,
.window-note {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255,255,255,.58);
  font-size: .78rem;
}
.window-dots { display: flex; gap: 6px; }
.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.window-live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}
.window-live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 10px rgba(51,214,166,.9);
}

.inbox-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 18px;
  border-radius: 16px;
}
.inbox-toolbar strong { display: block; font-size: .95rem; }
.inbox-toolbar small { color: rgba(255,255,255,.48); }
.trust-score { text-align: right; }
.trust-score span { display: block; color: rgba(255,255,255,.45); font-size: .68rem; }
.trust-score strong { color: var(--cyan); font-size: 1.2rem; }

.email-list { display: grid; gap: 10px; margin-top: 12px; }

.email-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.email-row.active,
.email-row:hover {
  transform: translateX(4px);
  border-color: rgba(77,195,255,.22);
  background: rgba(77,195,255,.065);
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  font-size: .76rem;
  font-weight: 850;
}
.avatar-blue { background: linear-gradient(135deg, #197ec6, #27b7ff); }
.avatar-violet { background: linear-gradient(135deg, #5944d7, #8a71ff); }
.avatar-cyan { background: linear-gradient(135deg, #0b9cb5, #40d5d9); }

.email-main { min-width: 0; }
.email-topline { display: flex; justify-content: space-between; gap: 10px; }
.email-topline strong { font-size: .84rem; }
.email-topline span { color: rgba(255,255,255,.35); font-size: .7rem; }
.email-main p {
  margin: 2px 0 0;
  overflow: hidden;
  color: rgba(255,255,255,.68);
  font-size: .79rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.email-main small {
  display: block;
  overflow: hidden;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
}
.status svg {
  width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.status-verified {
  color: #7bf1d1;
  background: rgba(51,214,166,.12);
}
.status-unverified {
  color: #ff9aa4;
  background: rgba(255,107,122,.12);
}

.window-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
}
.note-icon {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 11px; color: var(--cyan); background: rgba(92,225,230,.1);
}
.note-icon svg {
  width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.window-note strong { display: block; font-size: .8rem; }
.window-note span { display: block; color: rgba(255,255,255,.42); font-size: .69rem; }

.hero-divider {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 85%, 100% 0, 100% 100%, 0 100%);
}

.section { padding: 110px 0; }
.section-light { background: var(--white); }
.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #07111f, #0c1b2f);
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(rgba(77,195,255,.6) .7px, transparent .7px);
  background-size: 18px 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-heading.centered {
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading h2,
.partner-copy h2,
.form-card h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
}
.section-heading p:not(.eyebrow),
.partner-copy > p:not(.eyebrow),
.form-card > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-dark .section-heading p:not(.eyebrow) { color: rgba(235,244,255,.6); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f9fbfd);
  box-shadow: 0 18px 55px rgba(34,66,100,.08);
}
.step-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #b8c5d4;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.icon-box,
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
}
.icon-box {
  color: #087ab3;
  background: linear-gradient(135deg, rgba(77,195,255,.18), rgba(92,225,230,.14));
}
.icon-box svg,
.feature-icon svg,
.check-list svg {
  width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.process-card h3 {
  margin: 26px 0 12px;
  font-size: 1.22rem;
  line-height: 1.25;
}
.process-card p { margin: 0; color: var(--muted); }

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 265px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77,195,255,.24);
  background: rgba(77,195,255,.055);
}
.feature-icon {
  color: var(--cyan);
  background: rgba(92,225,230,.09);
}
.feature-card h3 { margin: 24px 0 10px; font-size: 1.12rem; }
.feature-card p { margin: 0; color: rgba(235,244,255,.55); font-size: .94rem; }

.section-partners {
  background:
    linear-gradient(90deg, rgba(39,183,255,.06), transparent 35%),
    var(--paper);
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 80px;
  align-items: center;
}
.partner-copy > p:not(.eyebrow) { max-width: 680px; }
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 34px 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.check-list li span {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; color: #0675aa; background: rgba(39,183,255,.11);
}
.check-list svg { width: 16px; height: 16px; }

.partner-panel {
  padding: 36px;
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(92,225,230,.16), transparent 32%),
    linear-gradient(145deg, #07111f, #0d2037);
  box-shadow: var(--shadow);
}
.panel-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(92,225,230,.08);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.metric { padding: 28px 0 20px; }
.metric span, .metric small { display: block; color: rgba(255,255,255,.5); }
.metric strong { display: block; margin: 6px 0; font-size: 4.2rem; line-height: 1; }
.partner-line { height: 1px; background: rgba(255,255,255,.1); }
.partner-points { display: grid; gap: 18px; padding-top: 24px; }
.partner-points div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.partner-points span {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 10px; color: var(--cyan); background: rgba(92,225,230,.08);
  font-size: .72rem; font-weight: 850;
}
.partner-points p { margin: 4px 0 0; color: rgba(255,255,255,.65); }

.section-pricing {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 30%, rgba(39,183,255,.1), transparent 35%),
    var(--ink);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 80px;
  align-items: center;
}
.section-pricing .section-heading { margin-bottom: 0; }
.section-pricing .section-heading p:not(.eyebrow) { color: rgba(235,244,255,.58); }

.price-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.price-label {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.price-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin: 16px 0;
}
.price-row .currency { margin-top: 12px; color: var(--cyan); font-size: 1.4rem; font-weight: 850; }
.price-row strong { font-size: 5.3rem; line-height: .9; }
.price-row .period { align-self: center; color: rgba(255,255,255,.52); font-size: .82rem; line-height: 1.3; }
.price-note { color: rgba(255,255,255,.5); font-size: .9rem; }

.section-forms { background: var(--white); }
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-card {
  min-height: 460px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--paper);
}
.form-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 5%, rgba(39,183,255,.12), transparent 30%),
    linear-gradient(145deg, #07111f, #0c1d32);
}
.form-card-dark > p:not(.eyebrow) { color: rgba(235,244,255,.58); }

.hubspot-mount { margin-top: 28px; }
.form-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px dashed rgba(68,110,150,.3);
  border-radius: 18px;
  color: #52708e;
  background: rgba(255,255,255,.6);
  text-align: center;
}
.form-placeholder span { font-weight: 800; }
.form-placeholder small { color: #8296aa; }
.form-placeholder code { padding: 2px 5px; border-radius: 5px; background: rgba(7,17,31,.06); }
.hubspot-mount.dark .form-placeholder {
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.14);
}
.hubspot-mount.dark .form-placeholder small { color: rgba(255,255,255,.38); }
.hubspot-mount.dark .form-placeholder code { background: rgba(255,255,255,.08); }

.final-cta {
  padding: 70px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(39,183,255,.12), rgba(92,225,230,.04)),
    #0a1728;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.final-cta h2 { max-width: 780px; font-size: clamp(2rem, 4vw, 3.4rem); }

.site-footer {
  padding: 54px 0 22px;
  color: rgba(255,255,255,.55);
  background: #050c16;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}
.footer-plate { width: 170px; height: 46px; }
.footer-grid p { margin: 0; font-size: .9rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; font-size: .82rem; font-weight: 700; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .email-row, .feature-card { transition: none; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid,
  .partner-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-copy { max-width: 780px; }
  .product-window { max-width: 680px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-panel { max-width: 640px; }
  .price-card { max-width: 520px; }
}

@media (max-width: 780px) {
  .site-header { padding: 10px 0; }
  .brand-plate { width: 170px; height: 46px; }

  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(4,13,25,.97);
    box-shadow: 0 18px 50px rgba(0,0,0,.4);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; border-radius: 10px; }
  .site-nav .nav-cta { text-align: center; }

  .hero { padding-top: 120px; padding-bottom: 90px; }
  .hero-grid { gap: 42px; }
  .hero-proof { gap: 12px; }
  .product-window { padding: 10px; border-radius: 18px; }
  .window-bar { grid-template-columns: 1fr auto; }
  .window-bar > span:nth-child(2) { display: none; }
  .email-row { grid-template-columns: 38px 1fr; }
  .email-row .status { grid-column: 2; justify-self: start; }
  .avatar { width: 38px; height: 38px; }
  .email-topline span { display: none; }

  .section { padding: 82px 0; }
  .process-grid,
  .forms-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-card,
  .feature-card { min-height: auto; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 26px, 1180px); }
  .nav-shell { width: calc(100% - 20px); }
  .hero h1 { font-size: 2.7rem; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .section-heading h2,
  .partner-copy h2,
  .form-card h2,
  .final-cta h2 { font-size: 2.25rem; }
  .process-card,
  .feature-card,
  .partner-panel,
  .price-card,
  .form-card { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}
