:root {
  --bg: #f3f9f8;
  --surface: #ffffff;
  --ink: #101827;
  --muted: #657184;
  --line: #dfe8e8;
  --teal: #2cc6c6;
  --teal-dark: #138b8b;
  --navy: #0d1b2e;
  --green: #12b981;
  --red: #f04444;
  --amber: #f59e0b;
  --blue: #3388ff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(44, 198, 198, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(18, 185, 129, 0.13), transparent 22rem),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

svg {
  width: 1em;
  height: 1em;
}

.site-shell {
  overflow: hidden;
}

.section-pad {
  padding: 96px clamp(20px, 5vw, 72px);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(243, 249, 248, 0.78);
  border-bottom: 1px solid rgba(223, 232, 232, 0.7);
  backdrop-filter: blur(22px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.brand-mark,
.avatar-icon,
.bell-icon,
.icon-tile,
.toast-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: #e9f8f7;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 16px 34px rgba(44, 198, 198, 0.34);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.button.ghost.light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.button.danger {
  width: 100%;
  color: #ffffff;
  background: linear-gradient(135deg, #ff5a5a, #d92f35);
  box-shadow: 0 16px 34px rgba(240, 68, 68, 0.24);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  min-height: calc(100vh - 80px);
  padding-top: 56px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 900;
}

h2 {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 900;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

.trust-row span {
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.panel-glow {
  position: absolute;
  inset: 12% 8% auto auto;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(44, 198, 198, 0.28), rgba(18, 185, 129, 0.18));
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.9;
}

.hero-panel-card {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(223, 232, 232, 0.92);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

.hero-panel-card.main {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(13, 27, 46, 0.96), rgba(19, 139, 139, 0.94)),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  animation: phoneFloat 5.5s ease-in-out infinite;
}

.hero-panel-card.main h2 {
  max-width: 420px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 54px);
}

.hero-panel-card.main p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
  font-weight: 600;
}

.hero-panel-card.main .icon-tile {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-panel-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hero-panel-grid strong,
.hero-panel-grid span {
  display: block;
}

.hero-panel-grid strong {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 900;
}

.hero-panel-grid span {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 72px) 40px;
}

.metrics div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 34px;
  font-weight: 900;
}

.metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: clamp(28px, 5vw, 70px);
}

.section-heading {
  max-width: 660px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.feature-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.step-card,
.policy-card,
.request-card,
.toc {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

.feature-card {
  padding: 26px;
  border-radius: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card p,
.step-card p,
.policy-card p,
.delete-copy p,
.policy-hero-copy p,
.cta-card p {
  color: var(--muted);
  line-height: 1.7;
}

.icon-tile {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  font-size: 25px;
}

.icon-tile.green {
  color: var(--green);
  background: #e0f8ee;
}

.icon-tile.blue {
  color: var(--blue);
  background: #e4efff;
}

.icon-tile.amber {
  color: var(--amber);
  background: #fff2d9;
}

.icon-tile.pink {
  color: var(--red);
  background: #ffe8e8;
}

.icon-tile.red {
  color: var(--red);
  background: #ffe8e8;
}

.trust-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.52), transparent);
}

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

.trust-grid {
  display: grid;
  gap: 18px;
}

.trust-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.trust-card p {
  color: var(--muted);
  line-height: 1.7;
}

.inline-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 900;
}

.inline-link:hover {
  color: var(--ink);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(32px, 5vw, 58px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(13, 27, 46, 0.96), rgba(19, 139, 139, 0.96)),
    var(--navy);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.cta-card h2,
.cta-card .eyebrow {
  color: #ffffff;
}

.cta-card p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.policy-hero,
.delete-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
}

.policy-hero h1,
.delete-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
}

.updated-pill,
.inline-action {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 900;
}

.updated-pill {
  color: var(--teal-dark);
  background: #def7f5;
}

.privacy-visual {
  min-height: 380px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(222,247,245,0.78));
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.shield {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  color: var(--teal-dark);
  background: #ffffff;
  border-radius: 42px;
  box-shadow: var(--soft-shadow);
  font-size: 74px;
}

.secure-lines {
  width: min(70%, 280px);
  margin-top: -60px;
}

.secure-lines span {
  display: block;
  height: 12px;
  margin: 14px 0;
  background: #d9eeee;
  border-radius: 999px;
}

.secure-lines span:nth-child(2) {
  width: 78%;
}

.secure-lines span:nth-child(3) {
  width: 55%;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 72px) 96px;
}

.toc {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 24px;
}

.toc a {
  padding: 12px 14px;
  color: var(--muted);
  border-radius: 14px;
  font-weight: 800;
}

.toc a:hover {
  color: var(--ink);
  background: #e9f8f7;
}

.policy-card {
  padding: clamp(24px, 4vw, 52px);
  border-radius: 30px;
}

.policy-card section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.policy-card li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.policy-card a,
.form-foot a {
  color: var(--teal-dark);
  font-weight: 900;
}

.inline-action {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.delete-note {
  max-width: 620px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.delete-note strong,
.delete-note span {
  display: block;
}

.delete-note span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.request-card {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 30px;
}

.form-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.form-head h2 {
  margin: 0 0 4px;
  font-size: 28px;
}

.form-head p,
.form-foot {
  margin: 0;
  color: var(--muted);
}

label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(44, 198, 198, 0.14);
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}

.check-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--teal-dark);
}

.form-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
}

.process {
  padding-top: 10px;
}

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

.step-card {
  padding: 26px;
  border-radius: 26px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-size: 32px;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(calc(100vw - 48px), 390px);
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: var(--green);
  border-radius: 14px;
}

.toast strong,
.toast p {
  margin: 0;
}

.toast p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

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

  .nav-toggle {
    display: block;
  }

  .nav.menu-open .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: grid;
    padding: 12px;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .hero,
  .split,
  .policy-hero,
  .delete-hero,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .cta-card,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 72px 18px;
  }

  .nav {
    padding: 14px 18px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-panel-grid,
  .feature-grid,
  .metrics,
  .trust-grid,
  .steps,
  .toc {
    grid-template-columns: 1fr;
  }

  .metrics {
    padding-inline: 18px;
  }

  .footer {
    padding-inline: 18px;
  }

  .policy-layout {
    padding-inline: 18px;
  }
}

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