:root {
  --bg: #f6efe5;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #1d2238;
  --muted: #61718f;
  --line: rgba(29, 34, 56, 0.12);
  --primary: #0f766e;
  --primary-strong: #0b5f58;
  --accent: #d96d4e;
  --accent-soft: rgba(217, 109, 78, 0.14);
  --shadow: 0 28px 80px rgba(29, 34, 56, 0.12);
  --shadow-soft: 0 14px 40px rgba(29, 34, 56, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 109, 78, 0.16), transparent 24rem),
    radial-gradient(circle at right 20%, rgba(15, 118, 110, 0.12), transparent 22rem),
    linear-gradient(180deg, #fbf5ee 0%, #f6efe5 42%, #f3ebdf 100%);
}

[id] {
  scroll-margin-top: 118px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 16px auto 28px;
}

.topbar,
.trust-band,
.section,
.cta-panel,
.footer {
  backdrop-filter: blur(18px);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-footer {
  width: 148px;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
}

.brand-text strong,
.footer-brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.topbar-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  min-width: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topnav a:hover,
.ghost-link:hover,
.inline-link:hover,
.footer-links a:hover {
  color: var(--text);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.ghost-link,
.primary-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ghost-link,
.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
}

.primary-link,
.button-primary {
  background: var(--text);
  color: white;
  box-shadow: 0 18px 30px rgba(29, 34, 56, 0.16);
}

.primary-link:hover,
.button-primary:hover,
.button-secondary:hover,
.ghost-link:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  padding: 82px 0 54px;
  align-items: center;
}

.eyebrow,
.trust-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.hero h1,
.section h2,
.cta-panel h2 {
  margin: 14px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-head p,
.cta-panel p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.app-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pipeline-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.pipeline-pill.active {
  background: rgba(15, 118, 110, 0.12);
  color: var(--primary);
  border-color: rgba(15, 118, 110, 0.18);
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.stage-backdrop {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.9;
}

.stage-backdrop-one {
  top: 40px;
  right: 0;
  width: 230px;
  height: 230px;
  background: rgba(217, 109, 78, 0.22);
}

.stage-backdrop-two {
  bottom: 40px;
  left: 10px;
  width: 270px;
  height: 270px;
  background: rgba(15, 118, 110, 0.18);
}

.stage-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.stage-card-main {
  padding: 20px;
  z-index: 2;
}

.stage-card-side {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: min(320px, 86%);
  padding: 26px;
  background: linear-gradient(180deg, rgba(29, 34, 56, 0.94), rgba(15, 118, 110, 0.94));
  color: rgba(255, 255, 255, 0.92);
  z-index: 3;
}

.stage-card-side small,
.stage-header small {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.72rem;
}

.stage-card-side h3,
.stage-header h2 {
  margin: 10px 0 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.stage-card-side p {
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.window-bar {
  display: flex;
  gap: 8px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(29, 34, 56, 0.16);
}

.stage-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-top: 18px;
}

.stage-header small {
  color: var(--muted);
}

.status-pill,
.product-badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-badge.soft {
  background: rgba(15, 118, 110, 0.11);
  color: var(--primary);
}

.product-badge.warm {
  background: rgba(29, 34, 56, 0.08);
  color: var(--text);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.metric-box strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.metric-box span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

.timeline-card {
  margin-top: 18px;
  padding: 10px 4px 2px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:first-child {
  border-top: 0;
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.timeline-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: rgba(29, 34, 56, 0.18);
}

.timeline-item.active .timeline-dot {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.09);
}

.trust-band,
.section,
.cta-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 26px;
}

.trust-band strong {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
  font-size: 1rem;
}

.section {
  padding: 34px 30px;
}

.campaign-grid,
.ecosystem-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.campaign-grid,
.ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(15, 118, 110, 0.28);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.pricing-empty strong {
  display: block;
  font-size: 1.08rem;
}

.pricing-empty p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.campaign-card,
.ecosystem-card,
.pricing-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.campaign-card h3,
.ecosystem-card h3,
.pricing-card strong {
  display: block;
  margin-top: 14px;
}

.campaign-card h3,
.ecosystem-card h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.campaign-card p,
.ecosystem-card p,
.pricing-card span {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.ecosystem-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 234, 0.96));
}

.ecosystem-card-active {
  border-color: rgba(15, 118, 110, 0.2);
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.9));
}

.pricing-card small {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card strong {
  font-size: 2.2rem;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1;
}

.pricing-card-note {
  min-height: 48px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-card-audience {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(29, 34, 56, 0.04);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.pricing-card-audience strong {
  display: block;
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.35;
}

.pricing-card-audience span {
  display: block;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.1), rgba(255, 255, 255, 0.86));
  border-color: rgba(15, 118, 110, 0.2);
}

.pricing-button {
  width: 100%;
  margin-top: 22px;
}

.pricing-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(29, 34, 56, 0.04);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.pricing-note strong {
  display: block;
  margin-bottom: 8px;
}

.pricing-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 800;
}

