:root {
  --teal: #8b1238;
  --teal-dark: #90123d;
  --teal-soft: #fdf2f5;
  --gold: #e8a31a;
  --gold-dark: #c48a12;
  --gold-soft: #fff6de;
  --brand-grad: linear-gradient(90deg, #90123d, #8b1238 52%, #e8a31a);
  --brand-grad-hover: linear-gradient(90deg, #4a0b20, #6e0f2c 52%, #c48a12);
  --ink: #1a1a1a;
  --muted: #5b6472;
  --line: #efe6e0;
  --bg: #fffcf8;
  --white: #fff;
  --amber: #e8a31a;
  --good: #059669;
  --bad: #dc2626;
  --shadow: 0 12px 40px rgba(139, 18, 56, .08);
  --radius: 16px;
  --font: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #fdf2f5;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #90123d, #e8a31a);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6e0f2c, #c48a12);
}
::-webkit-scrollbar-corner {
  background: #fdf2f5;
}
@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: #90123d #fdf2f5;
  }
}
a { color: var(--teal); text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1320px, calc(100% - 32px)); margin-inline: auto; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
}
.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: rgba(139, 18, 56, .08);
  pointer-events: none;
  overflow: hidden;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--brand-grad);
  will-change: transform;
}

.nav {
  position: relative;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(139, 18, 56, .06);
  transition: box-shadow .2s, background .2s;
}
.nav::after {
  display: none;
}
.nav-bar {
  background: #90123d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  border-top: 4px solid #f6ae0a;
}
.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-bar .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 52px;
  width: 100%;
  flex-wrap: nowrap;
}
.nav-bar .nav-links a,
.nav-bar .nav-drop-toggle {
  color: rgba(255, 255, 255, .88);
  background: transparent;
  box-shadow: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .15s, color .15s, box-shadow .15s;
}
.nav-bar .nav-links a:hover,
.nav-bar .nav-drop:hover .nav-drop-toggle,
.nav-bar .nav-drop:focus-within .nav-drop-toggle,
.nav-bar .nav-drop.is-open .nav-drop-toggle {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  box-shadow: none;
}
.nav-bar .nav-links a.nav-create-cta {
  color: #5e0e28;
  background: #f6ae0a;
  font-weight: 800;
  animation: nav-cta-blink .9s step-end infinite;
}
.nav-bar .nav-links a.nav-create-cta:hover,
.nav-bar .nav-links a.nav-create-cta.is-active {
  animation: none;
  color: #5e0e28;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 12, 28, .18);
}
@keyframes nav-cta-blink {
  0%, 49% {
    background: #f6ae0a;
    color: #5e0e28;
    box-shadow: 0 6px 16px rgba(246, 174, 10, .35);
  }
  50%, 100% {
    background: #fff;
    color: #90123d;
    box-shadow: 0 6px 16px rgba(255, 255, 255, .18);
  }
}
.nav-bar .nav-drop-menu a {
  color: var(--muted);
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 12px;
}
.nav-bar .nav-drop-menu a:hover,
.nav-bar .nav-drop-menu a.is-active {
  color: var(--teal-dark);
  background: #fdf2f5;
  box-shadow: none;
}
.site-head.is-scrolled .nav {
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(139, 18, 56, .08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 18px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  min-width: 0;
  flex: 0 1 auto;
}

.nav .brand-mark {
  width: auto;
  height: auto;
  max-width: min(250px, 42vw);
  overflow: hidden;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-mark.has-logo {
  /* background: #fff;
  box-shadow: 0 0 0 1px var(--line), 0 8px 18px rgba(139, 18, 56, .12);
  padding: 4px;
  overflow: hidden; */
}
.brand-mark.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav .brand-mark.has-logo img {
  object-position: left center;
}
.footer .brand-mark.has-logo {
  background: #fff;
  width: 250px;
  padding: 10px;
  border-radius: 10px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-copy strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #fffcf8;
  border: 1px solid #e8eef0;
  border-radius: 999px;
}
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}
.nav-links-extra { display: none; }
.nav-drop {
  position: relative;
}
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  font-family: inherit;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-drop-toggle svg {
  width: 12px;
  height: 12px;
  flex: none;
  transition: transform .18s;
}
.nav-drop:hover .nav-drop-toggle,
.nav-drop:focus-within .nav-drop-toggle,
.nav-drop.is-active .nav-drop-toggle,
.nav-drop.is-open .nav-drop-toggle {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 80;
  flex-direction: column;
  gap: 2px;
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: -1;
}
.nav-drop.is-end .nav-drop-menu {
  left: auto;
  right: 0;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu {
  display: flex;
}
.nav-drop.is-open .nav-drop-toggle svg,
.nav-drop:hover .nav-drop-toggle svg { transform: rotate(180deg); }
.nav-drop-menu a {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin: 0 8px;
  white-space: nowrap;
}
.nav-drop-menu a:first-of-type { margin-top: 8px; }
.nav-drop-menu a:last-of-type { margin-bottom: 8px; }
@media (max-width: 1480px) {
  .nav-bar .nav-links a,
  .nav-bar .nav-drop-toggle { padding: 7px 10px; font-size: 12.5px; }
}
@media (max-width: 1200px) {
  .nav-bar .nav-links a,
  .nav-bar .nav-drop-toggle { padding: 7px 9px; font-size: 12px; }
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  padding: 5px 14px 5px 5px;
  border: 1px solid #f3d6dc;
  border-radius: 999px;
  background: #fffcf8;
  flex: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.nav-call:hover {
  border-color: #f0c14b;
  background: #fff;
  box-shadow: 0 8px 18px rgba(139, 18, 56, .1);
  color: var(--ink);
}
.nav-call-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #90123d;
  color: #fff;
  flex: none;
}
.nav-call-ico svg { width: 16px; height: 16px; }
.nav-call-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.nav-call-meta small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-call-meta strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--teal-dark);
  white-space: nowrap;
}
.btn-sm-nav { padding: 10px 16px; font-size: 13px; }
.user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.user-chip-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, #90123d, #e8a31a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.user-chip-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.user-chip-meta strong { font-size: 12.5px; color: var(--ink); }
.user-chip-meta small { font-size: 10.5px; color: var(--muted); text-transform: capitalize; }
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 11px 20px; font-weight: 700;
  cursor: pointer; font-family: inherit; font-size: 14px;
}
.btn-primary { background: #90123d; color: #fff; box-shadow: 0 10px 24px rgba(139, 18, 56, 0.22); }
.btn-primary:hover { background: #f6ae0a; color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { background: var(--teal-soft); color: var(--teal-dark); }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-amber { background: var(--amber); color: #111; }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-light { background: #fff; color: var(--teal-dark); }
.btn-light:hover { background: #fffcf8; }
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }
.hero {
  position: relative;
  padding: 64px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 90% -10%, #fce8ee 0%, transparent 55%),
    linear-gradient(#fff, #f8fafc);
}
.kicker {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--teal-soft); color: var(--teal-dark);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
}
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.12; margin: 16px 0 12px; letter-spacing: -.03em; }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 640px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.pill { background: #fff; border: 1px solid var(--line); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.stat b { display: block; font-size: 26px; }
.stat span { color: var(--muted); font-size: 13px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 8px; }

.hero-home {
  padding: 28px 0 48px;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(232, 163, 26, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 60% at 8% 90%, rgba(139, 18, 56, 0.14), transparent 50%),
    linear-gradient(160deg, #fffcf8 0%, #fff6de 42%, #fffbf8 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}
.hero-orb-a {
  width: 280px; height: 280px; right: 8%; top: -80px;
  background: radial-gradient(circle, rgba(139, 18, 56, .28), transparent 70%);
}
.hero-orb-b {
  width: 220px; height: 220px; left: -60px; bottom: 40px;
  background: radial-gradient(circle, rgba(245, 158, 11, .16), transparent 70%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 78%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0d4da;
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .18);
}
.hero-create-cta { display: none; }
.hero-home h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin: 18px 0 14px;
  letter-spacing: -.035em;
  color: #0b1220;
}
.hero-home h1 span {
  color: var(--teal);
  background: linear-gradient(180deg, transparent 62%, #fce8ee 62%);
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 22px 0 18px;
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.hero-home h1.hero-title span {
  background: none;
  color: inherit;
}
.hero-home h1.hero-title .hero-title-top,
.hero-home h1.hero-title .hero-title-bottom {
  display: block;
  font-family: "Poppins", var(--font);
  font-size: clamp(24px, 5.8vw, 45px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  text-transform: none;
  background: #90123d;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-home h1.hero-title .hero-title-bottom {
  /* font-style: italic;
  font-weight: 800; */
}
.hero-title-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 360px);
  margin: 14px 0 12px;
  color: var(--teal);
}
.hero-title-rule::before,
.hero-title-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #f0c14b, #e8a31a, #f0c14b);
  opacity: .7;
}
.hero-title-rule i {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--teal);
}
@media (max-width: 640px) {
  .hero-title-rule { width: 100%; margin: 12px 0 10px; }
  .hero-title-top,
  .hero-title-bottom { font-size: clamp(32px, 11vw, 46px); }
}
.hero-home .lead {
  font-size: 17.5px;
  line-height: 1.55;
  max-width: 540px;
  margin: 0;
}
.hero-lead {
  position: relative;
  max-width: 36em !important;
  padding: 4px 0 4px 20px;
  font-size: 18px !important;
  line-height: 1.7 !important;
  font-weight: 500;
  color: #4a5568;
}
.hero-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 99px;
  background: var(--brand-grad);
}
.hero-home .hero-actions { margin: 28px 0 0; }

.hero-home:has(.hero-aside) .hero-grid {
  align-items: center;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.hero-ongoing {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px 14px 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #5e0e28 0%, #90123d 48%, #8b1238 100%);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(94, 14, 40, .28);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}
.hero-ongoing::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #f6ae0a, #e8a31a);
}
.hero-ongoing::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 174, 10, .28), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero-ongoing:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(94, 14, 40, .34);
}
.hero-ongoing:hover .hero-ongoing-go {
  background: #f6ae0a;
  color: #5e0e28;
  transform: translateX(3px);
}
.hero-ongoing-live {
  position: relative;
  z-index: 1;
  flex: none;
  width: 12px;
  height: 12px;
}
.hero-ongoing-live i {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .22);
}
.hero-ongoing-live::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(52, 211, 153, .45);
  animation: hero-ongoing-pulse 1.6s ease-out infinite;
}
.hero-ongoing-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.hero-ongoing-copy em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f6ae0a;
}
.hero-ongoing-copy strong {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: #fff;
}
.hero-ongoing-go {
  position: relative;
  z-index: 1;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.hero-ongoing-go svg { width: 16px; height: 16px; }
@keyframes hero-ongoing-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ongoing-live::before { animation: none; display: none; }
  .nav-bar .nav-links a.nav-create-cta,
  .hero-create-cta { animation: none; }
}
.hero-visual {
  position: relative;
  min-height: 460px;
}
.hero-doc {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 0;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, .12),
    0 2px 0 rgba(255,255,255,.8) inset;
  transform: rotate(1.2deg);
  overflow: hidden;
}
.hero-doc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: linear-gradient(90deg, #90123d, #8b1238 55%, #e8a31a);
  color: #fdf2f5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.hero-doc-bar em {
  font-style: normal;
  background: rgba(255,255,255,.16);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
}
.hero-doc-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px 8px;
}
.hero-doc-ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: #fdf2f5; color: var(--teal-dark);
  display: grid; place-items: center; flex: none;
}
.hero-doc-ico svg { width: 20px; height: 20px; }
.hero-doc-head strong { display: block; font-size: 15px; letter-spacing: -.02em; }
.hero-doc-head small { color: var(--muted); font-size: 12px; }
.hero-doc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 18px 14px;
}
.hero-doc-metrics div {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 10px 12px;
}
.hero-doc-metrics dt { margin: 0; font-size: 11px; color: var(--muted); font-weight: 600; }
.hero-doc-metrics dd { margin: 2px 0 0; font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.hero-doc-table {
  width: calc(100% - 36px);
  margin: 0 18px 14px;
  border-collapse: collapse;
  font-size: 12.5px;
}
.hero-doc-table th {
  text-align: left;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 8px;
  border-bottom: 1px solid var(--line);
}
.hero-doc-table td { padding: 8px; border-bottom: 1px solid #f1f5f9; }
.hero-doc-table td:not(:first-child) { font-variant-numeric: tabular-nums; font-weight: 600; }
.hero-doc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px 16px;
  font-size: 12px;
  color: var(--muted);
}
.hero-doc-foot a { font-weight: 800; }
.hero-float {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .12);
  animation: hero-float 4.5s ease-in-out infinite;
}
.hero-float-dscr {
  right: -8px;
  top: 42px;
  padding: 10px 14px;
  display: grid;
  gap: 1px;
}
.hero-float-dscr .hf-label { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--muted); }
.hero-float-dscr strong { font-size: 22px; color: #059669; letter-spacing: -.03em; }
.hero-float-dscr small { font-size: 11px; color: #047857; font-weight: 700; }
.hero-float-preview {
  left: -18px;
  bottom: 88px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  animation-delay: -1.4s;
}
.hf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .18);
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float { animation: none; }
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid #f3d6dc;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(139, 18, 56, .06);
}
.hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-grad);
}
.hero-stat-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  background: #fdf2f5;
  color: var(--teal);
}
.hero-stat-ico svg { width: 18px; height: 18px; }
.hero-stat b {
  display: block;
  font-size: 26px;
  letter-spacing: -.04em;
  line-height: 1.1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat span { color: var(--muted); font-size: 13.5px; line-height: 1.4; }

.stat-banner-section {
  position: relative;
  z-index: 2;
  padding: 28px 0 8px;
  background: #fffcf8;
}
.stat-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 34px 12px 32px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(90deg, #90123d, #8b1238 55%, #e8a31a);
  /* box-shadow:
    0 18px 40px rgba(139, 18, 56, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14); */
}
.stat-banner-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, transparent 18%, rgba(255, 255, 255, .14) 48%, transparent 62%),
    radial-gradient(ellipse 50% 80% at 8% 0%, rgba(167, 139, 250, .28), transparent 55%);
}
.stat-banner-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px 28px;
}
.stat-banner-item + .stat-banner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .28), transparent);
}
.stat-banner-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 4px;
}
.stat-banner-ico svg { width: 34px; height: 34px; }
.stat-banner-ico.is-badge {
  width: auto;
  height: auto;
  padding: 7px 11px;
  border: 1.5px solid rgba(255, 255, 255, .85);
  border-radius: 8px;
}
.stat-banner-ico.is-badge small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
}
.stat-banner-item b {
  display: block;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #fff;
}
.stat-banner-item span:last-child {
  max-width: 22ch;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, .86);
}

