:root {
  --pink: #fc91a0;
  --pink-dark: #aa4f5c;
  --pink-soft: #faecef;
  --pink-bg: #fff6f7;
  --ink: #2e1a24;
  --muted: #735f69;
  --line: rgba(170, 79, 92, 0.16);
  --shadow: 0 24px 70px rgba(170, 79, 92, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(252, 145, 160, 0.24), transparent 34rem),
    radial-gradient(circle at bottom left, rgba(170, 79, 92, 0.12), transparent 32rem),
    var(--pink-bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 246, 247, 0.82);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-logo {
  width: 160px;
  height: auto;
  display: block;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover,
.back-link:hover {
  color: var(--pink-dark);
}

.page {
  padding: 54px 0 64px;
}

.hero {
  margin-bottom: 28px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--pink-dark);
  font-weight: 800;
  font-size: 13px;
}

h1 {
  margin: 22px 0 16px;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-note {
  max-width: 780px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.card p,
.checklist li {
  color: var(--muted);
}

.checklist {
  margin: 0 0 22px;
  padding-left: 20px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(170, 79, 92, 0.42);
  box-shadow: 0 0 0 4px rgba(252, 145, 160, 0.14);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.field-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.field-checkbox label {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--pink);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(170, 79, 92, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

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

.submit-button:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.success {
  color: #1c6b45;
}

.form-status.error {
  color: #a02c49;
}

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

  .page {
    padding-top: 30px;
  }

  .card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .nav-inner {
    min-height: 64px;
  }

  .brand-logo {
    width: 132px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 54px);
  }
}
