:root {
  --ink: #16141c;
  --ink-soft: #5e5a66;
  --paper: #f7f5f0;
  --paper-bright: #fffefd;
  --line: #ded9d1;
  --violet: #7957ff;
  --violet-dark: #5837df;
  --coral: #ff6a65;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.site-header {
  align-items: center;
  background: #121018;
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 80px;
  padding: 16px clamp(24px, 6vw, 88px);
}
.brand { align-items: center; display: inline-flex; gap: 12px; text-decoration: none; }
.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  border-radius: 9px 2px 9px 2px;
  display: inline-flex;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  letter-spacing: -.05em;
  transform: rotate(-3deg);
  width: 38px;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; letter-spacing: .01em; }
.brand small { color: #a9a5b2; font-size: 11px; margin-top: 2px; }
.contact-link {
  border: 1px solid #3d3945;
  border-radius: 999px;
  color: #e7e3ed;
  font-size: 13px;
  padding: 9px 16px;
  text-decoration: none;
}
.contact-link:hover, .contact-link:focus-visible { background: #27232f; border-color: #625b6e; }
.hero {
  background: linear-gradient(180deg, rgba(18,16,24,0), #121018), #121018;
  color: #fff;
  min-height: 430px;
  overflow: hidden;
  padding: 64px clamp(24px, 6vw, 88px) 90px;
  position: relative;
}
.hero-content { margin: 0 auto; max-width: 1160px; position: relative; z-index: 1; }
.hero-glow { border-radius: 50%; opacity: .55; position: absolute; }
.hero-glow-one {
  background: radial-gradient(circle, rgba(121,87,255,.55), transparent 68%);
  height: 520px; right: -90px; top: -200px; width: 520px;
}
.hero-glow-two {
  background: radial-gradient(circle, rgba(255,106,101,.24), transparent 70%);
  bottom: -320px; height: 500px; left: -100px; width: 500px;
}
.eyebrow {
  color: #bbaaff;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .17em;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 620;
  letter-spacing: -.065em;
  line-height: .95;
  margin: 0;
  max-width: 780px;
}
.hero-copy {
  color: #c5c0ce;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  margin: 32px 0 0;
  max-width: 680px;
}
.updated {
  color: #827d8b;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .04em;
  margin: 28px 0 0;
}
.page-shell { margin: 0 auto; max-width: 1160px; padding: 0 clamp(20px, 5vw, 64px) 120px; }
.highlights {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: -42px 0 72px;
  position: relative;
  z-index: 2;
}
.highlight-card {
  background: var(--paper-bright);
  border: 1px solid var(--line);
  display: flex;
  gap: 16px;
  min-height: 170px;
  padding: 30px;
}
.highlight-card:first-child { border-radius: 15px 0 0 15px; }
.highlight-card:last-child { border-radius: 0 15px 15px 0; }
.highlight-card h2 { font-size: 16px; margin: 2px 0 10px; }
.highlight-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0; }
.check {
  align-items: center;
  background: #eee9ff;
  border-radius: 50%;
  color: var(--violet-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.policy { margin: 0 auto; max-width: 860px; }
.policy > section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: 52px minmax(0, 1fr);
  padding: 54px 0 58px;
}
.section-number {
  color: #96909e;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  margin: 8px 0 0;
}
.policy h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -.045em;
  margin: 0 0 24px;
}
.policy h3 { font-size: 17px; margin: 34px 0 14px; }
.policy p, .policy li { color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.policy p { margin: 0 0 18px; }
.policy strong { color: var(--ink); font-weight: 620; }
.policy ul { display: grid; gap: 10px; list-style: none; margin: 20px 0 24px; padding: 0; }
.policy li {
  align-items: center;
  background: #eeebe5;
  border-radius: 8px;
  display: flex;
  padding: 11px 14px;
}
.policy li::before {
  background: var(--violet);
  border-radius: 50%;
  content: "";
  height: 5px;
  margin-right: 12px;
  width: 5px;
}
.contact-section { border-bottom: 1px solid var(--line); }
.email-button {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  margin-top: 10px;
  padding: 13px 18px;
  text-decoration: none;
}
.email-button:hover, .email-button:focus-visible { background: var(--violet-dark); }
footer {
  align-items: center;
  background: #121018;
  color: #8b8593;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 30px clamp(24px, 6vw, 88px);
}
footer p { margin: 0; }
:focus-visible { outline: 3px solid #c7baff; outline-offset: 3px; }
@media (max-width: 760px) {
  .site-header { min-height: 72px; }
  .hero { min-height: 390px; padding-top: 54px; }
  .highlights { grid-template-columns: 1fr; margin-bottom: 48px; }
  .highlight-card { min-height: auto; padding: 24px; }
  .highlight-card:first-child { border-radius: 15px 15px 0 0; }
  .highlight-card:last-child { border-radius: 0 0 15px 15px; }
  .policy > section { gap: 14px; grid-template-columns: 1fr; padding: 42px 0 46px; }
  .section-number { margin: 0; }
  footer { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