.hero-paths {
  padding: 80px 0 84px;
  /* background:
    radial-gradient(ellipse 55% 42% at 50% 0%, rgba(237, 233, 254, .5), transparent 68%),
    #fffcf8; */
}
.hero-paths-head {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 40px;
}
.hero-paths-head .how-kicker { box-shadow: 0 8px 20px rgba(15, 23, 42, .05); }
.hero-paths-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 3.8vw, 44px);
  letter-spacing: 0;
  line-height: 1.12;
  color: #1a1a1a;
}
.hero-paths-head p {
  margin: 0 auto;
  max-width: auto;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 500;
}
.hero-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-path {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  padding: 36px 36px 32px;
  border-radius: 36px;
  color: #1c2430;
  text-decoration: none;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.hero-path:hover {
  transform: translateY(-5px);
  color: #1c2430;
}
.hero-path-wash {
  position: absolute;
  inset: auto -80px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-path.is-cma {
  background:
    linear-gradient(165deg, rgba(255,255,255,.42), transparent 42%),
    #fce8ee;
  box-shadow: 0 18px 40px rgba(139, 18, 56, .1);
}
.hero-path.is-cma .hero-path-wash {
  background: radial-gradient(circle, rgba(139, 18, 56, .2), transparent 68%);
}
.hero-path.is-dpr {
  background:
    linear-gradient(165deg, rgba(255,255,255,.42), transparent 42%),
    #fff3cc;
  box-shadow: 0 18px 40px rgba(232, 163, 26, .1);
}
.hero-path.is-dpr .hero-path-wash {
  background: radial-gradient(circle, rgba(232, 163, 26, .2), transparent 68%);
}
.hero-path-tag,
.hero-path h3,
.hero-path > p,
.hero-path-btn { position: relative; z-index: 1; }
.hero-path-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-path.is-cma .hero-path-tag { color: #90123d; }
.hero-path.is-dpr .hero-path-tag { color: #e8a31a; }
.hero-path h3 {
  margin: 0 0 14px;
  max-width: 11ch;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.hero-path.is-cma h3 { color: #90123d; }
.hero-path.is-dpr h3 { color: #8b1238; }
.hero-path > p {
  margin: 0 0 16px;
  max-width: 30ch;
  color: #5b6472;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.hero-path-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-path-btn svg { width: 16px; height: 16px; transition: transform .18s ease; }
.hero-path:hover .hero-path-btn {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, .12);
}
.hero-path:hover .hero-path-btn svg { transform: translateX(3px); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin: 8px 0; }
.muted { color: var(--muted); }
.section { padding: 72px 0; }
.section.alt { background: var(--bg); }
.section h2 { font-size: 32px; letter-spacing: -.02em; margin: 0 0 8px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.step-no {
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: #fff;
  display: grid; place-items: center; font-weight: 800;
}

.how {
  position: relative;
  padding: 80px 0 72px;
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #fffcf8;
  overflow: hidden;
}
.how-head {
  max-width: 640px;
  margin-bottom: 36px;
}
.how-kicker {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0d4da;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.how-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 14px 0 10px;
  line-height: 1.15;
}
.how-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 520px;
}
.how-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.how-track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc((100% - 40px) / 6);
  right: calc((100% - 40px) / 6);
  height: 2px;
  background: #f5ac0b;
  z-index: 0;
}
.how-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: stretch; }
.how-rail {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.how-rail span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #90123d;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 0 0 6px #fffcf8, 0 8px 18px rgba(139, 18, 56, .28);
}
.how-card {
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.how-step:hover .how-card {
  transform: translateY(-4px);
  border-color: #f0c14b;
  box-shadow: 0 18px 40px rgba(139, 18, 56, .12);
}
.how-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fdf2f5;
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.how-ico svg { width: 20px; height: 20px; }
.how-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.02em;
}
.how-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.how-mini {
  list-style: none;
  margin: auto 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
}
.how-mini li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 12.5px;
  border-bottom: 1px solid #eef2f6;
}
.how-mini li:last-child { border-bottom: 0; }
.how-mini span { color: var(--muted); font-weight: 600; }
.how-mini strong { color: var(--ink); font-weight: 800; letter-spacing: -.02em; }
.how-mini li.ok strong { color: #047857; }
.how-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}
.how-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 600;
}

.formats {
  padding: 80px 0 72px;
  background: #fff;
}
.formats-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.formats-kicker {
  display: none;
}
.formats-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.formats-head p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  font-size: 16px;
}
.formats-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.formats-filters button {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.formats-filters button:hover { border-color: #f0c14b; color: var(--teal-dark); }
.formats-filters button.is-on {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.fmt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fmt-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 20px;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.fmt-card:hover {
  transform: translateY(-3px);
  border-color: #f0c14b;
  box-shadow: 0 16px 32px rgba(139, 18, 56, .12);
}
.fmt-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}
.tone-teal { background: #fdf2f5; }
.tone-green { background: #dcfce7; }
.tone-amber { background: #fef3c7; }
.tone-sky { background: #e0f2fe; }
.tone-slate { background: #f1f5f9; }
.tone-rose { background: #ffe4e6; }
.tone-indigo { background: #e0e7ff; }
.fmt-copy strong {
  display: block;
  font-size: 14.5px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.fmt-copy small {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.fmt-go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--teal-dark);
}
.fmt-go svg { width: 14px; height: 14px; }
.fmt-card[hidden] { display: none; }

.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.biz {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px;
  display: flex; gap: 10px; align-items: center; color: var(--ink);
}
.biz:hover { border-color: var(--teal); }

.engine {
  padding: 80px 0 72px;
  background:
    radial-gradient(640px 260px at 8% 0%, rgba(237, 233, 254, .55), transparent 70%),
    #fffcf8;
}
.engine-head {
  max-width: 640px;
  margin-bottom: 32px;
}
.engine-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0d4da;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.engine-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.engine-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
}
.engine-bento {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: stretch;
}
.engine-side { display: grid; gap: 16px; }
.engine-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.engine-card {
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
  height: 100%;
}
.engine-card-lg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 420px;
  background: #fdf2f5;
}
.engine-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  pointer-events: none;
  filter: saturate(.85) brightness(.92);
}
.engine-card-lg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .9) 28%, rgba(247, 246, 255, .55) 58%, rgba(247, 246, 255, .82) 100%);
}
.engine-card-lg > *:not(.engine-card-bg) {
  position: relative;
  z-index: 2;
}
.engine-card-lg .engine-card-top {
  padding: 4px 2px 10px;
}
.engine-card-lg h3 {
  color: #0b1220;
}
.engine-card-lg p {
  color: #3f4a5a;
  font-weight: 500;
}
.engine-card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.engine-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.02em;
}
.engine-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.engine-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
}
.engine-ico svg { width: 20px; height: 20px; }
.engine-ico.teal { background: #fdf2f5; color: var(--teal-dark); }
.engine-ico.amber { background: #fef3c7; color: #b45309; }
.engine-ico.sky { background: #e0f2fe; color: #0369a1; }
.engine-ico.green { background: #dcfce7; color: #047857; }
.engine-sync {
  margin-top: auto;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f0d4da;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}
.engine-sync-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px;
  font-size: 14px;
  border-bottom: 1px dashed #e2e8f0;
}
.engine-sync-row span { color: var(--muted); font-weight: 600; }
.engine-sync-row strong { letter-spacing: -.02em; }
.engine-sync-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #047857;
  font-size: 13px;
  font-weight: 700;
}
.engine-sync-ok svg { width: 16px; height: 16px; flex: none; }
.engine-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.engine-chips span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e8eef2;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.engine-chips span.on {
  background: #dcfce7;
  border-color: #bbf7d0;
  color: #047857;
}
.engine-checks {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.engine-checks li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}
.engine-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8b1238 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/8px no-repeat;
}

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }

.pricing {
  padding: 80px 0 72px;
  background: #fff;
}
.pricing-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.pricing-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fdf2f5;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.pricing-head p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16.5px;
}
.price-switch {
  display: inline-flex;
  padding: 5px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  gap: 4px;
}
.price-switch button {
  border: 0;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.price-switch button:hover { color: var(--ink); }
.price-switch button.is-on {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 28px 24px 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
}
.price-card.is-popular {
  border-color: #f0c14b;
  background: linear-gradient(180deg, #fffcf8 0%, #fff 42%);
  box-shadow: 0 18px 40px rgba(139, 18, 56, .14);
  transform: translateY(-6px);
}
.price-card-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -.02em;
}
.price-card-blurb {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  min-height: 40px;
}
.price-card-amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  line-height: 1;
}
.price-card-amount small {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.price-card-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.price-card-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}
.price-card-list li:last-child { border-bottom: 0; }
.price-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fdf2f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c0a26' stroke-width='2.8'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.pricing-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}
.pricing-toggle { display: flex; gap: 8px; margin: 18px 0 22px; }
.plan { position: relative; }
.plan.popular { border: 2px solid var(--teal); }
.badge {
  position: absolute; top: -10px; right: 16px; background: var(--teal); color: #fff;
  font-size: 11px; padding: 4px 8px; border-radius: 999px; font-weight: 700;
}
.price { font-size: 36px; font-weight: 800; margin: 8px 0; }
.price small { font-size: 14px; color: var(--muted); font-weight: 600; }
.plan ul { padding-left: 18px; color: var(--muted); }
.faq details, .faq-item {
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary, .faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15.5px;
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker { display: none; }
.faq details p, .faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 62ch;
}
.faq-item[open] {
  border-color: #f0c14b;
  box-shadow: 0 10px 24px rgba(139, 18, 56, .08);
}
.faq-ico {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  flex: none;
}
.faq-ico::before,
.faq-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--teal-dark);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-ico::before { width: 12px; height: 2px; }
.faq-ico::after { width: 2px; height: 12px; transition: opacity .15s, transform .15s; }
.faq-item[open] .faq-ico { background: #fdf2f5; }
.faq-item[open] .faq-ico::after { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }

.faqs {
  padding: 80px 0 88px;
  background: #fff;
}
.faqs-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.faqs-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fdf2f5;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.faqs-intro h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 14px 0 10px;
  line-height: 1.15;
}
.faqs-intro p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 38ch;
}
.faqs-list .faq-item:last-child { margin-bottom: 0; }

