:root {
  --bg: #050506;
  --bg-2: #0b0b10;
  --panel: rgba(255,255,255,.045);
  --panel-strong: rgba(255,255,255,.075);
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.24);
  --text: #f8f8fb;
  --muted: #b9bac7;
  --muted-2: #898b99;
  --purple: #a100ff;
  --purple-2: #c136ff;
  --purple-dark: #5e00cc;
  --blue: #7aa7ff;
  --green: #80ffbf;
  --warning: #ffd166;
  --max: 1180px;
  --space: clamp(48px, 7vw, 96px);
  --shadow: 0 28px 90px rgba(0,0,0,.46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 0%, rgba(161,0,255,.24), transparent 28rem),
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.06), transparent 22rem),
    linear-gradient(180deg, #050506 0%, #030304 46%, #08050b 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.42) 58%, rgba(0,0,0,.14));
}

body::after {
  content: "";
  position: fixed;
  inset: auto -20vw -38vw auto;
  width: 70vw;
  height: 70vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(161,0,255,.18), transparent 62%);
  z-index: -1;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(161,0,255,.5); color: #fff; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(860px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: var(--space) 0; position: relative; }
.section.compact { padding: clamp(36px, 5vw, 66px) 0; }
.section.border-top { border-top: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3,3,4,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.045em;
  font-size: 20px;
  white-space: nowrap;
}
.logo-mark {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: linear-gradient(135deg, #fff 0 36%, var(--purple) 36% 100%);
  clip-path: polygon(0 0, 100% 0, 42% 100%, 0 100%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 10px 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  border: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: var(--line);
  background: rgba(255,255,255,.045);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.035);
  color: #fff;
  font-weight: 840;
  letter-spacing: -.015em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.38); }
.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 20px 62px rgba(161,0,255,.24);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--purple-2), var(--purple)); box-shadow: 0 24px 70px rgba(161,0,255,.32); }
.btn-ghost { background: transparent; }
.btn-small { min-height: 40px; padding: 9px 14px; font-size: 13px; }
.btn-subtle { border-color: var(--line); color: var(--muted); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 860;
  font-size: 12px;
}
.kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--purple);
  display: inline-block;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(70px, 9vw, 118px) 0 clamp(48px, 7vw, 82px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
}
.hero-title,
.page-title,
.section-title {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero-title {
  margin-top: 22px;
  font-size: clamp(50px, 8.6vw, 112px);
  max-width: 980px;
}
.page-title { font-size: clamp(46px, 7.3vw, 96px); margin-top: 22px; }
.section-title { font-size: clamp(32px, 4.7vw, 60px); }
.line { display: block; }
.accent { color: var(--purple); }
.hero-lead {
  margin: 24px 0 0;
  max-width: 760px;
  color: #e8e8ef;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
  font-weight: 650;
}
.hero-note,
.small-note {
  color: var(--muted);
  font-size: 13px;
}
.hero-note { margin-top: 18px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-panel,
.panel,
.card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.hero-panel {
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(161,0,255,.19), transparent 22%),
    rgba(255,255,255,.052);
}
.hero-panel::before,
.card.featured::before,
.panel-topline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 46%;
  height: 4px;
  background: var(--purple);
}
.panel-label {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 840;
}
.hero-panel h2,
.panel h3 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-panel p { color: var(--muted); margin: 0; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); margin-top: 26px; }
.metric { padding: 19px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric:nth-child(2n) { border-right: none; }
.metric:nth-child(n+3) { border-bottom: none; }
.metric strong { display: block; font-size: clamp(28px, 4vw, 39px); line-height: 1; letter-spacing: -.045em; }
.metric span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; font-weight: 740; line-height: 1.45; }

