:root {
  --bg: #f7f7fb;
  --surface: rgba(255,255,255,0.92);
  --surface-strong: #ffffff;
  --text: #162133;
  --muted: #617188;
  --border: rgba(22,33,51,0.12);
  --accent: #d97706;
  --accent-2: #fcd34d;
  --shadow: 0 22px 60px rgba(15,23,42,0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --section-gap: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.88), rgba(255,255,255,0) 40%), linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.page-shell { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  min-width: 0;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  flex: 0 0 auto;
}
.brand__text small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.contact-links a,
.pill,
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15,23,42,0.04);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.contact-links a:hover,
.nav a:hover,
.pill:hover,
.button:hover { transform: translateY(-1px); }
.hero {
  position: relative;
  overflow: hidden;
  margin: 18px auto 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.28;
  pointer-events: none;
}
.hero::before { width: 240px; height: 240px; background: var(--accent); top: -120px; right: -100px; }
.hero::after { width: 200px; height: 200px; background: var(--accent-2); bottom: -100px; left: -80px; }
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 34px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.72);
  color: var(--accent);
  font-weight: 800;
}
.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.05;
  word-break: break-word;
}
.hero p.lead {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 16px 28px rgba(0,0,0,0.14);
}
.button--ghost {
  background: rgba(255,255,255,0.92);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.nav a[aria-current="page"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
}
.section { margin-top: 26px; }
.section-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}
.section-title p { margin: 0; color: var(--muted); max-width: 64ch; }
.layout-grid,
.card-grid,
.feature-grid,
.contact-grid,
.footer__inner,
.hero-metrics { display: grid; gap: var(--section-gap); }
.layout-grid { grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.layout-card,
.card,
.contact-card,
.site-card,
.hero-panel,
.metric {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-strong);
  padding: 22px;
  box-shadow: 0 14px 28px rgba(15,23,42,0.05);
  min-width: 0;
}
.card h3,
.contact-card h3,
.layout-card h2,
.layout-card h3,
.site-card h2,
.section-title h2 { margin-top: 0; }
.card p,
.contact-card p,
.site-card p,
.layout-card p,
.metric span,
.hero-panel .panel-note { color: var(--muted); }
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--border);
}
.hero-list li div { min-width: 0; }
.hero-list strong { display: block; }
.badge-row,
.intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.metric strong { display: block; font-size: 1.35rem; }
.mini-quote {
  margin-top: 18px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.55);
  border-radius: 0 18px 18px 0;
}
.list-check { margin: 0; padding-left: 18px; }
.list-check li { margin: 8px 0; }
.footer {
  margin: 40px 0 26px;
  padding: 22px 0 8px;
  color: var(--muted);
}
.footer__inner {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  align-items: start;
}
.footer strong { color: var(--text); }
.page-home .hero h1 { max-width: 14ch; }
@media (max-width: 980px) {
  .layout-grid,
  .card-grid,
  .feature-grid,
  .contact-grid,
  .footer__inner,
  .hero-metrics { grid-template-columns: 1fr; }
  .section-title { flex-direction: column; align-items: start; }
}
@media (max-width: 720px) {
  .hero__inner { padding: 24px; }
  .topbar__inner { padding: 12px 0; }
  .brand, .contact-links, .contact-links a, .nav a, .hero__actions a, .button { width: 100%; }
  .page-shell { width: min(100% - 20px, var(--container)); }
  .hero h1 { font-size: clamp(1.8rem, 10vw, 3rem); }
}

:root {
  --bg: #fdf2f8;
  --surface: rgba(255,255,255,0.93);
  --surface-strong: #ffffff;
  --text: #3f1830;
  --muted: #7d6072;
  --border: rgba(63,24,48,0.12);
  --accent: #db2777;
  --accent-2: #fbcfe8;
  --shadow: 0 22px 60px rgba(15,23,42,0.12);
}
body {
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.88), rgba(255,255,255,0) 35%), linear-gradient(180deg, #fdf2f8 0%, #ffffff 100%);
}
.hero {
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.74));
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  text-align: left;
}
.hero-panel {
  width: 100%;
  background: rgba(255,255,255,0.74);
  color: #3f1830;
  border-color: rgba(63,24,48,0.12);
}
.hero-list li {
  background: rgba(255,255,255,0.72);
  border-color: rgba(63,24,48,0.12);
}
.card p, .contact-card p, .site-card p, .layout-card p, .metric span, .hero-panel .panel-note {
  color: #7d6072;
}
.mini-quote {
  background: rgba(255,255,255,0.58);
  color: #3f1830;
}


.site-card, .layout-card, .card, .contact-card, .metric {
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
}