.voices {
  padding: 80px 0 72px;
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(237, 233, 254, .55), transparent 70%),
    #fffcf8;
}
.voices-head {
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
}
.voices-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0d4da;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.voices-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.voices-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
}
.voices-viewport { position: relative; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.voices-viewport.is-scroll {
  overflow: hidden;
}
.voices-viewport.is-scroll .voices-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  transition: transform .55s ease;
  will-change: transform;
}
.voices-viewport.is-scroll .voice {
  flex: 0 0 auto;
  min-width: 0;
}
.voices-viewport.is-scroll .voice.is-featured { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .voices-viewport.is-scroll .voices-grid { transition: none; }
}
.voice {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 22px;
  padding: 24px 22px 20px;
  /* box-shadow: 0 12px 32px rgba(15, 23, 42, .05); */
}
.voice.is-featured {
  border-color: #f0c14b;
  background: linear-gradient(180deg, #fffcf8 0%, #fff 48%);
  /* box-shadow: 0 18px 40px rgba(139, 18, 56, .12); */
  transform: translateY(-6px);
}
.voice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.voice-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fdf2f5;
  color: var(--teal);
  display: grid;
  place-items: center;
}
.voice-mark svg { width: 18px; height: 18px; }
.voice-stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 13px;
}
.voice p {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: -.015em;
  color: #1e293b;
  flex: 1;
}
.voice-who {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #eef2f6;
}
.voice-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex: none;
}
.voice-av.teal { background: linear-gradient(145deg, #90123d, #e8a31a); }
.voice-av.sky { background: linear-gradient(145deg, #0369a1, #38bdf8); }
.voice-av.amber { background: linear-gradient(145deg, #b45309, #f59e0b); }
.voice-who strong { display: block; font-size: 14px; }
.voice-who small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.voice-who em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: #fdf2f5;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.footer {
  background: #90123d;
  color: #fff;
  padding: 28px 0 24px;
}
.footer a { color: #fff; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand-copy strong { color: #fff; }
.footer .brand-copy small { color: #fff; }
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  margin-bottom: 12px;
  border-radius: 20px;
  background: #f6ae0a;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  color: #fff;
}
.footer-cta-copy { min-width: 0; }
.footer-cta h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.2;
}
.footer-cta p {
  margin: 0;
  color: #fff;
  font-size: 14.5px;
  line-height: 1.45;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: none;
}
.footer-cta .btn-light {
  background: #fff;
  color: #90123d;
}
.footer-cta .btn-light:hover {
  background: #fdf2f5;
  color: #90123d;
}
.footer-cta .btn-ghost-light {
  background: #90123d;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.footer-cta .btn-ghost-light:hover {
  background: #90123d;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr 1.55fr .9fr;
  gap: 32px;
  padding: 48px 0 8px;
}
.footer-brand p {
  margin: 0;
  max-width: 36ch;
  line-height: 1.55;
  color: #fff;
  font-size: 14.5px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 700;
}
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.footer-col strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a { color: #fff; }
.footer-col a:hover { color: #fff; opacity: .85; }
.footer-col-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
  row-gap: 10px;
  align-content: start;
}
.footer-col-company strong {
  grid-column: 1 / -1;
}
.footer-col-company a {
  line-height: 1.35;
}
.footer-contact span { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 13px;
  color: #fff;
}
.footer-bottom p { margin: 0; }
.foot-note { border-top: 1px solid #1e293b; margin-top: 28px; padding-top: 16px; font-size: 13px; }
.auth-wrap { min-height: calc(100vh - 72px); display: grid; grid-template-columns: 1.1fr .9fr; }
.auth-side {
  background: linear-gradient(160deg, #90123d, #8b1238);
  color: #fff; padding: 64px 48px;
}
.auth-form { padding: 48px; display: flex; align-items: center; }

.gate {
  padding: 36px 0 56px;
  background:
    radial-gradient(640px 280px at 8% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #fffcf8;
}
.gate-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid #e8eef2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
  min-height: 560px;
}
.gate-side {
  position: relative;
  padding: 40px 36px;
  color: #fdf2f5;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(232, 163, 26, .28), transparent 60%),
    linear-gradient(165deg, #90123d 0%, #8b1238 55%, #e8a31a 100%);
}
.gate-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gate-side h1 {
  margin: 16px 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -.03em;
  line-height: 1.15;
  color: #fff;
}
.gate-side p {
  margin: 0 0 22px;
  color: #fce8ee;
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 36ch;
}
.gate-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.gate-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 14.5px;
}
.gate-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ecfdf8' stroke-width='2.8'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.gate-demo {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: 4px;
}
.gate-demo span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #f0c14b;
}
.gate-demo code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
  color: #fff;
}
.gate-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 32px;
  background: #fff;
}
.gate-form {
  width: 100%;
  max-width: 400px;
  display: grid;
  gap: 14px;
}
.gate-form h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.03em;
}
.gate-sub {
  margin: -6px 0 4px;
  color: var(--muted);
  font-size: 14.5px;
}
.gate-field { display: grid; gap: 6px; }
.gate-field label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}
.gate-field label span { color: var(--muted); font-weight: 600; }
.gate-input {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0 6px 0 12px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.gate-input:focus-within {
  background: #fff;
  border-color: #a78bfa;
  box-shadow: 0 0 0 4px rgba(139, 18, 56, .12);
}
.gate-ico {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  flex: none;
  display: grid;
  place-items: center;
}
.gate-ico svg { width: 18px; height: 18px; }
.gate-input input {
  border: 0;
  background: transparent;
  padding: 12px 8px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
.password-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
}
.password-toggle:hover { color: var(--ink); background: #eef2f6; }
.password-toggle svg { width: 18px; height: 18px; }
.password-toggle .eye-closed { display: none; }
.password-toggle.is-visible .eye-open { display: none; }
.password-toggle.is-visible .eye-closed { display: block; }
.gate-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  background: #f1f5f9;
  border-radius: 12px;
}
.gate-roles a {
  text-align: center;
  padding: 10px 8px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: #64748b;
}
.gate-roles a.is-on {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}
.gate-foot {
  margin: 2px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.gate-form .alert { margin: 0; }
.gate-board.is-signup .gate-panel { align-items: flex-start; padding-top: 44px; padding-bottom: 44px; }
.gate-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}
.gate-or::before,
.gate-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.gate-or span { white-space: nowrap; }
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: #fff;
  color: #3c4043;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(60, 64, 67, .12);
  transition: background .15s, box-shadow .15s, border-color .15s;
}
.btn-google:hover {
  background: #f8fafc;
  color: #202124;
  border-color: #c5c9ce;
  box-shadow: 0 2px 8px rgba(60, 64, 67, .12);
}
.btn-google svg { width: 18px; height: 18px; flex: none; }
.btn-google .g-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #8b1238;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  flex: none;
}
.btn-google .g-meta {
  display: grid;
  text-align: left;
  line-height: 1.2;
}
.btn-google .g-meta strong { font-size: 14px; font-weight: 700; color: #202124; }
.btn-google .g-meta small { font-size: 12px; font-weight: 500; color: #5f6368; }
.btn-google.is-account { justify-content: flex-start; padding-left: 12px; text-align: left; }
form.gate-form > .btn-google { justify-content: center; }
.gate-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gate-forgot {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.gate-forgot:hover { color: var(--teal-dark); }
.gate-side code {
  font-size: 12.5px;
  color: #fce8ee;
}
.gate-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.45;
  cursor: pointer;
}
.gate-agree input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--teal, #8b1238);
}
.gate-agree a { color: var(--teal-dark, #e8a31a); font-weight: 700; }
.gate-side .gate-signin {
  margin: 8px 0 0;
  color: #f0c14b;
  font-size: 15px;
  font-weight: 600;
  max-width: none;
}
.gate-signin a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gate-signin a:hover { color: #fce8ee; }
.gate-feats {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.gate-feats li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.gate-feats .n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  color: #e8a31a;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  flex: none;
}
.gate-feats h3 {
  margin: 0;
  padding-top: 8px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -.01em;
}
.gate-need {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.gate-need strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #fdf2f5;
}
.gate-need-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.gate-need-links a {
  color: #fce8ee;
  font-size: 13.5px;
  font-weight: 600;
}
.gate-need-links a:hover { color: #fff; }
.gate-board.is-signup .gate-side h1 { max-width: 14ch; }
.form { display: grid; gap: 12px; width: 100%; max-width: 420px; }
label { font-size: 13px; font-weight: 700; }
input, select, textarea {
  font-size: 14px; width: 100%; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; background: #fff;
}
textarea { min-height: 90px; resize: vertical; }
.alert { padding: 12px 14px; border-radius: 12px; font-size: 14px; margin-bottom: 12px; }
.alert-error { background: #fef2f2; color: #991b1b; }
.alert-ok { background: #ecfdf5; color: #065f46; }
.dash-grid { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 72px); }
.side { background: #0b1220; color: #cbd5e1; padding: 22px 14px; }
.side a { display: block; color: #cbd5e1; padding: 10px 12px; border-radius: 10px; font-weight: 600; }
.side a.active, .side a:hover { background: #1e293b; color: #fff; }
.main { padding: 28px; background: var(--bg); }
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.table th, .table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.table th { background: #f8fafc; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.tag { display: inline-block; padding: 3px 8px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.tag-draft { background: #f1f5f9; color: #475569; }
.tag-ready { background: #ecfeff; color: #0e7490; }
.tag-paid { background: #dcfce7; color: #166534; }
.wizard { display: grid; grid-template-columns: 260px 1fr; gap: 20px; }
.stepper { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.stepper li { list-style: none; display: flex; gap: 10px; align-items: flex-start; padding: 10px 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.stepper ol { margin: 0; padding: 0; }
.stepper li.done { color: var(--good); }
.stepper li.current { color: var(--teal); }
.dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid currentColor; display: grid; place-items: center; font-size: 11px; flex: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.span-2 { grid-column: span 2; }
.actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; }
.num { text-align: right; white-space: nowrap; }
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.float-wa-fab {
  position: relative;
  width: 58px;
  height: 58px;
  flex: none;
}
.float-wa-btn {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(22, 163, 74, .4);
  transition: transform .18s, box-shadow .18s;
}
.float-wa-btn svg {
  display: block;
  width: 28px;
  height: 28px;
  flex: none;
}
.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2s ease-out infinite;
}
.float-wa-label {
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.float-wa:hover .float-wa-btn,
.float-wa:focus-visible .float-wa-btn {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(22, 163, 74, .5);
}
.float-wa:hover .float-wa-label,
.float-wa:focus-visible .float-wa-label {
  opacity: 1;
  transform: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .float-wa-pulse { animation: none; display: none; }
}
.help-hero {
  position: relative;
  padding: 40px 0 40px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(232, 163, 26, 0.10), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(139, 18, 56, 0.08), transparent 50%),
    linear-gradient(180deg, #fffcf8 0%, #fff4f0 42%, #fff 100%);
}
.help-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.help-hero .container {
  position: relative;
  z-index: 1;
  max-width: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 36px;
  row-gap: 0;
}
.help-hero .how-kicker,
.help-hero h1,
.help-hero .lead,
.help-hero .help-jumps {
  grid-column: 1;
}
.help-hero-cta {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  justify-self: end;
  white-space: nowrap;
  padding: 13px 26px;
  box-shadow: 0 12px 28px rgba(139, 18, 56, .2);
}
.help-hero .how-kicker {
  letter-spacing: .14em;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}
.help-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(32px, 5vw, 36px);
  letter-spacing: 0;
  line-height: 1.08;
  color: #0b1220;
  max-width: auto;
}
.help-hero .lead {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  max-width: max-content;
}
.help-hero .lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 99px;
  background: var(--brand-grad);
}
.help-hero .help-jumps { margin-top: 24px; }
@media (max-width: 720px) {
  .help-hero .container { grid-template-columns: 1fr; }
  .help-hero-cta {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 20px;
  }
}

.client-board {
  padding: 60px 0 80px;
  background: #fff;
}
.client-board.is-home {
  padding: 80px 0 72px;
  scroll-margin-top: 96px;
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(253, 242, 245, .9), transparent 70%),
    #fffcf8;
}

.for-who {
  padding: 8px 0 80px;
  background: #fffcf8;
  scroll-margin-top: 96px;
}
.for-who-board {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 22px 48px rgba(139, 18, 56, .08);
}
.for-who-media {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 520px;
}
.for-who-banner {
  display: grid;
  place-items: center;
  padding: 36px 32px;
  background: #d9e2f8;
}
.for-who-banner h2 {
  margin: 0;
  max-width: 12ch;
  text-align: center;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.04em;
  line-height: 1.15;
  color: #1a1a1a;
}
.for-who-heart {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 4px;
  vertical-align: -3px;
  color: #1a1a1a;
}
.for-who-heart svg { width: 100%; height: 100%; }
.for-who-crowd {
  position: relative;
  overflow: hidden;
  background: #f4f6fb;
}
.for-who-wall {
  position: absolute;
  inset: 18% 0 38%;
  background: repeating-linear-gradient(
    90deg,
    #2b2b2b 0 10%,
    #7a4634 10% 20%,
    #c0392b 20% 30%,
    #e67e22 30% 40%,
    #f1c40f 40% 50%,
    #27ae60 50% 60%,
    #1abc9c 60% 70%,
    #2980b9 70% 80%,
    #8e44ad 80% 90%,
    #e84393 90% 100%
  );
  opacity: .92;
}
.for-who-row {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 10%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
}
.for-who-fig {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 9%;
}
.for-who-head {
  display: block;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f3d2b3;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.08);
}
.for-who-body {
  display: block;
  width: 100%;
  height: 58px;
  margin-top: 3px;
  border-radius: 10px 10px 6px 6px;
  background: var(--fig);
  box-shadow: 0 8px 14px rgba(15, 23, 42, .12);
}
.for-who-paths {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  padding: 48px 52px;
  background: #f8e6e4;
}
.for-who-paths h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -.03em;
  color: #1a1a1a;
}
.for-who-paths p {
  margin: 0 0 18px;
  max-width: 36ch;
  color: #5b6472;
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 500;
}
.for-who-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  font-size: 14.5px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}
.for-who-btn svg { width: 16px; height: 16px; transition: transform .18s ease; }
.for-who-btn:hover { color: #1a1a1a; }
.for-who-btn:hover svg { transform: translateX(3px); }
.client-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.client-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid #f3d6dc;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(139, 18, 56, .07);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.client-card:hover {
  transform: translateY(-6px);
  border-color: #e8a31a;
  box-shadow: 0 24px 48px rgba(139, 18, 56, .14);
}
.client-card.is-openable .client-card-open {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.client-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, #90123d 0%, #5e0e28 55%, #e8a31a 140%);
  overflow: hidden;
}
.client-board.is-clients .client-media {
  aspect-ratio: 4 / 3;
}
.client-media img,
.client-media .site-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.client-media .site-media-video {
  position: absolute;
  inset: 0;
  border: 0;
  object-fit: unset;
}
.client-media .site-media-video.is-file {
  object-fit: cover;
  background: #0f172a;
}
.client-card:hover .client-media img { transform: scale(1); }
.client-media:has(.site-media-video)::before,
.client-media:has(.site-media-video)::after { display: none; }
.client-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(24, 10, 16, .38));
  pointer-events: none;
}
.client-index {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  min-width: 36px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #90123d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}
.client-av {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .06em;
}
.client-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 16px 18px 18px;
}
.client-copy strong {
  font-size: 17px;
  letter-spacing: -.03em;
  line-height: 1.3;
  color: #3a0c1c;
}
.client-service {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fdf2f5;
  color: #90123d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.client-place {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}
.client-place svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: #e8a31a;
}
.client-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.client-card.is-extra[hidden] { display: none !important; }
@media (max-width: 980px) {
  .client-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .client-list { grid-template-columns: 1fr; }
}

.proj-board {
  padding: 60px 0 80px;
  background: #fff;
}
.proj-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  position: relative;
}
.proj-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, #f0c14b, #e8a31a);
  border-radius: 99px;
}
.proj-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding: 18px 20px 18px 16px;
  background: #fff;
  border: 1px solid #f3d6dc;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(139, 18, 56, .05);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.proj-item:hover {
  transform: translateY(-2px);
  border-color: #f0c14b;
  box-shadow: 0 16px 36px rgba(139, 18, 56, .1);
}
.proj-step {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #f0c14b;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  justify-self: center;
}
.proj-av {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.proj-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.proj-copy strong {
  font-size: 16.5px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.proj-copy em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.proj-flag {
  flex: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.proj-etc {
  max-width: 880px;
  margin: 6px auto 0;
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--muted);
}
@media (max-width: 720px) {
  .proj-list::before { left: 22px; }
  .proj-item {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px 14px;
  }
  .proj-av,
  .proj-flag { grid-column: 2; }
  .proj-flag { justify-self: start; }
}

.ptype-board {
  padding: 48px 0 88px;
  background:
    radial-gradient(720px 280px at 92% 0%, rgba(253, 242, 245, .95), transparent 68%),
    #fff;
}
.ptype-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
a.ptype-card {
  text-decoration: none;
  color: inherit;
}
.ptype-empty {
  margin: 0;
  padding: 28px 8px 8px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}
.ptype-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 0;
  background: #fff;
  border: 1px solid #f3d6dc;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(139, 18, 56, .06);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ptype-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.ptype-card:hover {
  transform: translateY(-6px);
  border-color: #f0c14b;
  box-shadow: 0 24px 48px rgba(139, 18, 56, .14);
}
.ptype-card:hover::after { transform: scaleX(1); }
.ptype-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 26px 22px 10px;
  background:
    radial-gradient(circle at 88% 12%, rgba(246, 174, 10, .28), transparent 42%),
    linear-gradient(165deg, #fce8ee 0%, #fff 76%);
  overflow: hidden;
}
.ptype-card:nth-child(3n+2) .ptype-media {
  background:
    radial-gradient(circle at 88% 12%, rgba(139, 18, 56, .16), transparent 44%),
    linear-gradient(165deg, #fff3c4 0%, #fff 76%);
}
.ptype-card:nth-child(3n) .ptype-media {
  background:
    radial-gradient(circle at 12% 80%, rgba(139, 18, 56, .12), transparent 48%),
    linear-gradient(165deg, #fff1e8 0%, #fff 76%);
}
.ptype-mark {
  position: absolute;
  right: 8px;
  bottom: -12px;
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
  color: rgba(139, 18, 56, .1);
  pointer-events: none;
  user-select: none;
}
.ptype-num {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f3d6dc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--teal);
  box-shadow: 0 8px 16px rgba(15, 23, 42, .05);
}
.ptype-ico {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, #90123d 0%, #6e0f2c 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 28px rgba(139, 18, 56, .28);
  transition: transform .22s ease, box-shadow .22s ease;
}
.ptype-card:nth-child(3n+2) .ptype-ico {
  background: linear-gradient(165deg, #e8a31a 0%, #c48a12 100%);
  color: #3a2200;
  box-shadow: 0 14px 28px rgba(196, 138, 18, .28);
}
.ptype-ico svg { width: 30px; height: 30px; }
.ptype-card:hover .ptype-ico {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 36px rgba(139, 18, 56, .34);
}
.ptype-card:nth-child(3n+2):hover .ptype-ico {
  box-shadow: 0 20px 36px rgba(196, 138, 18, .36);
}
.ptype-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px;
}
.ptype-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.03em;
  line-height: 1.25;
}
.ptype-card h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--brand-grad);
}
.ptype-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.ptype-card.has-photo .ptype-media {
  padding: 0;
  min-height: 250px;
  background: #f6eef1;
}
.ptype-card.has-photo .ptype-media img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.ptype-card.has-photo .ptype-num {
  background: rgba(255, 255, 255, .94);
}
.ptype-card:not(.has-photo) {
  min-height: 0;
}
.ptype-item.is-extra[hidden] { display: none !important; }
.ptype-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
@media (max-width: 980px) {
  .ptype-grid { grid-template-columns: 1fr 1fr; }
  .ptype-media { min-height: 132px; }
}
@media (max-width: 640px) {
  .ptype-grid { grid-template-columns: 1fr; }
  .ptype-card { min-height: 0; }
}

.fi-board {
  padding: 60px 0 96px;
  background:
    radial-gradient(720px 280px at 8% 0%, rgba(237, 233, 254, .7), transparent 68%),
    #fffcf8;
}
.fi-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.fi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 0;
  background: #fff;
  border: 1px solid #f3d6dc;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(139, 18, 56, .06);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.fi-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.fi-card:hover {
  transform: translateY(-6px);
  border-color: #f0c14b;
  box-shadow: 0 24px 48px rgba(139, 18, 56, .14);
}
.fi-card:hover::after { transform: scaleX(1); }
.fi-num {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid #f3d6dc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--teal);
  box-shadow: 0 8px 16px rgba(15, 23, 42, .05);
}
.fi-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 168px;
  margin: 0;
  padding: 36px 28px 20px;
  background:
    linear-gradient(180deg, #f8f7ff 0%, #fff 70%);
  border: 0;
  border-radius: 0;
}
.fi-logo img {
  max-width: 82%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .22s ease;
}
.fi-card:hover .fi-logo img { transform: scale(1.04); }
.fi-copy {
  padding: 16px 24px 22px;
  border-top: 1px solid #f1eef9;
  background: #fff;
}
.fi-card h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.fi-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .fi-grid { grid-template-columns: 1fr 1fr; }
  .fi-logo { min-height: 148px; padding: 32px 20px 16px; }
  .fi-logo img { max-height: 80px; }
}
@media (max-width: 640px) {
  .fi-grid { grid-template-columns: 1fr; }
  .fi-card { min-height: 0; }
}

