:root {
  --teal: #0EA68A;
  --teal-dark: #07866f;
  --navy: #0F172A;
  --navy-soft: #152238;
  --mint: #E6F4EF;
  --slate: #64748B;
  --off-white: #F7F8FA;
  --white: #FFFFFF;
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(15, 23, 42, 0.10);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(14, 166, 138, 0.24), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(230, 244, 239, 0.12), transparent 28%),
    linear-gradient(140deg, #07101f 0%, var(--navy) 48%, #0b1322 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 72%);
}

.site-shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 36px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(210px, 26vw, 338px);
  height: auto;
}

.topbar-link,
.footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.topbar-link {
  padding: 11px 17px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.topbar-link:hover,
.footer a:hover { color: var(--teal); }

.hero {
  min-height: calc(100vh - 252px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(14, 166, 138, 0.14);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4.4rem, 8vw, 7.9rem);
  line-height: 0.9;
  letter-spacing: -0.083em;
}

.lede {
  max-width: 645px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 18px 46px rgba(14, 166, 138, 0.28);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
}

.button-secondary:hover {
  border-color: rgba(14, 166, 138, 0.48);
  background: rgba(255, 255, 255, 0.09);
}

.preview-wrap {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.preview-wrap::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(14, 166, 138, 0.35), transparent 68%);
  filter: blur(6px);
}

.phone-card,
.approval-card {
  position: relative;
  width: min(100%, 430px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(247, 248, 250, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.phone-card {
  padding: 22px;
  border-radius: 38px;
  transform: rotate(-1.6deg);
}

.phone-top,
.claim-row,
.footer,
.footer div {
  display: flex;
  align-items: center;
}

.phone-top {
  justify-content: space-between;
  gap: 14px;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 800;
}

.phone-top p { margin: 0; }

.traffic-dots {
  display: flex;
  gap: 7px;
}

.traffic-dots i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
}

.traffic-dots i:nth-child(1) { background: #EF4444; }
.traffic-dots i:nth-child(2) { background: #F59E0B; }
.traffic-dots i:nth-child(3) { background: #22C55E; }

.claim-total {
  margin: 26px 0 22px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 0%, rgba(230, 244, 239, 0.78), transparent 42%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
}

.claim-total span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  font-weight: 760;
}

.claim-total strong {
  display: block;
  margin-top: 10px;
  font-size: 3.3rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

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

.claim-row {
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--white);
}

.claim-row .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--mint);
}

.claim-row div {
  min-width: 0;
  flex: 1;
}

.claim-row strong,
.claim-row small {
  display: block;
}

.claim-row strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.claim-row small {
  margin-top: 3px;
  color: var(--slate);
  font-size: 0.78rem;
}

.claim-row em {
  color: var(--teal);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 850;
}

.approval-card {
  position: absolute;
  right: -14px;
  bottom: 58px;
  width: 250px;
  padding: 20px;
  border-radius: 26px;
  transform: rotate(2deg);
}

.approval-card p {
  margin: 0 0 8px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.approval-card strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.35;
}

.progress {
  height: 9px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.09);
}

.progress span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #6EE7B7);
}

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

.promise article {
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.promise span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.promise h2 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.promise p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.62;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer div {
  gap: 14px;
}

.footer img {
  width: 54px;
  height: auto;
}

.footer p { margin: 0; }

@media (max-width: 980px) {
  .topbar { margin-bottom: 44px; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .preview-wrap {
    min-height: 520px;
    justify-content: start;
  }
  .approval-card { right: max(18px, 8vw); }
  .promise { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-shell { width: min(100% - 28px, 1180px); padding-top: 22px; }
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .brand img { width: 238px; }
  h1 { font-size: clamp(3.2rem, 17vw, 5.1rem); }
  .lede { font-size: 1.02rem; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .preview-wrap { min-height: auto; display: block; }
  .phone-card { transform: none; width: 100%; border-radius: 30px; padding: 18px; }
  .claim-total strong { font-size: 2.7rem; }
  .approval-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
    transform: none;
  }
  .claim-row { align-items: flex-start; }
  .claim-row em { padding-top: 3px; }
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