.trust-band {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: 20px 0;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--muted);
  font-weight: 760;
  font-size: 14px;
}
.trust-list span::before { content: "— "; color: var(--purple); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
  margin-bottom: 40px;
}
.section-head.single {
  display: block;
  max-width: 940px;
}
.section-head.single .section-copy { margin-top: 18px; }
.section-copy {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  margin: 0;
  max-width: 760px;
}
.section-title { margin-top: 14px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
  padding: clamp(24px, 3vw, 32px);
  min-height: 100%;
  box-shadow: none;
  overflow: hidden;
}
.card:hover { border-color: rgba(255,255,255,.25); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)); }
.card.featured { background: linear-gradient(180deg, rgba(161,0,255,.17), rgba(255,255,255,.04)); border-color: rgba(161,0,255,.5); }
.card h3 { margin: 12px 0 10px; font-size: clamp(22px, 2.4vw, 29px); line-height: 1.22; letter-spacing: -.04em; text-wrap: balance; }
.card p { margin: 0; color: var(--muted); }
.card .btn { margin-top: 22px; }
.card-label,
.num {
  color: var(--purple-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 850;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: #e9e9f0;
  background: rgba(0,0,0,.18);
  font-size: 12px;
  font-weight: 760;
}

.panel {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255,255,255,.052);
}
.offer {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(340px, .62fr);
  gap: 26px;
  align-items: stretch;
}
.offer h2 { margin: 16px 0 12px; font-size: clamp(32px, 5vw, 62px); line-height: 1.06; letter-spacing: -.06em; }
.offer p { color: var(--muted); font-size: 17px; }
.price-large { font-size: clamp(38px, 6vw, 62px); line-height: 1; letter-spacing: -.055em; font-weight: 900; }
.price-large small { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; letter-spacing: normal; font-weight: 700; }
.price { margin: 18px 0; font-size: clamp(30px, 4vw, 44px); line-height: 1; letter-spacing: -.045em; font-weight: 900; }
.price small { color: var(--muted); font-size: 14px; letter-spacing: normal; font-weight: 700; }
.price-range { font-size: clamp(26px, 3.1vw, 38px); line-height: 1.08; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 5px 10px;
  background: rgba(161,0,255,.14);
  border: 1px solid rgba(161,0,255,.44);
  color: #eedcff;
  font-size: 12px;
  font-weight: 820;
}
.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  margin: 8px 0;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .74em;
  width: 9px;
  height: 9px;
  background: var(--purple);
  transform: translateY(-50%);
}

.flow { counter-reset: step; }
.flow .card { padding-top: 72px; }
.flow .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 24px;
  left: 26px;
  color: rgba(255,255,255,.18);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .72fr);
  gap: 26px;
  align-items: stretch;
}
.quote {
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(161,0,255,.13), rgba(255,255,255,.035));
  font-size: clamp(23px, 3.2vw, 38px);
  line-height: 1.4;
  letter-spacing: -.04em;
  font-weight: 860;
}
.quote cite { display: block; margin-top: 18px; font-style: normal; color: var(--muted); font-size: 14px; letter-spacing: normal; font-weight: 700; }

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}
.contact-card { padding: clamp(28px, 4vw, 42px); border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.email-box {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(161,0,255,.42);
  background: rgba(161,0,255,.105);
}
.email-box strong { display: block; font-size: 14px; color: var(--muted); }
.email-address { display: inline-block; margin-top: 4px; font-size: clamp(20px, 2.5vw, 28px); font-weight: 900; letter-spacing: -.03em; }
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
  padding: clamp(24px, 4vw, 36px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; color: #e8e8ef; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.3);
  color: #fff;
  padding: 13px 14px;
  border-radius: 0;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(161,0,255,.75); box-shadow: 0 0 0 3px rgba(161,0,255,.16); }
textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted-2); font-size: 12px; margin-top: 10px; }
.required { color: var(--purple-2); }
.phone-small { color: var(--muted-2); font-size: 12px; line-height: 1.7; }
.phone-small a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 3px; }