.wwd-hero .hero-visual { min-height: 0; }
.wwd-hero .hero-copy { max-width: 640px; }
.wwd-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.wwd-jumps a {
  background: #fff;
  border: 1px solid #f0d4da;
  color: var(--teal-dark);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}
.wwd-jumps a:hover {
  border-color: #f0c14b;
  color: var(--teal);
}
.wwd-map {
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(139, 18, 56, .14);
  /* transform: rotate(1.1deg); */
}
.wwd-map-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wwd-map-bar em {
  font-style: normal;
  background: rgba(255,255,255,.16);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
  text-transform: none;
}
.wwd-map-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px 12px;
}
.wwd-map-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 8px;
  border-radius: 14px;
  position: relative;
}
.wwd-map-list li:not(.is-last)::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 42px;
  bottom: -4px;
  width: 2px;
  background: #f0d4da;
}
.wwd-map-list li span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fdf2f5;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.wwd-map-list strong { display: block; font-size: 14.5px; letter-spacing: -.02em; }
.wwd-map-list small { color: var(--muted); font-size: 12.5px; }
.wwd-map-list li.is-last span {
  background: var(--brand-grad);
  color: #fff;
}

.wwd-scope {
  padding: 64px 0 72px;
  background: #fff;
  scroll-margin-top: 88px;
}
.wwd-hero .wwd-map-list { padding: 6px 8px 8px; }
.wwd-hero .wwd-map-list li {
  padding: 7px 8px;
  gap: 10px;
}
.wwd-hero .wwd-map-list li span {
  width: 34px;
  height: 34px;
  font-size: 11px;
  border-radius: 10px;
}
.wwd-hero .wwd-map-list li:not(.is-last)::after {
  left: 24px;
  top: 34px;
}
.wwd-hero .wwd-map-list strong { font-size: 13.5px; }
.wwd-hero .wwd-map-list small { font-size: 12px; }
.wwd-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
  align-items: stretch;
}
.wwd-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 26px 24px 22px;
  background: #fff;
  border: 1px solid #f3d6dc;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(139, 18, 56, .06);
  overflow: hidden;
  scroll-margin-top: 96px;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.wwd-tile::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 18, 56, .08), transparent 70%);
  pointer-events: none;
}
.wwd-tile:hover {
  transform: translateY(-3px);
  border-color: #f0c14b;
  box-shadow: 0 20px 40px rgba(139, 18, 56, .12);
}
.wwd-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #f0c14b;
}
.wwd-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: #fdf2f5;
  color: var(--teal);
}
.wwd-ico svg { width: 24px; height: 24px; }
.wwd-tile h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.2;
  padding-right: 36px;
}
.wwd-tile p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.wwd-tile > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-dark);
}
.wwd-tile > a svg { width: 16px; height: 16px; }
.wwd-tile > a:hover { color: var(--teal); }
.wwd-ticks {
  list-style: none;
  margin: auto 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  counter-reset: wwd-step;
}
.wwd-ticks li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
  counter-increment: wwd-step;
}
.wwd-ticks li::before {
  content: counter(wwd-step);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
  border-radius: 50%;
  background: #f6ae0a;
  color: #5e0e28;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: none;
  position: static;
  left: auto;
  top: auto;
}
.wwd-ticks li:not(:last-child)::after {
  content: "";
  width: 16px;
  height: 16px;
  margin: 0 8px;
  flex: none;
  background: #f6ae0a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.wwd-tile:not(.is-lead) .wwd-ticks {
  margin: 0 0 18px;
}
.wwd-tile:not(.is-lead) .wwd-ticks li {
  color: var(--teal-dark);
}
.wwd-tile:not(.is-lead) .wwd-ticks li::before {
  background: var(--teal);
  color: #fff;
}
.wwd-tile.is-lead {
  grid-row: span 2;
  min-height: 0;
  padding: 32px 28px 26px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(246, 174, 10, .28), transparent 55%),
    linear-gradient(165deg, #6e0f2c 0%, #90123d 52%, #5e0e28 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 22px 48px rgba(139, 18, 56, .28);
}
.wwd-tile.is-lead:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 28px 56px rgba(139, 18, 56, .34);
}
.wwd-tile.is-lead::after {
  background: radial-gradient(circle, rgba(246, 174, 10, .22), transparent 70%);
}
.wwd-tile.is-lead .wwd-ico {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}
.wwd-tile.is-lead h2 { font-size: 28px; color: #fff; }
.wwd-tile.is-lead p { color: rgba(255, 255, 255, .82); font-size: 15.5px; flex: 0; }
.wwd-tile.is-lead > a { color: #fff; margin-top: 0; }
.wwd-tile.is-lead > a:hover { color: #f6ae0a; }
.wwd-tile-photo {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  flex: 1;
  min-height: 168px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 14px 28px rgba(24, 10, 16, .28);
}
.wwd-tile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.wwd-tile.is-dpr {
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(232, 163, 26, .16), transparent 50%),
    linear-gradient(180deg, #fffcf8, #fff);
  border-color: #f0c14b;
}
.wwd-tile.is-dpr .wwd-ico {
  background: var(--brand-grad);
  color: #fff;
}
.wwd-cta {
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand-grad);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(139, 18, 56, .28);
}
.wwd-cta:hover { color: #fff !important; filter: brightness(1.05); }

.wwd-flow {
  padding: 72px 0;
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #fffcf8;
}
.wwd-flow-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.wwd-flow-grid li {
  position: relative;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  padding: 24px 22px 22px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
}
.wwd-flow-n {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}
.wwd-flow-grid h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.wwd-flow-grid p { margin: 0; color: var(--muted); font-size: 14.5px; }

.wwd-who {
  padding: 24px 0 80px;
  background: #fffcf8;
}
.wwd-who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.wwd-who-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  padding: 24px 22px 20px;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.wwd-who-card:hover {
  transform: translateY(-3px);
  border-color: #f0c14b;
  box-shadow: 0 18px 36px rgba(139, 18, 56, .12);
  color: var(--ink);
}
.wwd-who-card.is-featured {
  background: linear-gradient(180deg, #fffcf8 0%, #fff 48%);
  border-color: #f0c14b;
}
.wwd-who-n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.wwd-who-card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.02em; }
.wwd-who-card p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; flex: 1; }
.wwd-who-card em {
  font-style: normal;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--teal-dark);
}
@media (max-width: 980px) {
  .wwd-map { transform: none; }
  .wwd-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .wwd-tile.is-lead { grid-column: 1 / -1; grid-row: auto; }
  .wwd-flow-grid, .wwd-who-grid { grid-template-columns: 1fr; }
  .wwd-scope, .wwd-flow { padding: 40px 0; }
  .wwd-who { padding: 8px 0 56px; }
}
@media (max-width: 640px) {
  .wwd-bento { grid-template-columns: 1fr; }
  .wwd-tile { min-height: 0; }
  .wwd-tile.is-lead h2 { font-size: 24px; }
}

.svc-board { padding: 36px 0 72px; background: #fff; }
.svc-board.is-home {
  padding: 80px 0 72px;
  scroll-margin-top: 96px;
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid #f3d6dc;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(139, 18, 56, .06);
  overflow: hidden;
}
.svc-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 18, 56, .08), transparent 70%);
  pointer-events: none;
}
.svc-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #f0c14b;
}
.svc-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #fdf2f5;
  color: var(--teal);
}
.svc-ico svg { width: 24px; height: 24px; }
.svc-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.svc-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
  flex: 1;
}
.svc-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-dark);
}
.svc-card > a svg { width: 16px; height: 16px; }
.svc-card > a:hover { color: var(--teal); }
.svc-cta {
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 999px;
  background: #90123d;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(139, 18, 56, .28);
}
.svc-cta:hover { color: #fff !important; filter: brightness(1.05); }
.svc-card.is-feature {
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(232, 163, 26, .12), transparent 50%),
    linear-gradient(180deg, #fffcf8, #fff);
  border-color: #f3d6dc;
  box-shadow: 0 18px 40px rgba(139, 18, 56, .12);
}
.svc-card.has-photo {
  padding-top: 0;
}
.svc-photo {
  margin: 0 -26px 18px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #90123d 0%, #5e0e28 55%, #e8a31a 140%);
  overflow: hidden;
}
.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-card.has-photo .svc-num {
  z-index: 1;
  top: 14px;
  right: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #90123d;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}
.svc-card.is-feature .svc-ico {
  background: #f6ae0a;
  color: #fff;
}
@media (max-width: 800px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 0; }
}
.help-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.help-jumps a {
  background: #fff;
  border: 1px solid #f0d4da;
  color: var(--teal-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.help-jumps a:hover { border-color: #f0c14b; color: var(--teal); }

.help-topics { padding: 36px 0 56px; background: #fff; }
.help-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.help-topic {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 20px;
  padding: 20px 18px 16px;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(139, 18, 56, .05);
  min-height: 100%;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.help-topic:hover {
  transform: translateY(-3px);
  border-color: #f0c14b;
  box-shadow: 0 16px 36px rgba(139, 18, 56, .1);
  color: var(--ink);
}
.help-topic-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.help-topic-ico svg { width: 22px; height: 22px; }
.help-topic-ico.teal { background: #fdf2f5; color: var(--teal); }
.help-topic-ico.ink { background: #fff4f0; color: var(--teal-dark); }
.help-topic-ico.amber { background: #fff7ed; color: #c2410c; }
.help-topic-ico.green { background: #ecfdf5; color: #047857; }
.help-topic strong { display: block; text-transform: capitalize; font-size: 15.5px; letter-spacing: -.02em; margin-bottom: 6px; }
.help-topic p { margin: 0 0 14px; font-size: 13.5px; color: var(--muted); line-height: 1.45; flex: 1; }
.help-topic em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.help-topic-grid.is-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tk-types {
  padding: 56px 0 80px;
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(253, 242, 245, .9), transparent 70%),
    #fffcf8;
}
.help-topic em.help-topic-list {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}

.help-guide {
  padding: 64px 0;
  background:
    radial-gradient(620px 240px at 10% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #fffcf8;
}
.help-guide-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.help-guide-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -.03em;
  margin: 12px 0 10px;
  line-height: 1.15;
}
.help-guide-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  max-width: 40ch;
}
.help-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.help-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 18px;
  padding: 16px 18px;
}
.help-steps span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.help-steps strong { display: block; font-size: 15.5px; letter-spacing: -.02em; margin-bottom: 4px; }
.help-steps p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

.help-split { padding: 56px 0; background: #fff; }
.help-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.help-split-card {
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 12px 32px rgba(139, 18, 56, .05);
}
.help-split-card.is-soft {
  background: linear-gradient(180deg, #fffcf8 0%, #fff 55%);
}
.help-split-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.help-split-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.help-split-card > p { margin: 0 0 12px; color: var(--muted); }
.help-split-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
}
.help-split-card li { margin-bottom: 6px; }
.help-split-note { font-size: 13.5px !important; }

.help-download {
  padding: 8px 0 56px;
  background: #fff;
}
.help-dl {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 24px;
  padding: 32px 34px;
  box-shadow: 0 20px 44px rgba(139, 18, 56, .22);
}
.help-dl h2 {
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -.03em;
  color: #fff;
}
.help-dl p { margin: 0; color: rgba(255,255,255,.86); max-width: 54ch; }
.help-dl .how-kicker {
  background: rgba(255,255,255,.14);
  border-color: transparent;
  color: #fff;
}
.help-dl-meta {
  display: grid;
  gap: 0;
  margin: 0;
  background: rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
}
.help-dl-meta div {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.help-dl-meta div:first-child { border-top: 0; }
.help-dl-meta dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .75;
}
.help-dl-meta dd { margin: 4px 0 0; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }

.help-contact {
  padding: 56px 0 24px;
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(237, 233, 254, .55), transparent 70%),
    #fffcf8;
}
.help-contact-head { max-width: 560px; margin-bottom: 24px; }
.help-contact-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
}
.help-contact-head p { margin: 0; color: var(--muted); }
.help-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.help-reach {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 18px;
  padding: 18px 16px;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(139, 18, 56, .05);
}
.help-reach:hover { border-color: #f0c14b; color: var(--ink); }
.help-reach-ico {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.help-reach-ico svg { width: 22px; height: 22px; }
.help-reach-ico.wa { background: #ecfdf5; color: #059669; }
.help-reach-ico.call { background: #fdf2f5; color: var(--teal); }
.help-reach-ico.mail { background: #fff4f0; color: var(--teal-dark); }
.help-reach strong { font-size: 14.5px; letter-spacing: -.02em; overflow-wrap: anywhere; }
.help-reach small { color: var(--muted); font-size: 12.5px; }

.contact-board {
  padding: 60px 0 88px;
  background: #fff;
}
.contact-reach {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.contact-channel {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  padding: 22px 16px 20px;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(139, 18, 56, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.contact-channel:hover {
  color: var(--ink);
  border-color: #f0c14b;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(139, 18, 56, .1);
}
.contact-channel-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.contact-channel-ico svg { width: 24px; height: 24px; }
.contact-channel-ico.wa { background: #ecfdf5; color: #059669; }
.contact-channel-ico.mail { background: #fff4f0; color: var(--teal-dark); }
.contact-channel-ico.call { background: #fdf2f5; color: var(--teal); }
.contact-channel-ico.ig {
  background: linear-gradient(135deg, #fce7f3, #fce8ee);
  color: #c026d3;
}
.contact-channel small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-channel strong {
  font-size: 15px;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
  line-height: 1.35;
}
.contact-offices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.contact-office {
  background: linear-gradient(180deg, #fbfaff 0%, #fff 100%);
  border: 1px solid #f0d4da;
  border-radius: 22px;
  padding: 26px 24px 24px;
  min-height: 180px;
  box-shadow: 0 12px 28px rgba(139, 18, 56, .05);
  overflow: hidden;
}
.contact-office.has-photo {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact-office-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #90123d 0%, #5e0e28 55%, #e8a31a 140%);
  overflow: hidden;
}
.contact-office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-office-body {
  min-width: 0;
}
.contact-office.has-photo .contact-office-body {
  padding: 18px 22px 22px;
}
.contact-office-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  margin-bottom: 14px;
}
.contact-office-ico svg { width: 20px; height: 20px; }
.contact-office h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.03em;
}
.contact-office p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.help-topics,
.help-guide,
.help-split,
.help-download,
.help-contact,
.help-faqs {
  scroll-margin-top: 96px;
}
.help-faqs { background: #fff; }
.help-demo {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 14px 16px;
  background: #fffcf8;
  border: 1px solid #f0d4da;
  border-radius: 16px;
}
.help-demo span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.help-demo code {
  font-size: 13px;
  background: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--teal-dark);
}
.help-demo small { color: var(--muted); font-size: 12.5px; }
.help-demo small a { font-weight: 700; }

.site-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 920px;
}
.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(139, 18, 56, .05);
}
.progress-row strong { display: block; font-size: 16px; letter-spacing: -.02em; }
.progress-row span { color: var(--muted); font-size: 13.5px; }
.progress-status {
  flex: none;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fdf2f5;
  color: var(--teal-dark);
}
.progress-status.is-amber { background: #fff7ed; color: #c2410c; }
.progress-status.is-sky { background: #eff6ff; color: #1d4ed8; }
.progress-status.is-green { background: #ecfdf5; color: #047857; }
.progress-status.is-teal { background: #fdf2f5; color: var(--teal); }
.progress-status.is-rose { background: #fdf2f5; color: #90123d; }
.progress-status.is-ink { background: #fff4f0; color: var(--teal-dark); }
.progress-note { color: var(--muted); margin: 18px 0 0; }

@media (max-width: 980px) {
  .help-topic-grid, .help-topic-grid.is-3, .help-guide-grid, .help-split-grid, .help-dl, .help-contact-grid, .site-card-grid,
  .contact-offices {
    grid-template-columns: 1fr;
  }
  .contact-reach { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help-dl { padding: 24px 20px; }
  .progress-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .contact-reach { grid-template-columns: 1fr; }
}
.sample-page {
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(232, 163, 26, 0.12), transparent 55%),
    linear-gradient(180deg, #fffcf8 0%, #fff4f0 28%, #f8fafc 100%);
}
.sample-page.is-tailor {
  background:
    radial-gradient(ellipse 55% 45% at 8% 8%, rgba(139, 18, 56, 0.10), transparent 50%),
    radial-gradient(ellipse 70% 50% at 92% 0%, rgba(232, 163, 26, 0.14), transparent 55%),
    linear-gradient(180deg, #fffcf8 0%, #fff4f0 32%, #f8fafc 100%);
}
.sample-page.is-tailor .sample-hero {
  position: relative;
}
.sample-page.is-tailor .sample-hero::after {
  content: "";
  display: block;
  height: 1px;
  margin: 28px 0 0;
  background-image: repeating-linear-gradient(
    90deg,
    #f0c14b 0 10px,
    transparent 10px 18px
  );
  opacity: .7;
}
.sample-aside { display: grid; gap: 12px; }
.sample-atelier {
  background: #90123d;
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px 12px;
  box-shadow: 0 16px 32px rgba(139, 18, 56, .22);
}
.sample-atelier strong {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .78;
  margin-bottom: 10px;
}
.sample-atelier ul { list-style: none; margin: 0; padding: 0; }
.sample-atelier li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13.5px;
}
.sample-atelier li:first-child { border-top: 0; padding-top: 0; }
.sample-atelier span { opacity: .78; font-weight: 600; }
.sample-atelier em { font-style: normal; font-weight: 800; letter-spacing: -.02em; }
.sample-page.is-tailor .sample-kpi:first-child {
  background: linear-gradient(180deg, #fff 0%, #fdf2f5 100%);
  border-color: #f0c14b;
}
.sample-hero { padding: 28px 0; }
.sample-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}
.sample-crumb a { color: var(--teal); }
.sample-crumb a:hover { color: var(--teal-dark); }
.sample-crumb strong { color: var(--ink); font-weight: 700; }
.sample-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}
.sample-hero-copy h1 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -.03em;
  line-height: 1.15;
}
.sample-hero-copy > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 54ch;
}
.sample-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.sample-meta span {
  background: #fff;
  border: 1px solid #f0d4da;
  color: #90123d;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}
.sample-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sample-kpi {
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(139, 18, 56, .06);
}
.sample-kpi span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.sample-kpi strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.sample-kpi strong.is-ok { color: #059669; }
.sample-kpi strong.is-warn { color: #b45309; }
.sample-kpi small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.sample-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.sample-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 16px;
  padding: 16px;
}
.sample-point .n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--brand-grad);
}
.sample-point strong { display: block; font-size: 14.5px; letter-spacing: -.02em; }
.sample-point p { margin: 4px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.sample-stage {
  padding: 28px 0 56px;
  background:
    radial-gradient(circle at 12% 0%, rgba(139, 18, 56, .08), transparent 42%),
    #eceaf8;
}
.sample-stage .container {
  width: min(920px, calc(100% - 32px));
}
.sample-doc {
  background: #fff;
  border: 1px solid #ddd7f5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(139, 18, 56, .14);
}
.sample-doc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: #fffcf8;
  color: #1a1640;
  border-bottom: 1px solid #ddd7f5;
}
.sample-doc-bar-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}
.sample-doc-bar-copy span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8b1238;
}
.sample-doc-bar em {
  font-style: normal;
  background: #fff;
  border: 1px solid #f0d4da;
  color: #5b6478;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}
.sample-doc .report {
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.sample-more { padding: 8px 0 64px; }
.sample-more .formats-head { margin-bottom: 18px; }
.sample-more-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.pro-hero .hero-visual { min-height: 520px; }
.pro-hero .hero-float-dscr strong { color: var(--teal-dark); }
.pro-hero .hero-float-dscr small { color: var(--teal); }
.pro-dash {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(139, 18, 56, .14);
  transform: rotate(-1.2deg);
}
.pro-dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pro-dash-bar em {
  font-style: normal;
  background: rgba(255,255,255,.16);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
  text-transform: none;
}
.pro-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid #eef2f6;
}
.pro-dash-stats div {
  padding: 14px 12px 12px;
  text-align: center;
  border-right: 1px solid #eef2f6;
}
.pro-dash-stats div:last-child { border-right: 0; }
.pro-dash-stats b {
  display: block;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.pro-dash-stats span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pro-dash-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px 12px;
}
.pro-dash-list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 8px;
  border-radius: 14px;
}
.pro-dash-list li:hover { background: #fffcf8; }
.pro-dash-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fdf2f5;
  font-size: 18px;
}
.pro-dash-list strong { display: block; font-size: 14px; letter-spacing: -.02em; }
.pro-dash-list small { color: var(--muted); font-size: 12px; }
.pro-dash-list em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.st-ready { background: #ecfdf5; color: #047857; }
.st-draft { background: #fff7ed; color: #c2410c; }
.st-paid { background: #fdf2f5; color: #8b1238; }

.pro-roles {
  padding: 8px 0 56px;
  background: #fff;
}
.pro-roles-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.pro-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pro-role {
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 20px;
  padding: 20px 18px 18px;
  box-shadow: 0 10px 28px rgba(139, 18, 56, .05);
}
.pro-role-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fdf2f5;
  color: var(--teal);
  margin-bottom: 14px;
}
.pro-role-ico svg { width: 22px; height: 22px; }
.pro-role strong { display: block; font-size: 15.5px; letter-spacing: -.02em; margin-bottom: 6px; }
.pro-role p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

.pro-benefits {
  padding: 72px 0;
  background:
    radial-gradient(620px 240px at 10% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #fffcf8;
}
.pro-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pro-benefit {
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .04);
}
.pro-benefit .n {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--teal);
  margin-bottom: 10px;
}
.pro-benefit h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.pro-benefit p { margin: 0; color: var(--muted); font-size: 14.5px; }

.pro-flow {
  padding: 72px 0 64px;
  background: #fff;
}
.pro-flow-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pro-flow-grid li {
  position: relative;
  background: linear-gradient(180deg, #fffcf8 0%, #fff 55%);
  border: 1px solid #f0d4da;
  border-radius: 22px;
  padding: 24px 22px 22px;
}
.pro-flow-n {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}
.pro-flow-grid h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.pro-flow-grid p { margin: 0; color: var(--muted); font-size: 14.5px; }
.pro-pricing { background: #f8fafc; }
.pro-demo-note {
  margin: 0 0 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.pro-demo-note code {
  font-size: 12.5px;
  background: #fdf2f5;
  color: var(--teal-dark);
  padding: 2px 7px;
  border-radius: 6px;
}

.about-hero .hero-visual { min-height: 0; }
.about-hero .hero-stats { grid-template-columns: repeat(4, 1fr); }
.about-story {
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(139, 18, 56, .14);
  transform: rotate(1.1deg);
}
.about-story-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-story-bar em {
  font-style: normal;
  background: rgba(255,255,255,.16);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-size: 10px;
  text-transform: none;
}
.about-story-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px 12px;
}
.about-story-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 8px;
  border-radius: 14px;
  position: relative;
}
.about-story-list li:not(.is-last)::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 42px;
  bottom: -4px;
  width: 2px;
  background: #f0d4da;
}
.about-story-list li span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fdf2f5;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.about-story-list strong { display: block; font-size: 14.5px; letter-spacing: -.02em; }
.about-story-list small { color: var(--muted); font-size: 12.5px; }
.about-story-list li.is-last span {
  background: var(--brand-grad);
  color: #fff;
}

.about-note { padding: 8px 0 28px; background: #fff; }
.about-callout {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  padding: 20px 22px;
}
.about-callout-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ffedd5;
  color: #c2410c;
}
.about-callout-ico svg { width: 24px; height: 24px; }
.about-callout strong { display: block; font-size: 16px; letter-spacing: -.02em; margin-bottom: 6px; }
.about-callout p { margin: 0; color: #7c4a1e; font-size: 14.5px; line-height: 1.55; }
.about-callout a { color: #9a3412; font-weight: 700; }
.about-callout em { font-style: normal; font-weight: 700; }

.about-who {
  padding: 56px 0 72px;
  background: #fff;
}
.about-who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-who-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  padding: 24px 22px 20px;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .05);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.about-who-card:hover {
  transform: translateY(-3px);
  border-color: #f0c14b;
  box-shadow: 0 18px 36px rgba(139, 18, 56, .12);
  color: var(--ink);
}
.about-who-card.is-featured {
  background: linear-gradient(180deg, #fffcf8 0%, #fff 48%);
  border-color: #f0c14b;
}
.about-who-n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--teal);
  margin-bottom: 12px;
}
.about-who-card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.02em; }
.about-who-card p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; flex: 1; }
.about-who-card em {
  font-style: normal;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--teal-dark);
}

.about-build {
  padding: 72px 0;
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(237, 233, 254, .7), transparent 70%),
    #fffcf8;
}
.about-build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-build-grid article {
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(139, 18, 56, .05);
}
.about-build-grid h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.about-build-grid p { margin: 0; color: var(--muted); font-size: 14.5px; }

.about-rules {
  padding: 72px 0;
  background: #fff;
}
.about-rules-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.about-rules-grid h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  line-height: 1.15;
}
.about-rules-grid > div > p { margin: 0; color: var(--muted); font-size: 16.5px; max-width: 42ch; }
.about-rules-grid ul { list-style: none; margin: 0; padding: 0; }
.about-rules-grid li {
  padding: 18px 0;
  border-top: 1px solid #eef2f6;
}
.about-rules-grid li:first-child { border-top: 0; padding-top: 0; }
.about-rules-grid li strong { display: block; font-size: 16px; letter-spacing: -.02em; margin-bottom: 4px; }
.about-rules-grid li span { color: var(--muted); font-size: 14.5px; }

.about-contact { padding: 0 0 72px; background: #fff; }
.about-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 24px;
  padding: 32px 36px;
  box-shadow: 0 20px 48px rgba(139, 18, 56, .2);
}
.about-contact-card .formats-kicker {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.about-contact-card h2 { margin: 12px 0 8px; color: #fff; letter-spacing: -.03em; }
.about-contact-card p { margin: 0; color: rgba(255,255,255,.84); max-width: 46ch; }
.about-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}
.about-contact-links a,
.about-contact-links span {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.about-contact-links a:hover { opacity: .85; }
.about-contact-links span { font-weight: 600; opacity: .8; font-size: 13.5px; }
@media print {
  @page { size: A4 portrait; margin: 10mm 10mm 12mm; }
  html, body {
    background: #fff !important;
    color: #111 !important;
    overflow: visible !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .site-head, .nav, .footer, .no-print, .float-wa, .dash-grid .side,
  .sample-hero, .sample-doc-bar, .sample-more { display: none !important; }
  .container, .sample-page, .sample-stage, .sample-doc {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .sample-doc .report { border-radius: 0 !important; }
}
@media (max-width: 980px) {
  .container { width: min(1320px, calc(100% - 24px)); }
  .brand-copy small { display: none; }
  .site-head { position: sticky; }
  .nav { position: relative; }
  .nav-inner { height: 64px; gap: 8px; flex-wrap: nowrap; }
  .nav-call,
  .wiz-call { display: none; }
  .nav .brand-mark {
    width: 132px;
    max-width: min(132px, 32vw);
    height: 36px;
  }
  .nav-bar { display: none; }
  .site-head.is-open .nav-bar { display: block; }
  .nav-bar .nav-links a.nav-create-cta { display: none !important; }
  .nav-bar .nav-links {
    display: flex;
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 0 14px;
    min-height: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-head.is-open .nav-links { display: flex; }
  .nav-bar .nav-links a,
  .nav-bar .nav-drop-toggle {
    padding: 11px 14px;
    border-radius: 12px;
    width: 100%;
    justify-content: space-between;
  }
  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu { display: none; }
  .nav-drop.is-open .nav-drop-menu {
    display: flex;
    position: static;
    min-width: 0;
    margin: 0 0 4px;
    padding: 0 0 0 10px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-drop.is-open .nav-drop-menu::before { display: none; }
  .nav-drop-menu a { margin: 0; }
  .nav-drop-menu a:first-of-type,
  .nav-drop-menu a:last-of-type { margin: 0; }
  .nav-bar .nav-drop-menu a { color: #fce8ee; }
  .nav-bar .nav-drop-menu a:hover,
  .nav-bar .nav-drop-menu a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    box-shadow: none;
  }
  .nav-links-extra {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }
  .nav-links-extra a {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
  .nav-links-login {
    background: var(--gold) !important;
    color: var(--teal-dark) !important;
    box-shadow: none !important;
  }
  .nav-links-login:hover,
  .nav-links-login.is-active {
    background: var(--gold-dark) !important;
    color: #fff !important;
  }
  .nav-links-cta {
    background: #fff !important;
    color: var(--teal-dark) !important;
    box-shadow: none !important;
    text-align: center;
    justify-content: center;
  }
  .nav-burger { display: inline-flex; width: 40px; height: 40px; }
  .site-head.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-head.is-open .nav-burger span:nth-child(2) { opacity: 0; }
  .site-head.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta:has(.nav-burger) .btn-outline,
  .nav-cta:has(.nav-burger) .user-chip { display: none; }
  .nav-cta .btn-primary { display: inline-flex; }
  .nav-cta .btn-sm-nav { padding: 8px 12px; font-size: 12px; white-space: nowrap; }
  .nav-cta .btn-primary svg { display: none; }
  .user-chip-meta { display: none; }
  .product-grid, .steps, .features, .plan-grid, .quotes, .biz-grid,
  .auth-wrap, .dash-grid, .wizard, .form-grid, .footer-grid, .stats,
  .hero-grid, .hero-doc-metrics, .how-track, .gate-board,
  .sample-hero-grid, .sample-points, .pro-roles-grid, .pro-benefits-grid, .pro-flow-grid,
  .about-who-grid, .about-build-grid, .about-rules-grid {
    grid-template-columns: 1fr;
  }
  .how { padding: 48px 0; }
  .how-track::before { display: none; }
  .how-step { padding-left: 64px; }
  .how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 40px;
    bottom: -60px;
    width: 2px;
    background: #f5ac0b;
    z-index: 0;
  }
  .how-rail {
    position: absolute;
    left: 0;
    top: 18px;
    margin: 0;
  }
  .how-rail span { box-shadow: 0 0 0 6px #fffcf8, 0 8px 18px rgba(139, 18, 56, .28); }
  .how-foot { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-home { padding: 18px 0 36px; }
  .hero-home:has(.hero-aside) .hero-grid { gap: 12px; }
  .hero-home:has(.hero-aside) .hero-copy { display: contents; }
  .hero-home:has(.hero-aside) .hero-badge { order: 1; justify-self: center; }
  .hero-home:has(.hero-aside) .hero-create-cta { order: 2; }
  .hero-home:has(.hero-aside) .hero-title { order: 3; margin: 8px 0 0; }
  .hero-home:has(.hero-aside) .hero-aside { order: 4; margin-top: 4px; }
  .hero-home:has(.hero-aside) .hero-lead { order: 5; margin-top: 8px; }
  .hero-home:has(.hero-aside) .hero-actions { order: 6; }
  .hero-home h1,
  .hero-home h1.hero-title {
    text-align: center;
    align-items: center;
  }
  .hero-home h1.hero-title .hero-title-rule { width: 100%; }
  .hero-create-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    margin: 10px auto 4px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #f6ae0a;
    color: #5e0e28;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: .01em;
    text-decoration: none;
    animation: nav-cta-blink .9s step-end infinite;
  }
  .hero-create-cta:hover {
    animation: none;
    background: #90123d;
    color: #fff;
  }
  .hero-visual { min-height: 0; }
  .hero-doc { transform: none; }
  .hero-float-dscr { right: 8px; top: 12px; }
  .hero-float-preview { left: 8px; bottom: auto; top: auto; display: none; }
  .hero-stats { gap: 10px; margin-top: 20px; }
  .hero-stat { padding: 16px 16px 14px; }
  .hero-stat b { font-size: 22px; }
  .stat-banner-section { padding: 16px 0 0; }
  .stat-banner { margin-top: 0; padding: 22px 10px; border-radius: 22px; }
  .stat-banner-item { padding: 6px 12px; }
  .stat-banner-item b { font-size: 24px; }
  .stat-banner-item span:last-child { font-size: 12.5px; }
  .hero-paths { padding: 48px 0 56px; }
  .hero-paths-grid { grid-template-columns: 1fr; }
  .for-who-board,
  .for-who-media { grid-template-columns: 1fr; }
  .for-who-media { min-height: 0; grid-template-rows: auto 220px; }
  .for-who-banner { padding: 32px 24px; }
  .for-who-banner h2 { max-width: none; }
  .for-who-paths { padding: 32px 24px; gap: 28px; }
  .hero-path { min-height: 220px; padding: 28px 24px 24px; }
  .hero-path h3 { max-width: none; }
  .about-hero .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-story { transform: none; }
  .about-who, .about-build, .about-rules { padding: 40px 0; }
  .about-contact-card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .pro-hero .hero-visual { min-height: 0; }
  .pro-dash { transform: none; }
  .pro-roles, .pro-benefits, .pro-flow { padding: 40px 0; }
  .pro-roles-grid, .pro-benefits-grid { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 48px 0; }
  .voices { padding: 48px 0; }
  .faqs { padding: 48px 0 64px; }
  .faqs-grid { grid-template-columns: 1fr; gap: 24px; }
  .voices-grid { grid-template-columns: 1fr; }
  .voices-viewport.is-scroll .voice { flex: 0 0 100%; }
  .voice.is-featured { transform: none; }
  .voice-who em { display: none; }
  .price-card.is-popular { transform: none; }
  .float-wa { right: 16px; bottom: 16px; }
  .float-wa-fab, .float-wa-btn { width: 52px; height: 52px; }
  .float-wa-btn svg { width: 26px; height: 26px; }
  .float-wa-label { display: none; }
  .engine { padding: 48px 0; }
  .engine-bento, .engine-pair { grid-template-columns: 1fr; }
  .formats { padding: 48px 0; }
  .formats-head { flex-direction: column; align-items: flex-start; }
  .fmt-grid { grid-template-columns: 1fr 1fr; }
  .sample-more-grid { grid-template-columns: 1fr 1fr; }
  .sample-doc-bar { flex-wrap: wrap; }
  .fmt-go { font-size: 0; gap: 0; }
  .fmt-go svg { width: 16px; height: 16px; }
  .biz-grid { grid-template-columns: 1fr 1fr; }
  .span-2 { grid-column: span 1; }
  .gate { padding: 20px 0 36px; }
  .gate-board { min-height: 0; }
  .gate-side, .gate-panel { padding: 24px 20px; }
  .gate-side h1 { font-size: 24px; }
  .auth-side { display: none; }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn { flex: 1 1 auto; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 640px) {
  .nav-inner { height: 58px; gap: 6px; }
  .nav .brand-mark {
    width: 96px;
    max-width: min(96px, 28vw);
    height: 32px;
  }
  .nav-cta { gap: 6px; }
  .nav-cta-actions { gap: 5px; }
  .nav-cta .btn-sm-nav { padding: 7px 10px; font-size: 11.5px; }
  .nav-burger { width: 36px; height: 36px; border-radius: 10px; }
  .hero-stats,
  .stat-banner,
  .pro-roles-grid, .pro-benefits-grid, .about-hero .hero-stats { grid-template-columns: 1fr; }
  .stat-banner { padding: 8px 16px 16px; }
  .stat-banner-item { padding: 18px 8px; }
  .stat-banner-item + .stat-banner-item::before {
    left: 18%;
    right: 18%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  }
  .hero-path { min-height: 0; }
}

/* Guest create-report wizard — wide LoanDPR layout */
body:has(.create-wiz) {
  background:
    radial-gradient(ellipse 70% 45% at 8% 0%, rgba(139, 18, 56, .12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(139, 18, 56, .08), transparent 50%),
    linear-gradient(180deg, #fffcf8 0%, #fff4f0 38%, #fff 100%);
}
.site-head.is-wizard .nav {
  overflow: hidden;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3d6dc;
}
.site-head.is-wizard .nav-inner {
  height: 68px;
  overflow: hidden;
}
.site-head.is-wizard .brand {
  height: 100%;
  max-height: 100%;
}
.site-head.is-wizard .nav .brand-mark,
.site-head.is-wizard .nav .brand-mark.has-logo {
  width: auto;
  height: 44px;
  max-height: 44px;
  max-width: min(220px, 42vw);
}
.site-head.is-wizard .nav .brand-mark.has-logo img {
  width: auto;
  height: 100%;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}
.site-head.is-wizard .brand-copy small { display: none; }
@media (max-width: 980px) {
  .site-head.is-wizard .nav-inner { height: 64px; }
  .site-head.is-wizard .nav .brand-mark,
  .site-head.is-wizard .nav .brand-mark.has-logo {
    height: 36px;
    max-height: 36px;
    max-width: min(132px, 32vw);
  }
  .site-head.is-wizard .nav .brand-mark.has-logo img { max-height: 36px; }
  .wiz-nav-cta { gap: 8px; }
  .wiz-nav-cta .btn-sm-nav { padding: 8px 14px; font-size: 12.5px; }
}
@media (max-width: 640px) {
  .site-head.is-wizard .nav-inner { height: 58px; }
  .site-head.is-wizard .nav .brand-mark,
  .site-head.is-wizard .nav .brand-mark.has-logo {
    height: 32px;
    max-height: 32px;
  }
  .site-head.is-wizard .nav .brand-mark.has-logo img { max-height: 32px; }
}
.wiz-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wiz-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.wiz-call svg { width: 16px; height: 16px; color: var(--teal); }
.wiz-call:hover { color: var(--teal); }

.create-wiz {
  padding: 28px 0 64px;
  min-height: calc(100vh - 90px);
}
.create-wiz-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}
.create-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.create-rail {
  position: sticky;
  top: 88px;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  padding: 22px 20px 18px;
  box-shadow: 0 12px 32px rgba(139, 18, 56, .06);
}
.create-rail-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.create-rail h1 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.create-rail-lead {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}
.create-progress {
  height: 6px;
  background: #f3d6dc;
  border-radius: 99px;
  overflow: hidden;
}
.create-progress span {
  display: block;
  height: 100%;
  background: var(--brand-grad);
  border-radius: inherit;
  transition: width .25s ease;
}
.create-rail-count {
  margin: 8px 0 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
}
.create-rail-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  max-height: calc(100vh - 340px);
  overflow: auto;
}
.create-rail-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}
.create-rail-step em {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 11px;
  font-weight: 800;
  background: #f1f5f9;
  color: #64748b;
}
.create-rail-step.is-done { color: var(--teal-dark); }
.create-rail-step.is-done em {
  background: #ecfdf5;
  color: #047857;
}
.create-rail-step.is-current {
  color: var(--ink);
  background: #fffcf8;
}
.create-rail-step.is-current em {
  background: #90123d;
  color: #fff;
}
a.create-rail-step:hover { background: #fffcf8; color: var(--teal); }

.create-form { min-width: 0; }
.create-card {
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(139, 18, 56, .07);
  overflow: hidden;
}
.create-body { padding: 28px 32px 20px; }
.create-qhead {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}
.create-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #90123d;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 10px 22px rgba(139, 18, 56, .28);
}
.create-body h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.create-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.create-underline {
  width: 100%;
  border: 1.5px solid #f0d4da;
  background: #fafbff;
  padding: 16px 18px;
  font: inherit;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 14px;
}
.create-underline:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139, 18, 56, .12);
}
.create-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.create-choices-2 { grid-template-columns: 1fr 1fr; }
.create-choices-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.create-choices-biz { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.create-choice { position: relative; cursor: pointer; }
.create-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.create-choice span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 14px;
  border: 1.5px solid #f0d4da;
  border-radius: 16px;
  background: #fbfaff;
  min-height: 84px;
  height: 100%;
  transition: border-color .15s, box-shadow .15s, background .15s, transform .15s;
}
.create-choice strong { font-size: 15px; letter-spacing: -.02em; }
.create-choice small { color: var(--muted); font-size: 12.5px; font-weight: 500; }
.create-choice:hover span {
  border-color: #f0c14b;
  background: #fff;
  transform: translateY(-1px);
}
.create-choice:has(input:checked) span {
  border-color: var(--teal);
  background: #fffcf8;
  box-shadow: 0 0 0 3px rgba(139, 18, 56, .14);
}
.create-money-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.create-money-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.create-money, .create-area, .create-cap-row label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.create-money input, .create-money select, .create-area textarea, .create-cap-row input {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: #fafbff;
}
.create-money input:focus, .create-money select:focus, .create-area textarea:focus, .create-cap-row input:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139, 18, 56, .12);
}
.create-rupee {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fafbff;
  overflow: hidden;
}
.create-rupee em {
  font-style: normal;
  padding: 0 0 0 12px;
  color: var(--muted);
  font-weight: 700;
}
.create-rupee input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
}
.create-rupee:focus-within {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139, 18, 56, .12);
}
.create-money-lg .create-rupee { max-width: 480px; }
.create-money-lg input { font-size: 26px; padding: 16px 14px; }
.create-area { margin-top: 14px; }
.create-area textarea { font-weight: 500; resize: vertical; }
.create-cap-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.create-total {
  margin: 16px 0 0;
  font-size: 15px;
}
.create-note {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}
.create-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 18px 32px 22px;
  border-top: 1px solid #f1eefc;
  background: #fbfaff;
}
.create-back {
  background: #fff;
  border: 1.5px solid #f0d4da;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 12px;
}
.create-back:hover { border-color: #f0c14b; color: var(--teal); }
.create-next {
  min-width: 200px;
  border-radius: 12px;
  padding: 13px 28px;
  font-size: 15.5px;
}
.create-form .span-2 { grid-column: span 2; }
.create-tl {
  display: grid;
  gap: 0;
  border: 1.5px solid #f0d4da;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.create-tl-row {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid #f1eefc;
  margin: 0;
}
.create-tl-row:first-child {
  border-top: 0;
  background: linear-gradient(90deg, #fffcf8, #fff4f0);
}
.create-tl-row > span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.create-tl-row small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  margin-top: 3px;
}
.create-tl-row > strong {
  font-size: 22px;
  letter-spacing: -.03em;
  color: var(--teal-dark);
  text-align: right;
}
.create-tl-inputs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.create-pct {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  width: 92px;
  flex: none;
}
.create-pct input {
  width: 100%;
  border: 0;
  padding: 10px 8px 10px 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
}
.create-pct em {
  font-style: normal;
  padding-right: 10px;
  color: var(--muted);
  font-weight: 700;
}
.create-pct:focus-within,
.create-tl-row .create-rupee:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(139, 18, 56, .12);
}
.create-tl-row .create-rupee { width: 100%; background: #fff; }
.create-tl-row.is-edit .create-rupee input { font-weight: 700; }

@media (max-width: 1100px) {
  .create-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 20px; }
  .create-choices-3, .create-choices-biz, .create-money-grid-3 { grid-template-columns: 1fr 1fr; }
  .create-tl-row { grid-template-columns: 1fr minmax(240px, 48%); }
}
@media (max-width: 860px) {
  .create-layout { grid-template-columns: 1fr; }
  .create-rail { position: static; }
  .create-rail-steps { display: none; }
  .create-wiz-inner { width: min(1280px, calc(100% - 24px)); }
}
@media (max-width: 720px) {
  .create-body { padding: 20px 16px 8px; }
  .create-qhead { grid-template-columns: 44px 1fr; gap: 12px; }
  .create-num { width: 44px; height: 44px; border-radius: 12px; font-size: 14px; }
  .create-choices, .create-choices-2, .create-choices-3, .create-choices-biz,
  .create-money-grid, .create-money-grid-3 { grid-template-columns: 1fr; }
  .create-form .span-2 { grid-column: span 1; }
  .create-cap-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .create-actions { padding: 14px 16px 16px; }
  .wiz-call { display: none; }
  .create-tl-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .create-tl-row > strong, .create-tl-inputs { justify-content: flex-start; text-align: left; }
  .create-tl-inputs, .create-tl-row .create-rupee { width: 100%; }
  .create-pct { width: 110px; }
}

.hero-home.has-slider .hero-visual {
  min-height: 400px;
  display: flex;
}
.hero-home.has-slider .hero-slider-frame {
  flex: 1;
}
.hero-slider-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 22px;
  background: #08101c;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, .12),
    0 2px 0 rgba(255,255,255,.8) inset;
}
.hero-slide-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  min-height: inherit;
  min-width: 0;
  transition: transform .8s cubic-bezier(.22, .7, .3, 1);
  will-change: transform;
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 400px;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 12, 28, .42) 100%);
}
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}
.hero-slider-nav svg { width: 18px; height: 18px; }
.hero-slider-nav.is-prev { left: 12px; }
.hero-slider-nav.is-next { right: 12px; }
.hero-slider-nav:hover { background: rgba(255, 255, 255, .92); color: var(--teal-dark); }
.hero-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
}
.hero-slider-dots button.is-on {
  width: 22px;
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide-track { transition: none; }
}
@media (max-width: 720px) {
  .hero-home.has-slider .hero-visual,
  .hero-slider-frame,
  .hero-slide { min-height: 280px; }
  .hero-slider-nav { width: 36px; height: 36px; }
  .hero-slider-nav.is-prev { left: 8px; }
  .hero-slider-nav.is-next { right: 8px; }
}

/* .pr-hero .container { max-width: 760px; } */
.pr-tree-wrap {
  padding: 60px 0 80px;
  background: #fff;
}
.pr-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: max-content;
  margin: 0 auto;
}
.pr-board-split {
  width: 2px;
  align-self: stretch;
  margin: 28px 50px 8px;
  background: linear-gradient(180deg, transparent, #90123d 12%, #e8a31a 88%, transparent);
  opacity: .55;
}
.pr-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0 8px;
}
.pr-col-step {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fdf2f5;
  color: #90123d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pr-col-step.is-create {
  background: #fff6de;
  color: #9a6700;
}
.pr-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.pr-tree-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 22px 26px;
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.25;
  color: #5e0e28;
  background: #fff;
  border: 1.5px solid #f0d4da;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(139, 18, 56, .08);
}
.pr-tree-box.is-create {
  border-color: #f0d4a8;
  color: #7a4a08;
}
.pr-tree-branches {
  --pr-gap: 18px;
  --pr-line: #90123d;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pr-gap);
  width: min(100%, 500px);
  padding-top: 50px;
}
.pr-tree-branches::before,
.pr-tree-branches::after,
.pr-tree-branch::before {
  content: "";
  position: absolute;
  background: var(--pr-line);
  pointer-events: none;
}
.pr-tree-branches::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 26px;
  transform: translateX(-50%);
}
.pr-tree-branches::after {
  top: 24px;
  left: calc((100% - var(--pr-gap)) / 4 - 1px);
  right: calc((100% - var(--pr-gap)) / 4 - 1px);
  height: 2px;
}
.pr-tree-branch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}
.pr-tree-branch::before {
  left: 50%;
  top: -26px;
  width: 2px;
  height: 26px;
  transform: translateX(-50%);
}
.pr-tree-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 16px 16px 14px;
  background: #fff;
  border: 1px solid #f0d4da;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(139, 18, 56, .08);
  color: inherit;
  text-decoration: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pr-tree-btn:hover {
  border-color: #90123d;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(139, 18, 56, .14);
}
.pr-tree-btn.is-gold:hover { border-color: #e8a31a; }
.pr-tree-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fdf2f5;
  color: #90123d;
}
.pr-tree-btn.is-gold .pr-tree-ico {
  background: #fff6de;
  color: #b45309;
}
.pr-tree-ico svg { width: 20px; height: 20px; }
.pr-tree-ico-rupee {
  font-family: "Noto Sans", "Segoe UI", "Arial Unicode MS", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.pr-tree-btn strong {
  font-size: 15px;
  letter-spacing: -.02em;
  color: #5e0e28;
  line-height: 1.25;
}
.pr-tree-btn small {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 860px) {
  .pr-board {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pr-board-split {
    width: auto;
    height: 2px;
    margin: 18px 24px;
    background: linear-gradient(90deg, transparent, #90123d 12%, #e8a31a 88%, transparent);
  }
  .pr-col { padding: 0; }
}
@media (max-width: 720px) {
  .pr-tree-branches {
    grid-template-columns: 1fr;
    width: min(100%, 380px);
  }
  .pr-tree-branches::after { display: none; }
  .pr-tree-branches::before { height: 28px; }
  .pr-tree-branch::before {
    top: auto;
    bottom: calc(100% - 2px);
  }
}

.pr-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
}
.pr-pdf-modal[hidden] { display: none !important; }
.pr-pdf-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 10, 16, .62);
}
.pr-pdf-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(920px, 100%);
  height: min(92vh, 900px);
  background: #f6f1ec;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(24, 10, 16, .35);
  overflow: hidden;
  outline: none;
}
.pr-pdf-head {
  flex: none;
  padding: 16px 20px 14px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.pr-pdf-head h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: #5e0e28;
}
.pr-pdf-hint {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.pr-pdf-scroll {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: #525659;
}
.pr-pdf-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #525659;
}
.pr-pdf-foot {
  flex: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.pr-pdf-foot[hidden] { display: none !important; }
body.pr-pdf-open { overflow: hidden; }
@media (max-width: 640px) {
  .pr-pdf-modal { padding: 8px; }
  .pr-pdf-dialog { height: 96vh; border-radius: 14px; }
  .pr-pdf-head { padding: 12px 12px 10px; }
  .pr-pdf-foot .btn { flex: 1 1 140px; }
}

@keyframes img-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -20% 0; }
}
img.img-boot {
  opacity: 0;
  transition: opacity .45s ease, transform .35s ease;
}
img.img-boot.is-ready { opacity: 1; }
.svc-photo,
.contact-office-photo,
.fi-logo { position: relative; }
.svc-photo::before,
.client-media::before,
.contact-office-photo::before,
.hero-slide::before,
.fi-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,0) 18%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 82%);
  background-size: 220% 100%;
  animation: img-shimmer 1.15s ease-in-out infinite;
  opacity: 1;
  transition: opacity .35s ease;
}
.hero-slide::before { z-index: 2; }
.svc-photo:has(img.is-ready)::before,
.client-media:has(img.is-ready)::before,
.contact-office-photo:has(img.is-ready)::before,
.hero-slide:has(img.is-ready)::before,
.fi-logo:has(img.is-ready)::before {
  opacity: 0;
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  img.img-boot { opacity: 1; transition: none; }
  .svc-photo::before,
  .client-media::before,
  .contact-office-photo::before,
  .hero-slide::before,
  .fi-logo::before {
    animation: none;
    opacity: 0;
  }
}