.section-contrast {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(29, 34, 56, 0.92));
  color: white;
}

.section-contrast .eyebrow,
.section-contrast .section-head p,
.section-contrast .reason-card p {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  max-width: 780px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-head.narrow {
  max-width: 660px;
}

.product-grid,
.reason-grid,
.process-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid-single {
  grid-template-columns: minmax(0, 560px);
  justify-content: start;
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.reason-card,
.process-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.section-contrast .reason-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.product-card.featured {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.09), rgba(255, 255, 255, 0.8));
}

.product-card-link {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(29, 34, 56, 0.12);
  border-color: rgba(15, 118, 110, 0.24);
}

.card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.product-card h3,
.reason-card h3,
.process-step h3 {
  margin: 14px 0 0;
  font-size: 1.42rem;
  line-height: 1.18;
}

.product-card p,
.reason-card p,
.process-step p,
.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.section-contrast .reason-card h3 {
  color: white;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  padding-left: 18px;
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--primary);
  font-weight: 800;
}

.product-card .inline-link,
.product-card .product-top,
.product-card p,
.product-card ul {
  position: relative;
  z-index: 2;
}

.inline-link::after {
  content: "→";
}

.reason-index,
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  font-weight: 800;
}

.process-step span {
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 109, 78, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
  margin-top: 18px;
  padding: 22px 26px 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-company-note {
  grid-column: 1 / -1;
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.legal-page {
  position: relative;
  padding: 46px 0 18px;
}

.legal-page .reveal {
  opacity: 1;
  transform: none;
}

.legal-page::before,
.legal-page::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.legal-page::before {
  inset: 4px auto auto -56px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.2), transparent 68%);
}

.legal-page::after {
  right: -72px;
  top: 112px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(217, 109, 78, 0.16), transparent 70%);
}

.legal-hero {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: none;
  margin-bottom: 18px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(29, 34, 56, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 8%, rgba(37, 99, 235, 0.08), transparent 24rem),
    radial-gradient(circle at 0% 100%, rgba(15, 118, 110, 0.08), transparent 22rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.legal-hero::before {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 58px);
  bottom: -68px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(15, 118, 110, 0.08)),
    rgba(255, 255, 255, 0.44);
  transform: rotate(-8deg);
}

.legal-hero .eyebrow {
  width: fit-content;
  border: 1px solid rgba(15, 118, 110, 0.14);
  background: rgba(15, 118, 110, 0.08);
}

.legal-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0;
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.65rem, 5.8vw, 5.45rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-hero p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.78;
}

.legal-card {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(29, 34, 56, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(15, 118, 110, 0.05), transparent 20rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.legal-card h2,
.legal-card h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.legal-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.42rem, 2.5vw, 1.9rem);
}

.legal-card h2::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.legal-card h3 {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(29, 34, 56, 0.08);
  font-size: 1.18rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.legal-card p {
  margin: 12px 0 0;
}

.legal-card a {
  color: var(--primary);
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.1);
}

.seller-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 6px;
}

.seller-field {
  padding: 17px;
  border: 1px solid rgba(29, 34, 56, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 10rem),
    rgba(255, 255, 255, 0.66);
}

.seller-field span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seller-field strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  line-height: 1.45;
  word-break: break-word;
}

.legal-card .campaign-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.legal-card .campaign-card {
  min-height: 220px;
  border-color: rgba(29, 34, 56, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.66);
  box-shadow: none;
}

