:root {
  --navy-900: #1a1c3b;
  --navy-800: #252850;
  --violet-600: #5459bb;
  --violet-500: #676bd0;
  --lime-400: #d2da73;
  --lime-300: #e3e99b;
  --warm-50: #f6f6f4;
  --warm-100: #ecece7;
  --white: #ffffff;
  --error: #b72f3f;
  --success: #2f5940;
  --text-primary: var(--navy-900);
  --text-muted: #5f6175;
  --surface: var(--warm-50);
  --surface-strong: var(--white);
  --action: var(--lime-400);
  --action-hover: #e0e88a;
  --border: rgba(26, 28, 59, 0.18);
  --shadow-soft: 0 24px 70px rgba(20, 22, 49, 0.13);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --container: 1328px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--surface);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

button, input { font: inherit; }

button { cursor: pointer; }

.site-header {
  width: min(calc(100% - 64px), var(--container));
  height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: block;
  width: 148px;
  line-height: 0;
}

.brand img { width: 100%; height: auto; }

.header-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.header-link:hover { background: var(--lime-300); border-color: transparent; }
.header-link:active { transform: translateY(1px); }
.header-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--violet-600); outline-offset: 3px; }

.hero {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
  padding: clamp(44px, 4.5vw, 64px) clamp(28px, 4vw, 64px) clamp(28px, 3vw, 42px);
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: 36px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -9% -34% auto;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(210, 218, 115, .24);
  box-shadow: 0 0 0 70px rgba(84, 89, 187, .08), 0 0 0 140px rgba(84, 89, 187, .05);
  z-index: -1;
}

.hero-copy { align-self: center; padding-bottom: var(--space-5); }
.hero-copy > h1:first-child { margin-top: 0; }

.eyebrow {
  margin: 0 0 var(--space-5);
  color: inherit;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--lime-400); }

h1, h2, h3, p { overflow-wrap: break-word; }

h1 {
  margin: 0;
  max-width: 770px;
  font-size: clamp(43px, 4.45vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 650;
}

h1 span { color: var(--lime-400); }

.hero-lead {
  max-width: 690px;
  margin: var(--space-5) 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: var(--space-3);
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  max-width: 610px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 550;
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: .45em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime-400);
}

.hero-stage { min-height: 540px; position: relative; }

.hero-media {
  margin: 0;
  width: calc(100% + 64px);
  height: 100%;
  min-height: 540px;
  border-radius: 180px 0 0 24px;
  overflow: hidden;
  position: absolute;
  inset: 0 -64px 0 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(26,28,59,.08), transparent 45%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.catalog-sheet {
  position: absolute;
  right: clamp(-12px, 1vw, 18px);
  bottom: 26px;
  width: min(41%, 220px);
  aspect-ratio: .72;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--navy-900);
  background: var(--lime-400);
  border-radius: 4px 24px 4px 4px;
  box-shadow: var(--shadow-soft);
  transform: rotate(2.8deg);
}

.catalog-sheet span { font-size: 12px; font-weight: 750; }
.catalog-sheet strong { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.03; letter-spacing: -.04em; }

.form-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(420px, 1.4fr) minmax(280px, .9fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.18);
}

.form-heading { display: grid; gap: var(--space-3); }
.form-step { margin: 0; color: var(--lime-400); font-size: 13px; font-weight: 750; letter-spacing: .08em; }
.form-heading h2 { margin: 0; font-size: clamp(22px, 2vw, 31px); line-height: 1.08; letter-spacing: -.03em; }

.lead-form { display: grid; grid-template-columns: minmax(0, 1fr) minmax(215px, .72fr); gap: var(--space-3); align-items: start; }
.form-control { position: relative; }
.form-control label { display: block; margin: 0 0 var(--space-2); font-size: 13px; font-weight: 650; }

.form-control input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--navy-900);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 17px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.form-control input:hover { border-color: rgba(84,89,187,.35); }
.form-control input:focus { border-color: var(--lime-400); box-shadow: 0 0 0 4px rgba(210,218,115,.18); outline: none; }
.form-control input[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 4px rgba(183,47,63,.12); }