.hl-detail { padding: 60px 0 80px; background: #fff; }
.hl-copy { max-width: max-content; margin-bottom: 32px; }
.hl-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.03em;
  color: #3a0c1c;
}
.hl-copy p { color: var(--muted); margin: 0 0 12px; }
.hl-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.hl-approved-trigger {
  margin-top: 22px;
}
.hl-appr-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 18px 16px 16px;
  background:
    linear-gradient(105deg, #fff8e6 0%, #fff 42%, #fdf2f5 100%);
  border: 1px dashed #e0b84a;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(196, 138, 18, .1);
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hl-appr-btn:hover {
  transform: translateY(-3px);
  border-style: solid;
  border-color: #c48a12;
  box-shadow: 0 16px 36px rgba(196, 138, 18, .18);
}
.hl-appr-btn-ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(165deg, #e8a31a 0%, #c48a12 100%);
  color: #3a2200;
  box-shadow: 0 10px 20px rgba(196, 138, 18, .28);
}
.hl-appr-btn-ico svg { width: 24px; height: 24px; }
.hl-appr-btn-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.hl-appr-btn-copy strong {
  font-size: 18px;
  letter-spacing: -.03em;
  color: #5e0e28;
  line-height: 1.2;
}
.hl-appr-btn-copy small {
  color: #8a6a20;
  font-size: 13px;
  font-weight: 600;
}
.hl-appr-btn-go {
  flex: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: #90123d;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hl-appr-btn:hover .hl-appr-btn-go {
  background: #6e0f2c;
}
@media (max-width: 640px) {
  .hl-appr-btn {
    flex-wrap: wrap;
  }
  .hl-appr-btn-go {
    width: 100%;
    text-align: center;
  }
}
.hl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 214px;
  padding: 22px 20px 18px;
  overflow: hidden;
  text-decoration: none;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(253, 242, 245, .95), transparent 70%),
    #fff;
  border: 1px solid #f0d4da;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(139, 18, 56, .07);
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-grad);
  opacity: .55;
  transition: opacity .2s ease;
}
.hl-card:hover {
  transform: translateY(-5px);
  border-color: #90123d;
  box-shadow: 0 22px 44px rgba(139, 18, 56, .16);
}
.hl-card:hover::before { opacity: 1; }
.hl-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}
.hl-card-ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fdf2f5;
  color: #90123d;
  box-shadow: inset 0 0 0 1px rgba(144, 18, 61, .08);
}
.hl-card-ico svg { width: 22px; height: 22px; }
.hl-card-no {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #c48a12;
}
.hl-card strong {
  font-size: 17px;
  letter-spacing: -.03em;
  color: #5e0e28;
  line-height: 1.25;
}
.hl-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  flex: 1;
}
.hl-card-go {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #90123d;
}
.hl-card.is-apply {
  background:
    linear-gradient(160deg, #6e0f2c 0%, #90123d 48%, #c48a12 140%);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(139, 18, 56, .28);
  color: #fff;
}
.hl-card.is-apply::before { display: none; }
.hl-card.is-apply:hover {
  border-color: transparent;
  box-shadow: 0 24px 48px rgba(139, 18, 56, .36);
}
.hl-card.is-apply .hl-card-ico {
  background: rgba(255, 255, 255, .14);
  color: #fff6de;
  box-shadow: none;
}
.hl-card.is-apply strong,
.hl-card.is-apply small,
.hl-card.is-apply .hl-card-go { color: #fff; }
.hl-card.is-apply small { color: rgba(255, 255, 255, .82); }
.hl-card.is-apply .hl-card-go { color: #fff6de; }
.hl-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}
.hl-modal[hidden] { display: none !important; }
.hl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 10, 16, .68);
  backdrop-filter: blur(4px);
}
.hl-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(680px, 100%);
  max-height: min(88vh, 860px);
  overflow: hidden;
  padding: 0;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(24, 10, 16, .4);
  outline: none;
  animation: hl-pop .28s ease;
}
.hl-dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--brand-grad);
}
.hl-dialog.is-form::before {
  background: linear-gradient(90deg, #e8a31a, #90123d);
}
.hl-approved-sec {
  padding: 60px 0 80px;
  scroll-margin-top: 96px;
  background:
    radial-gradient(720px 280px at 8% 0%, rgba(253, 242, 245, .9), transparent 68%),
    #fff;
}
.hl-approved-sec[hidden] { display: none !important; }
.hl-approved-head {
  margin-bottom: 22px;
}
.hl-approved-head h2 {
  margin: 6px 0 0;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.03em;
  color: #3a0c1c;
}
.hl-appr {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.hl-appr-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hl-appr-tab {
  display: block;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #f0d4da;
  border-radius: 16px;
  background: #fff;
  color: #5e0e28;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(139, 18, 56, .05);
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.hl-appr-tab:hover {
  border-color: #e8a31a;
}
.hl-appr-tab.is-active {
  background: linear-gradient(160deg, #6e0f2c 0%, #90123d 70%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(139, 18, 56, .22);
}
.hl-appr-body { min-width: 0; }
.hl-appr-panel {
  min-width: 0;
  padding: 20px 20px 16px;
  background:
    radial-gradient(280px 90px at 100% 0%, rgba(255, 246, 222, .8), transparent 70%),
    #fff;
  border: 1px solid #f3d6dc;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(139, 18, 56, .06);
}
.hl-appr-panel[hidden] { display: none !important; }
.hl-appr-panel h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  letter-spacing: -.03em;
  color: #5e0e28;
}
.hl-appr-table-wrap { overflow: auto; }
.hl-appr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hl-appr-table th,
.hl-appr-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #f5e4e8;
  vertical-align: top;
}
.hl-appr-table th {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #90123d;
  white-space: nowrap;
}
.hl-appr-table td:first-child {
  width: 64px;
  font-weight: 700;
  color: #5e0e28;
}
.hl-appr-table a {
  font-weight: 700;
  color: #90123d;
}
@media (max-width: 720px) {
  .hl-appr { grid-template-columns: 1fr; }
  .hl-appr-tabs { flex-direction: row; flex-wrap: wrap; }
  .hl-appr-tab { width: auto; flex: 1 1 auto; }
}
.hl-dialog.is-thanks {
  width: min(440px, 100%);
  max-height: none;
  overflow: hidden;
}
.hl-dialog.is-thanks::before {
  background: linear-gradient(90deg, #e8a31a, #90123d);
  border-radius: 24px 24px 0 0;
}
.hl-dialog.is-thanks .hl-dialog-x {
  position: absolute;
  top: 14px;
  right: 14px;
}
.hl-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 32px 36px;
}
.hl-thanks-ico {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fdf2f5, #fff6de);
  color: #90123d;
  box-shadow: 0 12px 28px rgba(139, 18, 56, .12);
}
.hl-thanks-ico svg { width: 36px; height: 36px; }
.hl-thanks-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c48a12;
}
.hl-thanks h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -.04em;
  color: #5e0e28;
}
.hl-thanks p {
  margin: 0 0 24px;
  max-width: 32ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}