.legal-card .campaign-card h3 {
  margin-top: 16px;
  padding-top: 0;
  border-top: 0;
  font-size: 1.28rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 150px;
  }

  [id] {
    scroll-margin-top: 150px;
  }

  .topbar {
    border-radius: 28px;
    padding: 16px;
    flex-wrap: nowrap;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo {
    width: 150px;
  }

  .topbar-panel {
    margin-left: auto;
    width: auto;
    justify-content: space-between;
  }

  .hero,
  .detail-hero,
  .tools-hero,
  .trust-band,
  .ecosystem-grid,
  .campaign-grid,
  .product-grid,
  .pricing-grid,
  .reason-grid,
  .process-grid,
  .free-tools-grid,
  .tools-preview-grid,
  .tools-preview-footer,
  .theme-demo-grid,
  .feature-columns,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
  }

  .qr-builder-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .qr-type-panel,
  .qr-form-panel,
  .qr-preview-panel {
    width: 100%;
    min-width: 0;
  }

  .demo-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage {
    min-height: auto;
  }

  .stage-card-side {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .stage-mini-card {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 210px;
  }

  [id] {
    scroll-margin-top: 210px;
  }

  .site-shell {
    width: min(calc(100% - 18px), var(--container));
    margin: 10px auto 20px;
  }

  .topbar {
    top: 10px;
    border-radius: 24px;
    align-items: center;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
    text-align: left;
    min-width: 0;
  }

  .brand-logo {
    width: 116px;
  }

  .brand-text {
    align-items: flex-start;
    gap: 0;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .topnav {
    width: 100%;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
    font-size: 0.92rem;
  }

  .topnav a {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(29, 34, 56, 0.04);
    border: 1px solid rgba(29, 34, 56, 0.06);
  }

  .topbar-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(29, 34, 56, 0.08);
    box-shadow: 0 18px 40px rgba(29, 34, 56, 0.08);
  }

  .topbar.menu-open .topbar-panel {
    display: flex;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    justify-content: stretch;
    gap: 10px;
    order: 2;
  }

  .topnav {
    order: 1;
  }

  .topbar-actions a,
  .topnav a {
    min-height: 52px;
  }

  .ghost-link,
  .primary-link {
    justify-content: center;
  }

  .topbar-actions a {
    flex: 1 1 0;
  }

  .hero {
    padding: 52px 0 28px;
    gap: 26px;
  }

  .detail-hero {
    padding: 36px 0 10px;
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .theme-demo-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .qr-color-row {
    grid-template-columns: 1fr;
  }

  .wa-usage-grid {
    grid-template-columns: 1fr;
  }

  .tools-preview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .insight-strip {
    grid-template-columns: 1fr;
  }

  .app-pipeline {
    flex-direction: column;
    align-items: stretch;
  }

  .section,
  .cta-panel,
  .trust-band,
  .footer {
    padding: 24px 18px;
  }

  .qr-builder-hero {
    padding: 4px 0 6px;
  }

  .qr-builder-hero.section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .qr-builder-hero .section-head.narrow {
    max-width: none;
  }

  .qr-builder-hero .section-head p {
    margin-top: 14px;
  }

  .qr-type-panel,
  .qr-form-panel,
  .qr-preview-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .wa-form-panel,
  .wa-preview-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .qr-accordion-toggle strong {
    margin-top: 6px;
    font-size: 1.08rem;
  }

  .qr-accordion-content {
    margin-top: 14px;
  }

  .qr-panel-head h2 {
    font-size: 1.08rem;
  }

  .qr-panel-head p {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .qr-type-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    width: 100%;
  }

  .qr-type-button {
    padding: 10px 12px;
    border-radius: 14px;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
  }

  .qr-type-button strong {
    font-size: 0.88rem;
    word-break: break-word;
  }

  .qr-type-button span {
    margin-top: 4px;
    font-size: 0.76rem;
    line-height: 1.35;
    word-break: break-word;
  }

  .qr-form-grid {
    margin-top: 16px;
  }

  .qr-dynamic-fields {
    gap: 12px;
  }

  .qr-field-label {
    font-size: 0.88rem;
  }

  .qr-field-input {
    min-height: 48px;
    padding: 0 13px;
    border-radius: 13px;
    font-size: 0.95rem;
  }

  textarea.qr-field-input {
    min-height: 96px;
    padding: 12px 13px;
  }

  .qr-preview-shell {
    min-height: 246px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 18px;
  }

  .qr-preview-shell canvas {
    width: min(100%, 220px);
  }

  .qr-preview-empty {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .qr-form-actions,
  .qr-download-actions {
    flex-direction: column;
    gap: 10px;
  }

  .qr-form-actions .button,
  .qr-download-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .qr-builder-hero .section-head h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    line-height: 1.04;
  }

  .qr-builder-hero .section-head p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .wa-preview-card,
  .wa-output-box,
  .wa-usage-item {
    padding: 16px;
    border-radius: 18px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    padding-top: 26px;
  }

  .legal-hero {
    gap: 12px;
    padding: 22px;
    border-radius: 28px;
  }

  .legal-hero::before {
    width: 132px;
    height: 132px;
    right: -28px;
    bottom: -36px;
    opacity: 0.65;
  }

  .legal-hero h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: 1.02;
  }

  .legal-hero p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .legal-card {
    padding: 20px;
    border-radius: 28px;
  }

  .legal-card h2 {
    align-items: flex-start;
  }

  .legal-card .campaign-grid {
    grid-template-columns: 1fr;
  }

  .seller-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .topbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .topbar-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(29, 34, 56, 0.08);
    box-shadow: 0 18px 40px rgba(29, 34, 56, 0.08);
  }

  .topbar.menu-open .topbar-panel {
    display: flex;
  }

  .topnav {
    width: 100%;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
    font-size: 0.92rem;
    order: 1;
  }

  .topnav a {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(29, 34, 56, 0.04);
    border: 1px solid rgba(29, 34, 56, 0.06);
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    justify-content: stretch;
    gap: 10px;
    order: 2;
  }

  .topbar-actions a {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .qr-builder-layout {
    gap: 12px;
  }

  .qr-type-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .qr-type-button {
    min-width: 0;
    max-width: 100%;
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .qr-color-row {
    gap: 10px;
  }

  .qr-type-button strong {
    font-size: 0.84rem;
  }

  .qr-type-button span {
    display: block;
    margin-top: 4px;
    font-size: 0.74rem;
  }

  .qr-preview-shell {
    min-height: 224px;
  }

  .qr-type-panel,
  .qr-form-panel,
  .qr-preview-panel {
    padding: 14px;
  }

  .qr-builder-hero.section {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.insight-pill {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(29, 34, 56, 0.04);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.insight-pill strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.94rem;
}

.insight-pill span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.stage-mini-card {
  position: absolute;
  z-index: 1;
  padding: 18px 18px 16px;
  width: 220px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.stage-mini-card span {
  display: block;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.stage-mini-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.stage-mini-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.stage-mini-card-one {
  left: -18px;
  top: 86px;
}

.stage-mini-card-two {
  left: 18px;
  bottom: 34px;
}

.topbar-static {
  position: relative;
  top: auto;
}

.product-page {
  padding-top: 24px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 34px;
  padding: 46px 0 20px;
  align-items: center;
}

.detail-copy h1 {
  margin: 14px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.detail-visual {
  position: relative;
}

.visual-frame {
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.visual-frame.dark-frame {
  background: linear-gradient(180deg, rgba(29, 34, 56, 0.95), rgba(38, 50, 89, 0.95));
  color: white;
}

.visual-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.visual-top strong {
  font-size: 1.12rem;
}

.visual-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.visual-panel {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(29, 34, 56, 0.05);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.visual-panel.dark {
  background: rgba(29, 34, 56, 0.92);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.visual-panel.accent {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.11), rgba(217, 109, 78, 0.12));
}

.visual-panel h3,
.feature-list-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.visual-panel p {
  margin: 10px 0 0;
  color: inherit;
  opacity: 0.8;
  line-height: 1.65;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.theme-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.theme-demo-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.theme-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.theme-demo-top strong {
  font-size: 1.08rem;
}

.theme-demo-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.phone-preview {
  position: relative;
  width: min(100%, 280px);
  margin: 20px auto 0;
  padding: 12px;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 24px 45px rgba(29, 34, 56, 0.2);
}

.phone-notch {
  width: 92px;
  height: 12px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-screen {
  padding: 18px 14px;
  border-radius: 22px;
  min-height: 260px;
}

.phone-hero-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.phone-hero-line.long {
  width: 82%;
}

.phone-hero-line.short {
  width: 54%;
  margin-top: 10px;
}

.phone-chip-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.phone-chip-row span {
  width: 58px;
  height: 26px;
  border-radius: 999px;
}

.phone-card-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.phone-card-row div {
  height: 76px;
  border-radius: 18px;
}

.phone-preview-midnight .phone-screen {
  background: linear-gradient(180deg, #0b1220, #152342);
}

.phone-preview-midnight .phone-chip-row span:nth-child(1),
.phone-preview-midnight .phone-card-row div:nth-child(1) {
  background: rgba(215, 178, 76, 0.95);
}

.phone-preview-midnight .phone-chip-row span:nth-child(2),
.phone-preview-midnight .phone-card-row div:nth-child(2) {
  background: rgba(45, 212, 191, 0.9);
}

.phone-preview-midnight .phone-chip-row span:nth-child(3) {
  background: rgba(96, 165, 250, 0.92);
}

.phone-preview-ivory {
  background: #e6e2db;
}

.phone-preview-ivory .phone-screen {
  background: linear-gradient(180deg, #f7f3ee, #ffffff);
}

.phone-preview-ivory .phone-hero-line {
  background: rgba(15, 23, 42, 0.78);
}

.phone-preview-ivory .phone-chip-row span:nth-child(1),
.phone-preview-ivory .phone-card-row div:nth-child(1) {
  background: rgba(15, 118, 110, 0.92);
}

.phone-preview-ivory .phone-chip-row span:nth-child(2),
.phone-preview-ivory .phone-card-row div:nth-child(2) {
  background: rgba(37, 99, 235, 0.86);
}

.phone-preview-ivory .phone-chip-row span:nth-child(3) {
  background: rgba(16, 185, 129, 0.88);
}

.phone-preview-graphite .phone-screen {
  background: linear-gradient(180deg, #0b0c10, #1f2937);
}

.phone-preview-graphite .phone-chip-row span:nth-child(1),
.phone-preview-graphite .phone-card-row div:nth-child(1) {
  background: rgba(251, 113, 133, 0.94);
}

.phone-preview-graphite .phone-chip-row span:nth-child(2),
.phone-preview-graphite .phone-card-row div:nth-child(2) {
  background: rgba(56, 189, 248, 0.9);
}

.phone-preview-graphite .phone-chip-row span:nth-child(3) {
  background: rgba(167, 139, 250, 0.92);
}

.phone-preview-cafe {
  background: #efe9df;
}

.phone-preview-cafe .phone-screen {
  background: linear-gradient(180deg, #faf8f5, #fff6e9);
}

.phone-preview-cafe .phone-hero-line {
  background: rgba(17, 24, 39, 0.78);
}

.phone-preview-cafe .phone-chip-row span:nth-child(1),
.phone-preview-cafe .phone-card-row div:nth-child(1) {
  background: rgba(141, 110, 99, 0.94);
}

.phone-preview-cafe .phone-chip-row span:nth-child(2),
.phone-preview-cafe .phone-card-row div:nth-child(2) {
  background: rgba(255, 107, 0, 0.88);
}

.phone-preview-cafe .phone-chip-row span:nth-child(3) {
  background: rgba(37, 99, 235, 0.84);
}

.demo-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(217, 109, 78, 0.1));
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.demo-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.demo-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.demo-note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-list-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.metric-grid-inline {
  margin-top: 22px;
}

.metric-box.inverse {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.metric-box.inverse span {
  color: rgba(255, 255, 255, 0.7);
}

.detail-timeline {
  margin-top: 20px;
}

.tools-page {
  padding-top: 24px;
}

.tools-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  gap: 34px;
  padding: 44px 0 18px;
  align-items: center;
}

.tools-preview-shell {
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.tools-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.tools-preview-header small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.tools-preview-header strong {
  display: block;
  margin-top: 8px;
  font-size: 1.16rem;
  line-height: 1.3;
}

.tools-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.tools-preview-card {
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(29, 34, 56, 0.04);
}

.tools-preview-card-strong {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(255, 255, 255, 0.96));
  border-color: rgba(15, 118, 110, 0.16);
}

.tools-preview-card span {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tools-preview-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.45;
}

.tools-preview-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tools-preview-stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.tools-preview-stat strong {
  display: block;
  font-size: 1rem;
}

.tools-preview-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.free-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.free-tool-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.free-tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
}

.free-tool-icon svg {
  width: 24px;
  height: 24px;
}

.free-tool-card h3 {
  margin: 18px 0 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.free-tool-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.sector-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 700;
}

.qr-builder-hero {
  padding-bottom: 18px;
}

.wa-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.wa-form-panel,
.wa-preview-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.wa-form-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.wa-country-row {
  display: grid;
}

.wa-preview-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.98));
}

.wa-preview-meta {
  display: grid;
  gap: 10px;
}

.wa-preview-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wa-preview-meta strong {
  font-size: 1.18rem;
  line-height: 1.3;
}

.wa-preview-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.wa-output-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(29, 34, 56, 0.03);
  border: 1px solid rgba(29, 34, 56, 0.08);
}

.wa-output-field {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(29, 34, 56, 0.08);
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.65;
  word-break: break-word;
}

.wa-output-actions {
  margin-top: 18px;
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.wa-usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.wa-usage-item {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  line-height: 1.55;
}

.qr-builder-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.1fr) minmax(280px, 0.88fr);
  gap: 20px;
  align-items: start;
}

.qr-type-panel,
.qr-form-panel,
.qr-preview-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.qr-accordion-toggle {
  display: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.qr-accordion-toggle span {
  display: block;
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.qr-accordion-toggle strong {
  display: block;
  margin-top: 8px;
  padding-right: 36px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.qr-accordion-toggle::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(29, 34, 56, 0.12);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.qr-accordion.is-open .qr-accordion-toggle::after {
  content: '−';
  color: var(--text);
  border-color: rgba(15, 118, 110, 0.2);
}

.qr-accordion-content {
  display: block;
}

.qr-panel-head h2 {
  margin: 10px 0 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.qr-panel-head p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.qr-type-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.qr-type-button {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(29, 34, 56, 0.08);
  background: rgba(29, 34, 56, 0.03);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.qr-type-button:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.18);
}

.qr-type-button.is-active {
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.2);
}

.qr-type-button strong {
  display: block;
  font-size: 0.98rem;
}

.qr-type-button span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.qr-form-grid {
  margin-top: 22px;
}

.qr-dynamic-fields {
  display: grid;
  gap: 14px;
}

.qr-field {
  display: grid;
  gap: 8px;
}

.qr-field-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.qr-field-input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border-radius: 16px;
  border: 1px solid rgba(29, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.qr-field-input {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.qr-field-input:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
}

.qr-color-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.qr-color-field {
  display: grid;
  gap: 8px;
}

.qr-color-field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.qr-color-field input[type="color"] {
  width: 100%;
  height: 52px;
  padding: 4px;
  border-radius: 16px;
  border: 1px solid rgba(29, 34, 56, 0.1);
  background: white;
  cursor: pointer;
}

.qr-form-actions,
.qr-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.qr-form-alert {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.14);
  color: #991b1b;
  font-weight: 600;
  line-height: 1.6;
}

.qr-preview-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  border: 1px dashed rgba(29, 34, 56, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
}

.qr-preview-shell canvas {
  width: min(100%, 320px);
  height: auto;
  border-radius: 18px;
  background: white;
  box-shadow: 0 16px 36px rgba(29, 34, 56, 0.08);
}

.qr-preview-empty {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(29, 34, 56, 0.05);
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1280px) {
  .qr-builder-layout {
    display: block !important;
  }

  .qr-type-panel,
  .qr-form-panel,
  .qr-preview-panel {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .qr-form-panel,
  .qr-preview-panel {
    margin-top: 18px;
  }

  .qr-accordion-toggle {
    position: relative;
    display: block;
  }

  .qr-accordion-content {
    display: none;
    margin-top: 18px;
  }

  .qr-accordion.is-open .qr-accordion-content {
    display: block;
  }

  .qr-type-list,
  .qr-dynamic-fields,
  .qr-form-grid,
  .qr-preview-shell,
  .qr-download-actions {
    width: 100%;
    min-width: 0;
  }

  .wa-builder-layout {
    grid-template-columns: 1fr;
  }

  .wa-preview-panel {
    margin-top: 18px;
  }
}

/* Dub-inspired homepage direction: rice-paper canvas, frosted dashboard, compact SaaS rhythm. */
.home-page {
  --bg: #f7f5f0;
  --bg-soft: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --accent: #f97316;
  --accent-soft: #fff7ed;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 16px 44px rgba(17, 24, 39, 0.06);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16px 16px, rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf7 0%, #f7f5f0 58%, #ffffff 100%);
  background-size: 24px 24px, auto;
}

.home-page .site-shell {
  width: min(calc(100% - 48px), 1360px);
  margin-top: 14px;
}

.home-page .topbar {
  top: 14px;
  border-radius: 18px;
  border-color: rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.home-page .brand-logo {
  width: 132px;
}

.home-page .brand-text small {
  font-size: 0.72rem;
}

.home-page .topnav {
  gap: 18px;
  font-size: 0.88rem;
}

.home-page .ghost-link,
.home-page .primary-link,
.home-page .button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.home-page .primary-link,
.home-page .button-primary {
  background: #111827;
  color: #ffffff;
  box-shadow: none;
}

.home-page .button-secondary,
.home-page .ghost-link {
  background: #ffffff;
  border-color: var(--line);
}

.home-page .hero-dub {
  display: block;
  padding: 58px 0 24px;
  text-align: center;
}

.home-page .hero-copy {
  max-width: 940px;
  margin: 0 auto;
}

.home-page .hero-feature-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.home-page .feature-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: #ffffff;
}

.home-page .feature-pill-blue {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.home-page .feature-pill-green {
  color: #047857;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.home-page .feature-pill-orange {
  color: #c2410c;
  background: #fff7ed;
  border-color: #fed7aa;
}

.home-page .feature-pill-violet {
  color: #6d28d9;
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.home-page .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #475467;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.home-page h1,
.home-page h2 {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  letter-spacing: -0.055em;
}

.home-page .hero h1 {
  max-width: 980px;
  margin: 16px auto 0;
  font-size: clamp(3rem, 6.6vw, 5.85rem);
  font-weight: 600;
  line-height: 0.94;
}

.home-page .hero-lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: #475467;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.68;
}

.home-page .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.home-page .hero-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
}

.home-page .hero-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #475467;
  font-size: 0.84rem;
  font-weight: 600;
}

.home-page .hero-stage {
  position: relative;
  max-width: 1120px;
  margin: 52px auto 0;
}

.home-page .product-mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 12%, rgba(37, 99, 235, 0.08), transparent 26rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: left;
}

.home-page .mockup-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #667085;
}

.home-page .mockup-topline div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-page .mockup-topline span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.home-page .mockup-topline strong {
  color: var(--text);
  font-size: 0.92rem;
}

.home-page .mockup-status {
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
}

.home-page .mockup-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 440px;
}

.home-page .mockup-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.72);
}

.home-page .mockup-sidebar strong {
  margin-bottom: 10px;
  color: #111827;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.home-page .mockup-nav-item {
  padding: 10px 12px;
  border-radius: 10px;
  color: #667085;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-page .mockup-nav-item.active {
  background: #eff6ff;
  color: #1d4ed8;
}

.home-page .mockup-main {
  padding: 26px;
}

.home-page .mockup-header,
.home-page .mockup-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr 0.7fr;
  align-items: center;
  gap: 18px;
}

.home-page .mockup-header {
  display: flex;
  justify-content: space-between;
}

.home-page .mockup-header small {
  color: #667085;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
}

.home-page .mockup-header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.home-page .mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.home-page .mockup-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.home-page .mockup-metrics span,
.home-page .mockup-row-head,
.home-page .floating-pill-card span {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-page .mockup-metrics strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.home-page .mockup-table {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.home-page .mockup-row {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: #344054;
  font-weight: 650;
}

.home-page .mockup-row:first-child {
  border-top: 0;
}

.home-page .mockup-row strong {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.82rem;
}

.home-page .floating-pill-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.home-page .floating-pill-card strong {
  color: #111827;
  font-size: 0.95rem;
}

.home-page .floating-pill-card-left {
  left: 28px;
  bottom: 34px;
}

.home-page .floating-pill-card-right {
  right: 28px;
  top: 92px;
}

.home-page .trust-band,
.home-page .section,
.home-page .cta-panel,
.home-page .footer {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.home-page .section-contrast {
  color: #111827;
  background:
    radial-gradient(circle at 90% 14%, rgba(15, 118, 110, 0.1), transparent 24rem),
    radial-gradient(circle at 12% 90%, rgba(249, 115, 22, 0.08), transparent 22rem),
    rgba(255, 255, 255, 0.88);
}

.home-page .section,
.home-page .cta-panel {
  border-radius: 22px;
}

.home-page .section-head h2,
.home-page .cta-panel h2 {
  font-weight: 600;
  color: #111827;
}

.home-page .section-head p,
.home-page .campaign-card p,
.home-page .reason-card p,
.home-page .process-step p,
.home-page .footer p {
  color: #667085;
}

.home-page .section-contrast .eyebrow {
  color: #475467;
  background: rgba(255, 255, 255, 0.76);
}

.home-page .product-card,
.home-page .pricing-card,
.home-page .campaign-card,
.home-page .reason-card,
.home-page .process-step {
  border-color: var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
}

.home-page .reason-grid {
  align-items: stretch;
}

.home-page .reason-card {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
}

.home-page .reason-card h3,
.home-page .section-contrast .reason-card h3 {
  color: #111827;
}

.home-page .section-contrast .reason-card p {
  color: #667085;
}

.home-page .reason-index {
  width: 44px;
  height: 44px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1d4ed8;
}

.site-page {
  --bg: #f7f5f0;
  --bg-soft: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --accent: #f97316;
  --accent-soft: #fff7ed;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 16px 44px rgba(17, 24, 39, 0.06);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16px 16px, rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf7 0%, #f7f5f0 58%, #ffffff 100%);
  background-size: 24px 24px, auto;
}

.site-page .site-shell {
  width: min(calc(100% - 48px), 1360px);
}

.site-page .topbar-static {
  border-radius: 18px;
  border-color: rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.site-page .brand-logo {
  width: 124px;
}

.site-page .topnav {
  gap: 14px;
  font-size: 0.88rem;
}

.site-page .topbar-panel {
  gap: 12px;
}

.site-page .ghost-link,
.site-page .primary-link,
.site-page .button {
  min-height: 42px;
  border-radius: 8px;
  box-shadow: none;
  padding-inline: 14px;
  white-space: nowrap;
}

.site-page .primary-link,
.site-page .button-primary {
  background: #111827;
  color: #ffffff;
}

.site-page .button-secondary,
.site-page .ghost-link {
  background: #ffffff;
  border-color: var(--line);
}

.site-page .hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.site-page .feature-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-page .feature-pill-blue {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.site-page .feature-pill-green {
  color: #047857;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.site-page .feature-pill-orange {
  color: #c2410c;
  background: #fff7ed;
  border-color: #fed7aa;
}

.site-page .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #475467;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.site-page .tools-hero,
.site-page .detail-hero {
  gap: 42px;
  padding: 64px 0 24px;
}

.site-page .tools-hero-copy h1,
.site-page .detail-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(3.1rem, 6.8vw, 5.9rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.site-page .hero-lead {
  max-width: 680px;
  color: #475467;
}

.site-page .tools-preview-shell,
.site-page .visual-frame,
.site-page .section,
.site-page .cta-panel,
.site-page .footer {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.site-page .tools-preview-shell,
.site-page .visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.site-page .tools-preview-shell::before,
.site-page .visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.1), transparent 22rem);
}

.site-page .tools-preview-header,
.site-page .tools-preview-grid,
.site-page .tools-preview-footer,
.site-page .visual-top,
.site-page .visual-stack {
  position: relative;
}

.site-page .tools-preview-card,
.site-page .tools-preview-stat,
.site-page .visual-panel,
.site-page .theme-demo-card,
.site-page .feature-list-card,
.site-page .free-tool-card,
.site-page .sector-tag {
  border-color: var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.site-page .tools-preview-card-strong,
.site-page .visual-panel.accent,
.site-page .demo-note {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.site-page .free-tools-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.site-page .free-tool-card {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 20px;
}

.site-page .free-tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
}

.site-page .free-tool-card h3 {
  margin-top: 18px;
  font-size: 1.16rem;
  letter-spacing: -0.03em;
}

.site-page .free-tool-card p {
  font-size: 0.93rem;
  line-height: 1.65;
}

.site-page .free-tool-card .inline-link {
  margin-top: auto;
  padding-top: 18px;
}

.site-page .phone-preview {
  box-shadow: none;
}

.site-page .feature-list li::before {
  background: #2563eb;
}

.site-page .about-identity-frame {
  background:
    radial-gradient(circle at 84% 8%, rgba(15, 118, 110, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
}

.site-page .about-seller-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
}

.site-page .reservation-visual-frame {
  background:
    radial-gradient(circle at 82% 10%, rgba(249, 115, 22, 0.12), transparent 19rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
  color: #111827;
}

.site-page .reservation-visual-frame .visual-top {
  padding-bottom: 8px;
}

.site-page .reservation-visual-frame .visual-top strong {
  color: #111827;
  letter-spacing: -0.03em;
}

.site-page .reservation-visual-frame .status-pill {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.site-page .reservation-flow-card {
  min-height: 132px;
  border-color: #e5e7eb;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
}

.site-page .reservation-flow-card.active {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.site-page .reservation-flow-card h3 {
  color: #111827;
}

.site-page .reservation-flow-card p {
  color: #475467;
  opacity: 1;
}

@media (max-width: 980px) {
  .home-page .site-shell {
    width: min(calc(100% - 24px), 1200px);
  }

  .home-page .topbar,
  .site-page .topbar {
    align-items: center;
    padding: 10px;
    border-radius: 18px;
  }

  .home-page .brand,
  .site-page .brand {
    gap: 10px;
  }

  .home-page .brand-logo,
  .site-page .brand-logo {
    width: 96px;
  }

  .home-page .brand-text,
  .site-page .brand-text {
    display: none;
  }

  .home-page .menu-toggle,
  .site-page .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .home-page .hero-dub {
    padding-top: 42px;
  }

  .home-page .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    line-height: 0.96;
  }

  .home-page .hero-feature-pills {
    margin-top: 0;
  }

  .home-page .hero-points li {
    width: 100%;
    justify-content: center;
    min-height: auto;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .home-page .mockup-shell {
    grid-template-columns: 1fr;
  }

  .home-page .mockup-sidebar {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-page .mockup-sidebar strong {
    display: none;
  }

  .home-page .mockup-main {
    padding: 18px;
  }

  .home-page .mockup-metrics {
    grid-template-columns: 1fr;
  }

  .home-page .mockup-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-page .mockup-row-head {
    display: none;
  }

  .home-page .floating-pill-card {
    position: static;
    margin: 12px 18px 0;
  }

  .site-page .site-shell {
    width: min(calc(100% - 24px), 1200px);
  }

  .site-page .tools-hero,
  .site-page .detail-hero {
    padding-top: 42px;
    gap: 26px;
  }

  .site-page .tools-hero-copy h1,
  .site-page .detail-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    line-height: 0.96;
  }

  .site-page .free-tools-grid {
    grid-template-columns: 1fr;
  }

  .site-page .free-tool-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .home-page .topbar,
  .site-page .topbar {
    top: 8px;
  }

  .home-page .brand-logo,
  .site-page .brand-logo {
    width: 88px;
  }

  .home-page .hero-dub,
  .site-page .tools-hero,
  .site-page .detail-hero {
    padding-top: 26px;
  }

  .home-page .hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.35rem);
    line-height: 0.98;
  }

  .home-page .hero-feature-pills,
  .site-page .hero-feature-pills {
    justify-content: center;
  }

  .home-page .hero-actions,
  .site-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .mockup-topline,
  .site-page .tools-preview-header,
  .site-page .visual-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
