:root {
  --ink: #111312;
  --muted: #5d6662;
  --line: #dce2dd;
  --paper: #fbfcf8;
  --soft: #eef3ee;
  --white: #ffffff;
  --green: #0b735c;
  --green-dark: #075443;
  --blue: #1765b2;
  --amber: #bc7a1b;
  --danger: #b94136;
  --shadow: 0 24px 70px rgba(17, 19, 18, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 248, 0.82);
  border-bottom: 1px solid rgba(220, 226, 221, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink) !important;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 76px) 70px;
  overflow: hidden;
  background: #f7f8f5;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 19, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 18, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(60px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

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

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

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

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.phone {
  position: absolute;
  width: 285px;
  border: 10px solid #151716;
  border-radius: 42px;
  background: #fbfcf8;
  box-shadow: var(--shadow);
}

.phone-primary {
  right: clamp(24px, 9vw, 160px);
  top: 120px;
  min-height: 560px;
  padding: 22px;
  transform: rotate(5deg);
}

.phone-secondary {
  right: clamp(250px, 30vw, 510px);
  bottom: 70px;
  min-height: 340px;
  padding: 24px;
  transform: rotate(-7deg);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 760;
}

.incoming-label,
.mini-title {
  margin-top: 42px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.caller-avatar {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 28px auto 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 30px;
  font-weight: 800;
}

.caller-name,
.caller-number {
  text-align: center;
}

.caller-name {
  font-size: 24px;
  font-weight: 820;
}

.caller-number {
  color: var(--muted);
  font-size: 15px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.trust-pill {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #e8f2fb;
  font-size: 12px;
  font-weight: 760;
}

.trust-pill.safe {
  color: var(--green);
  background: #e6f4ee;
}

.call-actions {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-top: 82px;
}

.call-action {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.call-action svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.call-action.decline {
  background: var(--danger);
}

.call-action.accept {
  background: var(--green);
}

.risk-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid #f0d2ce;
  border-radius: 8px;
  color: var(--danger);
  background: #fff5f3;
  font-weight: 760;
}

.risk-score {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--danger);
}

.mini-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.mini-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.identity-strip {
  position: absolute;
  right: 90px;
  bottom: 38px;
  display: flex;
  flex-wrap: wrap;
  max-width: 460px;
  gap: 8px;
}

.identity-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 13px;
  backdrop-filter: blur(14px);
}

.proof-band,
.section,
.experience-section,
.waitlist-section,
.site-footer {
  padding-left: clamp(18px, 5vw, 76px);
  padding-right: clamp(18px, 5vw, 76px);
}

.proof-band {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
  padding-top: 58px;
  padding-bottom: 58px;
  background: #111312;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-intro,
.proof-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.proof-intro {
  background:
    radial-gradient(circle at 20% 20%, rgba(11, 115, 92, 0.34), transparent 36%),
    rgba(255, 255, 255, 0.06);
}

.proof-intro h2 {
  color: var(--white);
  font-size: clamp(30px, 3.3vw, 48px);
}

.proof-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.045);
}

.proof-number {
  color: rgba(255, 255, 255, 0.36);
  font-size: 13px;
  font-weight: 820;
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.proof-band strong {
  color: var(--white);
}

.proof-band span,
.section-heading p,
.experience-copy p,
.waitlist-copy p {
  color: var(--muted);
}

.section,
.experience-section,
.waitlist-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

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

.feature-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--soft);
}

.data-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.data-panel-header,
.name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.data-panel-header {
  margin-bottom: 24px;
  color: var(--muted);
}

.data-panel-header strong {
  color: var(--green);
}

.name-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

meter {
  width: min(46%, 190px);
  height: 10px;
}

.data-note {
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: #f7f8f5;
  color: var(--muted);
  font-size: 14px;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: #131514;
  color: var(--white);
}

.waitlist-copy p {
  color: #c7d1cb;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: #c7d1cb;
  font-size: 13px;
}

.waitlist-form input:not(.iti__search-input),
.waitlist-form select {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.waitlist-form select {
  appearance: auto;
}

.waitlist-form .iti {
  width: 100%;
}

.waitlist-form .iti input:not(.iti__search-input) {
  min-height: 48px;
  width: 100%;
}

.waitlist-form .iti__selected-country {
  border-radius: 8px 0 0 8px;
}

.waitlist-form .iti__dropdown-content {
  z-index: 40;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.waitlist-form .iti__search-input {
  min-height: 54px;
  width: 100%;
  padding: 0 16px 0 48px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.waitlist-form .iti__search-input:focus {
  box-shadow: inset 0 0 0 2px var(--green);
}

.waitlist-form .iti__country-list {
  max-height: 310px;
  overflow-y: auto;
  color: var(--ink);
  background: var(--white);
}

.waitlist-form .iti__country {
  color: var(--ink);
  background: var(--white);
}

.waitlist-form .iti__country.iti__highlight {
  background: var(--soft);
}

.hidden-field {
  display: none;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: #c7d1cb;
  font-size: 14px;
}

.apk-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 242, 235, 0.94), rgba(251, 252, 248, 0.94)),
    var(--white);
}

.apk-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.apk-copy {
  max-width: 760px;
}

.apk-copy p,
.apk-card p {
  color: var(--muted);
}

.apk-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.apk-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.apk-card-top strong {
  color: var(--green);
}

.apk-meta {
  display: grid;
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.apk-meta span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.apk-meta strong {
  color: var(--ink);
}

.split-info {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 40px;
  background: var(--paper);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.page-main {
  padding: 140px clamp(18px, 5vw, 76px) 90px;
}

.page-hero {
  max-width: 860px;
  margin-bottom: 48px;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.content-shell {
  max-width: 900px;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: -8px 0 54px;
}

.legal-summary article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-summary span {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 13px;
  font-weight: 820;
}

.legal-summary strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.legal-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.content-shell section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.content-shell p,
.content-shell li {
  color: var(--muted);
}

.content-shell a {
  color: var(--green);
  font-weight: 760;
}

.developer-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.site-footer {
  display: block;
  padding-top: 54px;
  padding-bottom: 32px;
  border-top: 0;
  color: #d9e2dc;
  background: #111312;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-mark {
  color: var(--ink);
  background: var(--white);
}

.site-footer nav {
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 560px;
  color: #c7d1cb;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer p {
  max-width: 430px;
  margin: 14px 0 0;
  color: #aab6af;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #87938d;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .phone-primary {
    right: -30px;
    opacity: 0.52;
  }

  .phone-secondary,
  .identity-strip {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 70px;
  }

  .phone-primary {
    right: -120px;
    top: 170px;
    transform: rotate(8deg) scale(0.82);
  }

  .proof-band,
  .feature-grid,
  .experience-section,
  .waitlist-section,
  .split-info,
  .legal-summary {
    grid-template-columns: 1fr;
  }

  .proof-band {
    gap: 14px;
  }

  .proof-intro,
  .proof-card {
    min-height: auto;
  }

  .section,
  .experience-section,
  .waitlist-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .apk-shell,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .page-main {
    padding-top: 70px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

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

  .feature-card {
    min-height: auto;
  }
}