@keyframes hl-pop {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.hl-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex: none;
  padding: 26px 26px 16px;
  background:
    radial-gradient(280px 90px at 0% 0%, rgba(253, 242, 245, .9), transparent 70%),
    #fff;
}
.hl-dialog.is-form .hl-dialog-head {
  background:
    radial-gradient(280px 90px at 0% 0%, rgba(255, 246, 222, .95), transparent 70%),
    #fff;
}
.hl-dialog-kicker {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c48a12;
}
.hl-dialog-head h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -.03em;
  color: #5e0e28;
}
.hl-dialog-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: max-content;
  line-height: 1.5;
}
.hl-dialog-x {
  flex: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fdf2f5;
  color: #90123d;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.hl-dialog-x:hover {
  background: #90123d;
  color: #fff;
  transform: rotate(90deg);
}
.hl-list {
  margin: 0;
  padding: 4px 22px 8px;
  display: grid;
  gap: 8px;
  overflow: auto;
  flex: 1;
  min-height: 0;
  list-style: none;
  counter-reset: hl;
}
.hl-list li {
  counter-increment: hl;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  background: #fffafb;
  border: 1px solid #f5e4e8;
  border-radius: 14px;
  color: #3a0c1c;
  line-height: 1.45;
  font-size: 14.5px;
}
.hl-list li::before {
  content: counter(hl, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fdf2f5;
  color: #90123d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
.hl-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 0 26px;
}
.hl-form .form-grid {
  overflow: auto;
  flex: 1;
  min-height: 0;
  padding-bottom: 8px;
}
.hl-dialog-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  flex: none;
  margin-top: 10px;
  padding: 16px 26px 20px;
  border-top: 1px solid #f5e4e8;
  background: #fff;
}
.hl-form .hl-dialog-foot {
  margin: 0 -26px;
}
body.hl-open { overflow: hidden; }
@media (max-width: 980px) {
  .hl-actions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hl-actions { grid-template-columns: 1fr; }
  .hl-form .span-2 { grid-column: span 1; }
  .hl-dialog-head,
  .hl-form { padding-left: 18px; padding-right: 18px; }
  .hl-list { padding-left: 14px; padding-right: 14px; }
  .hl-dialog-foot { padding-left: 18px; padding-right: 18px; }
}
.proj-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 20px 28px;
}
.proj-modal[hidden] { display: none !important; }
.proj-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 8, 12, .88);
  backdrop-filter: blur(8px);
}
.proj-modal-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1080px, 100%);
  max-height: calc(100vh - 100px);
  outline: none;
  animation: hl-pop .28s ease;
}
.proj-modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #8b1238;
  box-shadow: 0 10px 28px rgba(24, 10, 16, .28);
  cursor: pointer;
}
.proj-modal-x svg { width: 20px; height: 20px; }
.proj-modal-x:hover { background: #8b1238; color: #fff; }
.proj-modal-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: calc(100vh - 160px);
  overflow: hidden;
  border-radius: 18px;
  background: #0b0610;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
}
.proj-modal-stage.is-youtube {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 160px);
  max-width: min(960px, calc((100vh - 160px) * 16 / 9));
  background: #000;
}
.proj-modal-stage img,
.proj-modal-stage video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
}
.proj-modal-stage iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.proj-modal-caption {
  margin: 14px 0 0;
  max-width: 100%;
  padding: 0 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
  line-height: 1.35;
}
body.proj-open { overflow: hidden; scrollbar-gutter: stable; }
body.proj-open .float-wa { visibility: hidden; }
@media (max-width: 640px) {
  .proj-modal { padding: 64px 10px 16px; }
  .proj-modal-x { top: 12px; right: 12px; width: 40px; height: 40px; }
  .proj-modal-stage,
  .proj-modal-stage img,
  .proj-modal-stage video { border-radius: 12px; }
}
