:root {
  --ink: #0d1713;
  --ink-soft: #34443d;
  --moss: #244d35;
  --leaf: #63d36a;
  --lime: #c8ff64;
  --glacier: #8bb7ec;
  --sky: #dbeefe;
  --paper: #f7fbf4;
  --card: rgba(255, 255, 255, 0.84);
  --line: rgba(13, 23, 19, 0.12);
  --shadow: 0 24px 70px rgba(13, 23, 19, 0.18);
  --radius-lg: 34px;
  --radius-md: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(139, 183, 236, 0.38), transparent 34rem),
    radial-gradient(circle at 88% 4%, rgba(200, 255, 100, 0.36), transparent 30rem),
    linear-gradient(135deg, #f7fbf4 0%, #edf7f0 42%, #e5f1f8 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(36, 77, 53, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 77, 53, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  min-height: 74px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 14px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 45px rgba(13, 23, 19, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: white;
  padding: 5px;
  box-shadow: 0 10px 22px rgba(13, 23, 19, 0.1);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 850;
}

.site-nav a {
  text-decoration: none;
  padding: 12px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
}

.site-nav a:hover {
  background: rgba(200, 255, 100, 0.34);
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: white !important;
  box-shadow: 0 10px 20px rgba(13, 23, 19, 0.18);
}

.hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

h1 {
  font-size: clamp(48px, 6.8vw, 88px);
  max-width: 760px;
}

h2 {
  font-size: clamp(40px, 5vw, 72px);
}

h3 {
  font-size: 26px;
  letter-spacing: -0.045em;
}

.hero-copy {
  position: relative;
}

.hero-copy p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(13, 23, 19, 0.08);
}

.button.primary {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, var(--leaf), var(--lime));
}

.button.dark {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.showcase-actions {
  margin-top: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 720px;
}

.trust-pill {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.trust-pill strong {
  display: block;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.trust-pill span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.device-stage {
  position: relative;
  min-height: 650px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orb.one {
  width: 380px;
  height: 380px;
  right: 8%;
  top: 2%;
  background: linear-gradient(135deg, rgba(99, 211, 106, 0.45), rgba(139, 183, 236, 0.32));
}

.orb.two {
  width: 220px;
  height: 220px;
  left: 0;
  bottom: 8%;
  background: rgba(200, 255, 100, 0.4);
}

.phone-stack {
  position: relative;
  height: 650px;
}

.phone {
  position: absolute;
  width: min(46vw, 265px);
  border: 10px solid #101a16;
  border-radius: 38px;
  overflow: hidden;
  background: #101a16;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.phone.home {
  right: 24%;
  top: 20px;
  transform: rotate(-5deg);
}

.phone.log {
  right: 0;
  top: 118px;
  transform: rotate(8deg);
}

.floating-card {
  position: absolute;
  left: 0;
  bottom: 70px;
  max-width: 320px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(13, 23, 19, 0.16);
  backdrop-filter: blur(18px);
}

.floating-card strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.06em;
}

.floating-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 110px auto 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 440px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

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

.feature-card,
.audience-card,
.policy-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: 0 18px 45px rgba(13, 23, 19, 0.08);
  backdrop-filter: blur(16px);
}

.feature-card p,
.audience-card p,
.policy-card p,
.policy-card li {
  color: var(--ink-soft);
  line-height: 1.6;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(99, 211, 106, 0.18);
  color: var(--moss);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}

.dashboard-frame {
  padding: 12px;
  border-radius: 34px;
  background: #0d1713;
  box-shadow: var(--shadow);
}

.dashboard-frame img {
  border-radius: 24px;
}

.showcase-copy {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13, 23, 19, 0.94), rgba(36, 77, 53, 0.92));
  color: white;
  box-shadow: var(--shadow);
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 18px;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
}

.metric strong {
  display: block;
  font-size: 30px;
  letter-spacing: -0.06em;
}

.metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screen-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 20px;
}

.screen-shot {
  min-width: 160px;
  border-radius: 30px;
  border: 7px solid #111a16;
  overflow: hidden;
  background: #111a16;
  box-shadow: 0 16px 35px rgba(13, 23, 19, 0.16);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 66px);
  border-radius: 44px;
  color: white;
  background:
    radial-gradient(circle at 12% 20%, rgba(200, 255, 100, 0.38), transparent 24rem),
    linear-gradient(135deg, #0d1713, #244d35 58%, #1c6a4a);
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.cta-panel .button {
  background: white;
  color: var(--ink);
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 80px auto 30px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer a {
  font-weight: 850;
  text-decoration: none;
}

.policy-hero {
  width: min(920px, calc(100% - 36px));
  margin: 72px auto 0;
}

.policy-hero h1 {
  font-size: clamp(48px, 7vw, 84px);
}

.policy-hero p {
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
}

.policy-content {
  width: min(920px, calc(100% - 36px));
  margin: 34px auto 0;
  display: grid;
  gap: 18px;
}

.policy-card h2 {
  font-size: 32px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.policy-card ul {
  padding-left: 20px;
}

.policy-meta {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-soft);
  font-weight: 800;
}

.delete-layout {
  width: min(var(--max), calc(100% - 36px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  gap: 28px;
  align-items: start;
}

.delete-copy {
  display: grid;
  gap: 18px;
}

.notice-card {
  border-color: rgba(200, 255, 100, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 247, 240, 0.82)),
    rgba(255, 255, 255, 0.86);
}

.request-card {
  border-color: rgba(139, 183, 236, 0.52);
}

.step-list {
  margin: 22px 0;
  padding-left: 22px;
}

.step-list li {
  margin-bottom: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.delete-visual {
  position: sticky;
  top: 118px;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.delete-phone {
  position: relative;
  width: min(100%, 330px);
  border-width: 9px;
  border-radius: 42px;
}

.delete-phone img {
  border-radius: 31px;
}

.review-page {
  width: min(1040px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  place-items: center;
}

.review-card {
  width: 100%;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.review-brand {
  width: fit-content;
  margin-bottom: 34px;
}

.review-card h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
}

.review-intro,
.review-footnote {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

.video-panel {
  margin: 30px 0;
  padding: 12px;
  border-radius: 32px;
  background: #0d1713;
  box-shadow: 0 18px 45px rgba(13, 23, 19, 0.18);
}

.video-panel video {
  display: block;
  width: 100%;
  max-height: 72vh;
  border-radius: 22px;
  background: #050806;
}

.review-video-fallback {
  margin: -14px 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 750;
}

.review-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-details article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(247, 251, 244, 0.72);
}

.review-details h2 {
  font-size: 30px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.review-details p {
  color: var(--ink-soft);
  line-height: 1.58;
}

.review-footnote {
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .showcase,
  .audience-grid,
  .delete-layout {
    grid-template-columns: 1fr;
  }

  .delete-visual {
    position: relative;
    top: 0;
    min-height: auto;
  }

  .device-stage {
    min-height: 560px;
  }

  .phone-stack {
    height: 560px;
  }

  .phone.home {
    left: 8%;
    right: auto;
  }

  .phone.log {
    right: 8%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    top: 0;
    border-radius: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    margin-top: 34px;
  }

  .trust-strip,
  .metric-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .device-stage {
    min-height: 510px;
  }

  .phone-stack {
    height: 510px;
  }

  .phone {
    width: 210px;
  }

  .phone.home {
    left: 0;
  }

  .phone.log {
    right: 0;
    top: 96px;
  }

  .floating-card {
    left: 12px;
    right: 12px;
    bottom: 16px;
    max-width: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .review-details {
    grid-template-columns: 1fr;
  }
}