.lead-form > button[type="submit"] {
  grid-column: 2;
  grid-row: 1;
  min-height: 58px;
  margin-top: 27px;
  padding: 0 20px;
  color: var(--navy-900);
  background: var(--action);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 750;
  transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.lead-form > button[type="submit"]:hover:not(:disabled) { background: var(--action-hover); box-shadow: 0 8px 25px rgba(210,218,115,.2); }
.lead-form > button[type="submit"]:active:not(:disabled) { transform: translateY(1px); }
.lead-form > button[type="submit"]:disabled { cursor: wait; }
.lead-form.is-loading > button[type="submit"]:disabled { cursor: wait; filter: none; opacity: .8; }
.button-loading { display: none; align-items: center; justify-content: center; gap: var(--space-2); }
.lead-form.is-loading .button-label { display: none; }
.lead-form.is-loading .button-loading { display: inline-flex; }

.spinner { width: 18px; height: 18px; border: 2px solid rgba(26,28,59,.3); border-top-color: var(--navy-900); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.field-error { min-height: 38px; margin: var(--space-2) 0 0; color: #ffb9c1; font-size: 13px; line-height: 1.35; }
.form-note { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.45; }
.consent-control {
  grid-column: 1 / -1;
  min-height: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 6px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.4;
}

.consent-control > input {
  width: 20px;
  height: 20px;
  margin: 0 4px 0 0;
  accent-color: var(--lime-400);
  flex: 0 0 auto;
}

.consent-control > label { cursor: pointer; }
.consent-control.is-error {
  padding: 8px 10px;
  margin: -8px -10px;
  background: rgba(183,47,63,.14);
  border-radius: 10px;
  outline: 2px solid var(--error);
  outline-offset: 1px;
}
.consent-control.is-error > input { outline: 2px solid #ffb9c1; outline-offset: 2px; }
.policy-open {
  min-height: 28px;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font: inherit;
  cursor: pointer;
}
.policy-open:hover { color: var(--lime-400); }
.consent-error { flex-basis: 100%; min-height: 0; margin: 0 0 0 30px; color: #ffb9c1; font-size: 12px; }

.form-success { display: none; grid-column: 1 / -1; align-items: flex-start; gap: var(--space-3); padding: 18px; color: var(--navy-900); background: var(--lime-400); border-radius: var(--radius-sm); }
.form-success p { margin: 0; font-size: 14px; line-height: 1.45; font-weight: 550; }
.success-mark { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 auto; color: var(--white); background: var(--success); border-radius: 50%; font-size: 16px; font-weight: 750; }
.lead-form.is-success > :not(.form-success) { display: none; }
.lead-form.is-success .form-success { display: flex; }

.disclaimer { margin: 28px 0 0; padding-left: 18px; color: rgba(255,255,255,.62); border-left: 2px solid var(--lime-400); font-size: 12px; line-height: 1.5; }

.catalog {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 170px) 0;
}

.catalog-intro {
  display: grid;
  grid-template-columns: 82px minmax(0, 860px);
  gap: clamp(24px, 4vw, 64px);
  margin-left: clamp(0px, 7vw, 104px);
}

.chapter-number { margin: 4px 0 0; color: var(--violet-600); font-size: 13px; line-height: 1; font-weight: 750; letter-spacing: .08em; }
.catalog-intro .eyebrow { color: var(--violet-600); }
.catalog h2, .confidence h2, .final-cta h2 { margin: 0; font-size: clamp(38px, 5vw, 68px); line-height: 1.02; letter-spacing: -.052em; font-weight: 650; }
.catalog-intro > div > p:last-child { max-width: 720px; margin: var(--space-6) 0 0; color: var(--text-muted); font-size: clamp(17px, 1.5vw, 20px); }

.catalog-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  margin-top: clamp(64px, 9vw, 112px);
}

.catalog-visual { min-height: 650px; position: relative; }
.page { position: absolute; box-shadow: var(--shadow-soft); overflow: hidden; }
.page-back { inset: 0 auto auto 3%; width: 65%; aspect-ratio: .74; padding: 28px; color: var(--white); background: var(--violet-600); transform: rotate(-5deg); }
.page-back > span { position: relative; z-index: 2; font-size: 12px; font-weight: 750; }
.page-crop { position: absolute; inset: 23% -18% -8% 24%; background: url("assets/concept-kitchen-hero.png") 58% center / cover no-repeat; border-radius: 180px 0 0 0; }
.page-front { inset: 8% 3% auto auto; width: 61%; aspect-ratio: .74; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--navy-900); background: var(--lime-400); transform: rotate(4deg); }
.page-front::before { content: ""; position: absolute; inset: 18px 18px auto auto; width: 11px; height: 11px; background: var(--violet-600); border-radius: 50%; }
.page-front p { margin: 0 0 28px; font-size: clamp(26px, 3vw, 42px); line-height: .98; letter-spacing: -.05em; font-weight: 650; }
.page-front span { font-size: 13px; font-weight: 750; }
.page-photo { position: absolute; inset: 0 0 52% 0; background: url("assets/concept-kitchen-hero.png") 62% 55% / cover no-repeat; mix-blend-mode: multiply; opacity: .82; }

.catalog-list { margin: 0; }
.catalog-list > div { display: grid; grid-template-columns: minmax(140px, .68fr) minmax(0, 1.1fr); gap: var(--space-6); padding: 25px 0; border-top: 1px solid var(--border); }
.catalog-list > div:last-child { border-bottom: 1px solid var(--border); }
.catalog-list dt { font-size: 18px; line-height: 1.25; font-weight: 700; }
.catalog-list dd { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.55; }

.confidence {
  padding: clamp(100px, 10vw, 156px) max(32px, calc((100vw - var(--container)) / 2 + 64px));
  color: var(--white);
  background: var(--violet-600);
}

.confidence-head { display: grid; grid-template-columns: 82px minmax(0, 980px); gap: clamp(24px, 4vw, 64px); }
.confidence .chapter-number, .confidence .eyebrow { color: var(--lime-400); }
.confidence-head h2 { max-width: 980px; }

.confidence-grid {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(470px, 1.18fr);
  gap: clamp(56px, 9vw, 140px);
  margin-top: clamp(64px, 8vw, 108px);
  align-items: start;
}

.precision { position: sticky; top: 32px; }
.precision-value { display: block; color: var(--lime-400); font-size: clamp(112px, 16vw, 224px); line-height: .72; letter-spacing: -.08em; font-weight: 650; }
.precision-value small { font-size: .35em; vertical-align: top; letter-spacing: -.03em; }
.precision > p { max-width: 560px; margin: var(--space-7) 0 0; color: rgba(255,255,255,.88); font-size: 18px; }
.precision-note { padding: var(--space-5); color: rgba(255,255,255,.72) !important; background: rgba(26,28,59,.22); border-radius: var(--radius-sm); font-size: 13px !important; line-height: 1.55; }

.process-list { list-style: none; padding: 0; margin: 0; counter-reset: process; }
.process-list li { display: grid; grid-template-columns: 56px 1fr; gap: var(--space-5); padding: 26px 0; border-top: 1px solid rgba(255,255,255,.24); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.24); }
.process-list span { color: var(--lime-400); font-size: 13px; font-weight: 750; }
.process-list p { margin: 0; font-size: clamp(19px, 2vw, 27px); line-height: 1.25; letter-spacing: -.025em; font-weight: 550; }

.final-cta {
  width: min(calc(100% - 64px), 1120px);
  margin: clamp(32px, 5vw, 72px) auto;
  padding: clamp(54px, 6vw, 76px);
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: end;
  position: relative;
  overflow: hidden;
}

.final-cta::after { content: ""; position: absolute; width: 300px; aspect-ratio: 1; right: -160px; top: -160px; background: var(--violet-600); border-radius: 50%; opacity: .55; }
.final-copy { position: relative; z-index: 1; }
.final-copy .chapter-number { margin-bottom: var(--space-7); color: var(--lime-400); }
.final-copy h2 { max-width: 790px; }
.final-copy h2 span { display: block; }
.final-copy h2 { font-size: clamp(34px, 3vw, 42px); line-height: 1.04; letter-spacing: -.045em; }

@media (min-width: 1051px) {
  .final-copy h2 span { white-space: nowrap; }
}
.final-copy > p:last-child { max-width: 650px; margin: var(--space-6) 0 0; color: rgba(255,255,255,.72); font-size: 18px; }
.final-form-panel { position: relative; z-index: 1; padding: var(--space-6); color: var(--navy-900); background: var(--white); border-radius: var(--radius-md); }
.final-form-panel h3 { margin: 0 0 var(--space-6); font-size: 25px; line-height: 1.1; letter-spacing: -.03em; }
.lead-form-final { grid-template-columns: 1fr; }
.lead-form-final > button[type="submit"] { grid-column: 1; grid-row: auto; margin-top: 0; }
.lead-form-final .field-error { color: var(--error); }
.lead-form-final .consent-control { color: var(--text-muted); }
.lead-form-final .consent-error { color: var(--error); }
.lead-form-final .form-success { background: var(--lime-300); }
.final-form-panel .disclaimer { margin: var(--space-5) 0 0; color: var(--text-muted); border-left-color: var(--violet-600); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stage { min-height: 500px; }
  .hero-media { min-height: 500px; width: calc(100% + 64px); }
  .form-panel { grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr); }
  .form-panel > .disclaimer { grid-column: 2; margin-top: -12px; }
  .catalog-body { grid-template-columns: 1fr; }
  .catalog-visual { min-height: 610px; width: min(720px, 88%); margin: 0 auto; }
  .catalog-list { width: min(760px, 100%); margin-left: auto; }
  .confidence-grid { grid-template-columns: 1fr; }
  .precision { position: static; display: grid; grid-template-columns: minmax(260px, .7fr) 1fr; gap: 32px; align-items: start; }
  .precision > p { margin-top: 0; }
  .precision-note { grid-column: 2; }
  .final-cta { grid-template-columns: 1fr; }
  .final-form-panel { max-width: 620px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header { width: calc(100% - 32px); height: 76px; }
  .brand { width: 126px; }
  .header-link { min-height: 44px; padding: 0 15px; font-size: 12px; }
  .hero { width: calc(100% - 16px); padding: 38px 20px 24px; border-radius: 24px; row-gap: 30px; }
  .hero::before { display: none; }
  h1 { font-size: clamp(39px, 11.5vw, 50px); line-height: 1; letter-spacing: -.055em; }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-points { margin-top: 28px; }
  .hero-points li { font-size: 14px; }
  .hero-stage { min-height: 370px; margin: 0 -20px; order: 3; }
  .hero-media { inset: 0; width: 100%; min-height: 370px; border-radius: 82px 0 0 20px; }
  .hero-media img { object-position: 57% center; }
  .catalog-sheet { right: 12px; bottom: 14px; width: 36%; padding: 14px; border-radius: 3px 16px 3px 3px; }
  .catalog-sheet strong { font-size: 14px; }
  .form-panel { grid-template-columns: 1fr; padding-top: 24px; order: 2; }
  .form-heading { grid-template-columns: 34px 1fr; gap: 8px; align-items: baseline; }
  .form-heading h2 { font-size: 24px; }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form > button[type="submit"] { grid-column: 1; grid-row: auto; margin-top: 0; min-height: 56px; }
  .form-panel > .disclaimer { grid-column: 1; margin-top: 0; }
  .catalog { width: calc(100% - 32px); padding: 96px 0; }
  .catalog-intro { grid-template-columns: 32px minmax(0, 1fr); gap: 12px; margin-left: 0; }
  .catalog h2, .confidence h2, .final-cta h2 { font-size: clamp(35px, 10.2vw, 44px); line-height: 1.04; }
  .catalog-intro > div > p:last-child { margin-top: 24px; font-size: 16px; }
  .catalog-body { margin-top: 56px; gap: 58px; }
  .catalog-visual { min-height: 430px; width: 100%; }
  .page-back { width: 68%; padding: 18px; }
  .page-front { width: 65%; padding: 18px; }
  .page-front p { margin-bottom: 18px; font-size: 26px; }
  .catalog-list > div { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .catalog-list dt { font-size: 19px; }
  .catalog-list dd { font-size: 15px; }
  .confidence { padding: 92px 20px 24px; }
  .confidence-head { grid-template-columns: 32px minmax(0, 1fr); gap: 12px; }
  .confidence-grid { margin-top: 56px; gap: 64px; }
  .precision { display: block; }
  .precision-value { font-size: 128px; }
  .precision > p { margin-top: 32px; font-size: 17px; }
  .precision-note { margin-top: 24px !important; }
  .process-list li { grid-template-columns: 38px 1fr; gap: 12px; padding: 22px 0; }
  .process-list p { font-size: 20px; }
  .final-cta { width: calc(100% - 16px); margin: 8px auto; padding: 76px 20px 20px; border-radius: 24px; gap: 52px; }
  .final-copy .chapter-number { margin-bottom: 28px; }
  .final-copy h2 { font-size: clamp(25px, 6.8vw, 27px); line-height: 1.08; }
  .final-copy h2 span { white-space: nowrap; }
  .final-copy > p:last-child { font-size: 16px; }
  .final-form-panel { padding: 22px 16px; border-radius: 18px; }
  .final-form-panel h3 { font-size: 23px; }
}

@media (max-width: 420px) {
  .site-header { gap: 10px; }
  .brand { width: 108px; }
  .header-link { max-width: 154px; justify-content: center; text-align: center; line-height: 1.15; }
  .hero { padding-inline: 18px; }
  h1 { font-size: clamp(32px, 8.6vw, 34px); line-height: 1.03; letter-spacing: -.045em; }
  .hero-points li { font-size: 13px; }
  .hero-stage { margin-inline: -18px; }
  .catalog-sheet { width: 38%; }
  .catalog-visual { min-height: 390px; }
  .page-front p { font-size: 23px; }
  .precision-value { font-size: 116px; }
}

.policy-dialog {
  width: min(calc(100% - 32px), 620px);
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  color: var(--navy-900);
  background: var(--warm-50);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 100px rgba(10, 12, 34, .32);
}

.policy-dialog::backdrop { background: rgba(12, 14, 38, .72); backdrop-filter: blur(4px); }
.policy-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.policy-dialog-head h2 { margin: 0; font-size: clamp(26px, 4vw, 36px); line-height: 1.05; letter-spacing: -.04em; }
.policy-close { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; padding: 0; color: var(--navy-900); background: var(--white); border: 1px solid var(--border); border-radius: 50%; font-size: 28px; line-height: 1; cursor: pointer; }
.policy-close:hover { background: var(--lime-300); }
.policy-dialog-body { padding: 24px 28px 30px; overflow: auto; }
.policy-dialog-body > p { margin: 0; font-weight: 650; }
.policy-dialog-body ul { margin: 20px 0 26px; padding-left: 22px; color: var(--text-muted); }
.policy-dialog-body li + li { margin-top: 12px; }
.policy-dialog-body a { color: var(--violet-600); }
.policy-full { min-height: 48px; display: inline-flex; align-items: center; padding: 0 20px; color: var(--white) !important; background: var(--violet-600); border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none; }
.policy-full:hover { background: var(--navy-900); }

@media (max-width: 520px) {
  .policy-dialog-head { padding: 22px 18px 16px; }
  .policy-dialog-body { padding: 20px 18px 24px; }
  .policy-dialog-head h2 { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