.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: 20px 22px;
}
summary { cursor: pointer; font-weight: 850; color: #fff; }
details p { color: var(--muted); margin: 14px 0 0; }

.page-hero { padding: clamp(70px, 9vw, 112px) 0 clamp(44px, 7vw, 82px); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr); gap: clamp(34px, 6vw, 70px); align-items: center; }
.page-lead { margin: 24px 0 0; max-width: 760px; color: #e7e7ee; font-size: clamp(18px, 2vw, 23px); line-height: 1.75; font-weight: 650; }
.breadcrumb { color: var(--muted-2); font-size: 13px; margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  background: rgba(0,0,0,.36);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
.footer p { color: var(--muted); margin: 10px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; color: var(--muted); font-size: 13px; }
.footer-contact { color: var(--muted-2); font-size: 12px; margin-top: 12px; }
.footer-contact a { color: var(--muted); }

.sticky-mail {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
}
.sticky-mail .btn { box-shadow: 0 18px 48px rgba(0,0,0,.5); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav { height: auto; min-height: 70px; flex-wrap: wrap; padding: 12px 0; }
  .mobile-menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 4px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .header-actions { margin-left: auto; }
  .hero-grid,
  .page-hero-grid,
  .offer,
  .split-panel,
  .contact-wrap,
  .section-head { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: auto; }
  .hero-panel { max-width: 620px; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .header-actions .btn-subtle { display: none; }
  .hero-title { font-size: clamp(44px, 14vw, 70px); letter-spacing: -.07em; }
  .page-title { font-size: clamp(40px, 12vw, 64px); letter-spacing: -.07em; }
  .section-title { font-size: clamp(30px, 9vw, 46px); letter-spacing: -.055em; }
  .hero-lead, .page-lead { font-size: 17px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric { border-right: none; }
  .metric:nth-child(n+3) { border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .sticky-mail { left: 14px; right: 14px; bottom: 12px; }
  .sticky-mail .btn { width: 100%; }
}


/* Profile page / profile preview */
.profile-showcase {
  position: relative;
  padding: clamp(58px, 8vw, 104px) 0 clamp(52px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.profile-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 12%, rgba(161,0,255,.16), transparent 26rem),
    radial-gradient(circle at 92% 0%, rgba(193,54,255,.18), transparent 31rem),
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 44%);
}
.profile-showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.34fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.profile-identity {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)),
    rgba(0,0,0,.32);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}
.profile-identity::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .42;
  pointer-events: none;
}
.profile-identity::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 46%;
  height: 4px;
  background: var(--purple);
}
.profile-photo-frame {
  position: relative;
  width: min(78vw, 360px);
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 999px;
  padding: 7px;
  border: 1px solid rgba(193,54,255,.52);
  background: radial-gradient(circle at 50% 40%, rgba(193,54,255,.32), rgba(0,0,0,.72) 69%);
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 10px rgba(161,0,255,.055);
  z-index: 1;
}
.profile-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: #0b0b10;
}
.profile-name-wrap {
  position: relative;
  z-index: 1;
  margin-top: clamp(22px, 3vw, 32px);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(193,54,255,.48);
}
.profile-person-name {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 940;
  white-space: nowrap;
}
.profile-person-sub {
  margin: 8px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
}
.profile-chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.profile-chip,
.profile-skill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(193,54,255,.46);
  background: rgba(0,0,0,.24);
  color: #f3e6ff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.profile-main {
  min-width: 0;
}
.profile-headline {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: -.06em;
  font-weight: 930;
  text-wrap: balance;
}
.profile-divider {
  width: 100%;
  height: 1px;
  margin: 28px 0 24px;
  background: linear-gradient(90deg, var(--purple), rgba(255,255,255,.16), transparent);
}
.profile-role-main {
  margin: 0;
  color: #e9d3ff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 890;
  line-height: 1.45;
  letter-spacing: -.02em;
}
.profile-subline {
  margin: 8px 0 0;
  color: #d9dae3;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.7;
  font-weight: 690;
}
.profile-story {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  max-width: 880px;
}
.profile-story p {
  margin: 0;
  color: #e6e6ee;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.95;
}
.profile-expertise {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px 22px;
  align-items: start;
  margin-top: 26px;
}
.profile-expertise strong {
  color: var(--purple-2);
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.profile-skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-mail-cta {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 28px;
}
.profile-mail-button {
  min-height: 58px;
  font-size: 18px;
}
.profile-mail-cta p {
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 14px;
}
.profile-message-grid .quote {
  font-size: clamp(22px, 3vw, 36px);
}
.profile-support-cards .card h3 { min-height: 2.4em; }
.profile-home-section {
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(161,0,255,.035));
}
.profile-mini-card {
  display: grid;
  grid-template-columns: minmax(220px, .48fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 10%, rgba(193,54,255,.17), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.032));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.profile-mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 4px;
  background: var(--purple);
}
.profile-mini-photo {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  min-width: 0;
}
.profile-mini-photo img {
  width: min(70vw, 210px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(193,54,255,.58);
  padding: 5px;
  background: rgba(0,0,0,.32);
  box-shadow: 0 18px 54px rgba(0,0,0,.46);
}
.profile-mini-photo h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.profile-mini-photo p {
  margin: 4px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.profile-mini-content h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.profile-mini-content p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.85;
  max-width: 820px;
}
.profile-mini-content .tag-row {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .profile-showcase-grid,
  .profile-mini-card {
    grid-template-columns: 1fr;
  }
  .profile-identity {
    max-width: 560px;
    margin-inline: auto;
  }
  .profile-mail-cta {
    grid-template-columns: 1fr;
  }
  .profile-mail-cta p {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 680px) {
  .profile-showcase {
    padding-top: 48px;
  }
  .profile-identity {
    padding: 22px 16px 24px;
  }
  .profile-person-name {
    font-size: clamp(34px, 12vw, 48px);
    white-space: normal;
  }
  .profile-person-sub {
    letter-spacing: .12em;
  }
  .profile-headline {
    font-size: clamp(32px, 10vw, 48px);
    letter-spacing: -.055em;
  }
  .profile-expertise {
    grid-template-columns: 1fr;
  }
  .profile-mail-button {
    width: 100%;
  }
  .profile-mini-card {
    padding: 22px 16px 24px;
  }
  .profile-mini-content h2 {
    font-size: clamp(30px, 9vw, 44px);
  }
}


/* Provider page typography tuning */
.providers-page .page-hero-grid {
  grid-template-columns: minmax(0, .96fr) minmax(360px, .72fr);
}
.providers-page .provider-hero-title {
  font-size: clamp(48px, 6.45vw, 88px);
  line-height: 1.09;
  letter-spacing: -.055em;
  max-width: 760px;
}
.providers-page .provider-hero-title .line,
.providers-page .provider-panel-title .line {
  display: block;
  white-space: nowrap;
}
.providers-page .provider-lead {
  max-width: 720px;
  line-height: 1.9;
  letter-spacing: .005em;
}
.providers-page .hero-panel {
  padding: clamp(30px, 4vw, 46px);
}
.providers-page .hero-panel h2 {
  font-size: clamp(30px, 3.25vw, 44px);
  line-height: 1.22;
  letter-spacing: -.045em;
}
.providers-page .hero-panel p,
.providers-page .check-list li {
  line-height: 1.85;
}
@media (max-width: 980px) {
  .providers-page .page-hero-grid { grid-template-columns: 1fr; }
  .providers-page .provider-hero-title { max-width: 680px; }
  .providers-page .hero-panel { max-width: 640px; }
}
@media (max-width: 680px) {
  .providers-page .provider-hero-title {
    font-size: clamp(38px, 11.3vw, 58px);
    line-height: 1.12;
  }
  .providers-page .provider-hero-title .line,
  .providers-page .provider-panel-title .line {
    white-space: normal;
  }
  .providers-page .provider-lead br { display: none; }
}
