:root {
  --ink: #102132;
  --ink-soft: #486078;
  --brand: #00a38f;
  --brand-deep: #086c62;
  --brand-night: #0f2f4a;
  --accent: #ff9558;
  --sand: #fff7eb;
  --sky: #dff5ff;
  --paper: #ffffff;
  --stroke: #d1e1ed;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(9, 34, 59, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% -2%, #ffe3d4 0%, transparent 34%),
    radial-gradient(circle at 96% -8%, #d2fff6 0%, transparent 34%),
    linear-gradient(180deg, #fffefb 0%, #edf8ff 48%, #f9fcff 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(209, 225, 237, 0.82);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: contain;
  box-shadow: 0 8px 20px rgba(8, 108, 98, 0.26);
}

.brand-text {
  font-size: 1.02rem;
  color: var(--brand-night);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 12px 24px rgba(6, 106, 97, 0.3);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--stroke);
}

.btn-secondary:hover {
  border-color: #b8cfde;
}

.hero {
  padding: 84px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 163, 143, 0.14);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  margin-bottom: 12px;
}

.hero p {
  margin: 0 0 26px;
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.cta-note {
  margin-top: 10px;
  color: #56718a;
  font-size: 0.92rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: relative;
  border-radius: 30px;
  border: 1px solid #c8dfed;
  box-shadow: var(--shadow);
  min-height: 480px;
  overflow: hidden;
  background: #fff;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  border-radius: 16px;
  padding: 14px;
  background: rgba(15, 47, 74, 0.88);
  color: #e9f7ff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.hero-floating-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
  font-size: 12px;
  color: #bddff4;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 4px;
}

.floating-metrics {
  margin-top: 7px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.floating-metrics span {
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-fill {
  height: 100%;
  width: 74%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

.section {
  padding: 56px 0;
}

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

.feature {
  border: 1px solid #d5e5f0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(244, 251, 255, 0.84) 100%);
  padding: 20px;
  box-shadow: 0 12px 24px rgba(16, 56, 85, 0.08);
}

.feature h3 {
  margin: 0 0 8px;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
}

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

.legal-card {
  border: 1px solid #d7e6f0;
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: 0 10px 20px rgba(16, 56, 85, 0.06);
}

.legal-card h3 {
  margin: 0 0 6px;
}

.legal-card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.page-wrap {
  padding: 56px 0 70px;
}

.panel {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d5e6f1;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3.6vw, 44px);
}

.panel p,
.panel li {
  color: var(--ink-soft);
}

.panel ul {
  padding-left: 18px;
}

.muted {
  color: #5c7387;
}

.site-footer {
  border-top: 1px solid #d2e2ee;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.84);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  align-items: center;
  font-size: 14px;
  color: #5c7387;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.deletion-steps {
  padding-left: 19px;
  color: var(--ink-soft);
}

.deletion-shot {
  margin: 16px 0 6px;
  border: 1px solid #cddfec;
  border-radius: 14px;
  overflow: hidden;
  background: #f5fbff;
}

.deletion-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.deletion-shot figcaption {
  font-size: 0.9rem;
  color: #557188;
  padding: 10px 12px;
}

@media (max-width: 920px) {
  .hero-grid,
  .features,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-image {
    min-height: 360px;
  }
}
