:root {
  --purple: #7a35f2;
  --purple-dark: #6628dc;
  --purple-soft: #f3edff;
  --orange: #f5790b;
  --green: #08a678;
  --red: #c91f2e;
  --ink: #171717;
  --muted: #696565;
  --surface: #f4f2f2;
  --card: #ffffff;
  --line: #e8e4e4;
  --shadow: 0 10px 30px rgba(46, 25, 72, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.app-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, var(--purple) 0%, #8237f4 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(64, 24, 121, 0.18);
}

.app-bar__inner {
  width: min(940px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-bar__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 5px 14px rgba(42, 14, 83, 0.25);
}

.app-bar__eyebrow {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .82;
}

.app-bar h1 {
  margin: 0;
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1.15;
  font-weight: 700;
}

.page {
  width: min(940px, calc(100% - 32px));
  margin: 30px auto 64px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 42px);
  background: linear-gradient(145deg, #f4f0f0 0%, #fafafa 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -95px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,53,242,.18), rgba(122,53,242,0) 70%);
}

.hero__label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 690px;
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.hero p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 16px 0 0;
  color: #4f4a4a;
  font-size: 17px;
  line-height: 1.7;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7e1e1;
  color: #514c4c;
  font-size: 14px;
  font-weight: 650;
}

.meta-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.policy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.section-card {
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 6px 22px rgba(32, 22, 43, 0.045);
}

.section-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.3;
}

.section-card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 26px;
  border-radius: 999px;
  background: var(--purple);
}

.section-card p {
  margin: 0;
  color: #5f5a5a;
  font-size: 16px;
  line-height: 1.72;
}

.section-card p + p { margin-top: 12px; }

.section-card--accent {
  background: linear-gradient(180deg, var(--purple-soft), #fff 78%);
  border-color: #ddd0fb;
}

.section-card--contact {
  background: #f7f5f5;
}

.mail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  padding: 13px 20px;
  border-radius: 18px;
  background: linear-gradient(90deg, #7430ee, #8537f3);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(122,53,242,.22);
  transition: transform .15s ease, box-shadow .15s ease;
}

.mail-button:hover,
.mail-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(122,53,242,.28);
}

.mail-button:focus-visible {
  outline: 3px solid rgba(245,121,11,.5);
  outline-offset: 3px;
}

.footer {
  margin-top: 26px;
  padding: 20px 8px 0;
  text-align: center;
  color: #817b7b;
  font-size: 13px;
  line-height: 1.6;
}

.footer strong { color: #4f4949; }

@media (max-width: 600px) {
  .app-bar__inner,
  .page { width: min(100% - 24px, 940px); }
  .app-bar__inner { min-height: 70px; }
  .app-bar__icon { width: 42px; height: 42px; border-radius: 12px; }
  .page { margin-top: 18px; margin-bottom: 42px; }
  .hero { border-radius: 22px; }
  .section-card { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
