:root {
  --paper: #ffffff;
  --canvas: #f6f4fa;
  --ink: #20152d;
  --muted: #696270;
  --line: #ded9e5;
  --pink: #f71969;
  --cyan: #00aeb8;
  --yellow: #ffbd1f;
  --purple: #4a185f;
  --soft-pink: #fff0f6;
  --soft-cyan: #e9fafb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Hiragino Sans", "Yu Gothic", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(222, 217, 229, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav,
.inner,
.footer-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

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

.nav-links a {
  text-decoration: none;
}

.language-link {
  color: var(--cyan);
}

.hero {
  min-height: min(76vh, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 56px;
  padding: 72px 0 64px;
}

.hero-copy {
  max-width: 640px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.96;
}

.hero h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.22;
}

.lead {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--purple);
  border-radius: 8px;
  background: var(--purple);
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border: 14px solid var(--yellow);
  border-radius: 50%;
}

.hero-art img {
  position: relative;
  width: min(360px, 76vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24%;
  box-shadow: 18px 18px 0 var(--cyan), -18px -18px 0 var(--pink);
}

.band {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.band.alt {
  background: var(--soft-cyan);
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading h2,
.legal h1 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.15;
}

.section-heading p,
.legal p,
.legal li,
.support-note {
  color: var(--muted);
  line-height: 1.85;
}

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

.step {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 850;
}

.delete .step-icon {
  background: var(--soft-pink);
  color: var(--pink);
}

.share .step-icon {
  background: var(--soft-cyan);
  color: var(--cyan);
}

.keep .step-icon {
  background: #ecf9ef;
  color: #22a45d;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(32, 21, 45, 0.14);
  font-weight: 700;
}

.fact-list li:first-child {
  border-top: 1px solid rgba(32, 21, 45, 0.14);
}

.page-intro {
  padding: 64px 0 34px;
}

.page-intro h1 {
  font-size: clamp(42px, 7vw, 68px);
}

.legal {
  max-width: 820px;
  padding: 18px 0 80px;
}

.legal h2 {
  margin: 42px 0 12px;
  font-size: 23px;
}

.legal ul {
  padding-left: 22px;
}

.meta {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
}

.notice {
  margin: 28px 0;
  padding: 20px;
  border-left: 5px solid var(--yellow);
  background: #fff9e8;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .nav,
  .inner,
  .footer-inner {
    width: min(100% - 28px, 1080px);
  }

  .nav-links a:not(.language-link) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 56px 0 72px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    width: min(270px, 70vw);
  }

  h1 {
    font-size: 56px;
  }

  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .footer-inner {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}
