:root {
  --bg: #fbfcfc;
  --surface: #dadfe4;
  --muted: #bcc4c9;
  --accent-soft: #65c9d4;
  --accent: #348adc;
  --text: #072741;

  --accent-warm: #d9a441;
  --accent-warm-soft: #f3d38c;

  --ok-soft: #bfe8c8;
  --ok: #72c38f;
  --ok-deep: #2f7a4b;

  --surface-glass: rgba(218, 223, 228, 0.26);
  --surface-card: rgba(251, 252, 252, 0.9);
  --surface-card-strong: rgba(251, 252, 252, 0.96);
  --border: rgba(188, 196, 201, 0.78);
  --border-strong: rgba(188, 196, 201, 0.96);
  --text-soft: rgba(7, 39, 65, 0.72);
  --text-muted: rgba(7, 39, 65, 0.52);

  --shadow-soft: 0 10px 28px rgba(7, 39, 65, 0.05);
  --shadow-card: 0 16px 42px rgba(7, 39, 65, 0.07);
  --shadow-hover: 0 20px 52px rgba(7, 39, 65, 0.1);
  --shadow-warm: 0 18px 40px rgba(217, 164, 65, 0.18);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Afacad', sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(218, 223, 228, 0.16) 0%, rgba(251, 252, 252, 1) 220px);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 14px 0;

  background: rgba(251, 252, 252, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(188, 196, 201, 0.32);
}

.header-content {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  min-height: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  flex-shrink: 0;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: var(--text);
  box-shadow: var(--shadow-soft);
}



.topnav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--accent);
}

.landing {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 38px 0 84px;
}

.hero {
  text-align: center;
  padding: 56px 28px 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(251, 252, 252, 0.98) 0%, rgba(251, 252, 252, 0.92) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(101, 201, 212, 0.08);
  border: 1px solid rgba(101, 201, 212, 0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.hero h1 {
  width: min(930px, 100%);
  margin: 26px auto 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 780;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy {
  width: min(760px, 100%);
  margin: 24px auto 0;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.78;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 680;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(52, 138, 220, 0.12),
    var(--shadow-soft);
}

.btn-primary {
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent) 0%, rgba(52, 138, 220, 0.88) 100%);
  box-shadow: 0 14px 30px rgba(52, 138, 220, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(52, 138, 220, 0.24);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary-warm {
  background: linear-gradient(135deg, var(--accent-warm) 0%, rgba(217, 164, 65, 0.90) 100%);
  box-shadow: 0 14px 30px rgba(217, 164, 65, 0.24);
  color: var(--text);
}

.btn-primary-warm:hover,
.btn-primary-warm:focus-visible {
  box-shadow: 0 18px 38px rgba(217, 164, 65, 0.30);
}

.btn-ghost {
  background: var(--surface-card-strong);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(52, 138, 220, 0.42);
  box-shadow: var(--shadow-hover);
}

.ok-badge {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(191, 232, 200, 0.28);
  border: 1px solid rgba(114, 195, 143, 0.34);
  color: var(--ok-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ok-badge svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.ok-inline {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ok-deep);
  font-size: 12px;
  font-weight: 700;
}

.ok-inline svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.3;
  color: var(--ok);
}

.section-ok {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(191, 232, 200, 0.18);
  border: 1px solid rgba(114, 195, 143, 0.24);
  color: var(--ok-deep);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.section-ok svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
  flex: 0 0 auto;
  color: var(--ok);
}

.section-ok-center {
  margin-left: auto;
  margin-right: auto;
}

.module-ok {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(191, 232, 200, 0.20);
  border: 1px solid rgba(114, 195, 143, 0.24);
  color: var(--ok-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.module-ok svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.3;
  color: var(--ok);
}

/* SHOWCASE */

.hero-showcase {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-main,
.showcase-side {
  display: grid;
  gap: 18px;
}

.showcase-main {
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(218, 223, 228, 0.22) 0%, rgba(251, 252, 252, 0.94) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

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

.showcase-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(52, 138, 220, 0.1);
  color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.showcase-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.showcase-overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.showcase-header h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(251, 252, 252, 0.88);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-warm);
  box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.42);
  animation: pulseDot 2.2s infinite ease-out;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.40);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(217, 164, 65, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 164, 65, 0);
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(180px, 0.72fr));
  gap: 18px;
}

.chart-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-card-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.chart-card-large {
  grid-column: 1 / 2;
}

.insights-card {
  grid-column: 1 / 4;
}

.chart-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.chart-card-head span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.chart-card-head strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.chart-card-head.compact {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.bars {
  display: grid;
  gap: 16px;
}

.bar-row {
  display: grid;
  gap: 8px;
}

.bar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.bar-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(188, 196, 201, 0.28);
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  width: 0;
  position: relative;
  overflow: hidden;
  animation: growBar 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(251, 252, 252, 0.18) 35%,
    rgba(251, 252, 252, 0.50) 50%,
    rgba(251, 252, 252, 0.18) 65%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: sweepBar 2.8s linear infinite;
}

.fill-ui {
  --bar-target: 72%;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
}

.fill-backend {
  --bar-target: 48%;
  background: linear-gradient(90deg, var(--accent), rgba(52, 138, 220, 0.82));
  animation-delay: 0.15s;
}

.fill-qa {
  --bar-target: 31%;
  background: linear-gradient(90deg, var(--accent-warm-soft), var(--accent-warm));
  animation-delay: 0.3s;
}

@keyframes growBar {
  from { width: 0; }
  to { width: var(--bar-target); }
}

@keyframes sweepBar {
  from { transform: translateX(-120%); }
  to { transform: translateX(140%); }
}

.radial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.radial {
  --value: 68;
  --ring-color: var(--accent);
  --ring-soft: rgba(101, 201, 212, 0.22);
  width: 150px;
  height: 150px;
  margin: 8px auto 0;
  border-radius: 50%;
  position: relative;
  background:
    conic-gradient(var(--ring-color) calc(var(--value) * 1%), var(--ring-soft) 0);
  animation: spinIn 1.3s ease both;
}

.radial::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: var(--surface-card-strong);
  box-shadow: inset 0 0 0 1px rgba(188, 196, 201, 0.42);
}

.radial-accent {
  --value: 68;
  --ring-color: var(--accent);
  --ring-soft: rgba(101, 201, 212, 0.18);
}

.radial-warm {
  --value: 82;
  --ring-color: var(--accent-warm);
  --ring-soft: rgba(243, 211, 140, 0.28);
}

.radial-warm-card {
  border-color: rgba(217, 164, 65, 0.26);
  box-shadow: var(--shadow-warm);
}

.radial-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 4px;
}

.radial-inner strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.radial-inner span {
  display: block;
  margin-top: 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-soft);
}

@keyframes spinIn {
  0% {
    transform: scale(0.9) rotate(-40deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

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

.insights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(218, 223, 228, 0.22);
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.insights-list li:nth-child(2) {
  background: rgba(243, 211, 140, 0.16);
}

.insights-list li svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 auto;
  color: var(--accent);
  stroke-width: 2;
}

.insights-list li:nth-child(2) svg,
.insights-list li:nth-child(3) svg {
  color: var(--accent-warm);
}

.showcase-side {
  align-content: start;
}

.signal-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-card-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.signal-card-warm {
  border-color: rgba(217, 164, 65, 0.28);
  box-shadow: var(--shadow-warm);
}

.signal-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.signal-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(52, 138, 220, 0.1);
  color: var(--accent);
}

.signal-card-warm .signal-icon {
  background: rgba(217, 164, 65, 0.14);
  color: var(--accent-warm);
}

.signal-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.signal-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.signal-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.signal-line {
  width: 100%;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: rgba(188, 196, 201, 0.26);
}

.signal-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  animation: travelLine 3s ease-in-out infinite;
}

.signal-line-cool::after {
  background: linear-gradient(90deg, transparent, var(--accent-soft), var(--accent), transparent);
}

.signal-line-warm::after {
  background: linear-gradient(90deg, transparent, var(--accent-warm-soft), var(--accent-warm), transparent);
}

@keyframes travelLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* METRICS */

.hero-panel {
  width: min(980px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric-card {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-card-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(52, 138, 220, 0.34);
}

.metric-card-warm {
  border-color: rgba(217, 164, 65, 0.28);
  box-shadow: var(--shadow-warm);
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(101, 201, 212, 0.1);
  color: var(--accent);
}

.metric-icon-warm {
  background: rgba(217, 164, 65, 0.14);
  color: var(--accent-warm);
}

.metric-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.metric-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 560;
}

.metric-value {
  display: block;
  margin-top: 12px;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 760;
}

.metric-note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* CONTENT */

.content-block,
.cta-box {
  margin-top: 28px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.section-warm {
  border-color: rgba(217, 164, 65, 0.24);
}

.section-warm-soft {
  background: linear-gradient(180deg, rgba(251, 252, 252, 0.94) 0%, rgba(243, 211, 140, 0.08) 100%);
  border-color: rgba(217, 164, 65, 0.20);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker-warm {
  color: var(--accent-warm);
}

.section-kicker svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.content-block h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 760;
}

.content-block p,
.cta-box p {
  margin: 18px 0 0;
  max-width: 860px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.78;
}

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

.flow-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface-card-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.flow-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(52, 138, 220, 0.34);
}

.flow-card-warm {
  border-color: rgba(217, 164, 65, 0.26);
  box-shadow: var(--shadow-warm);
}

.flow-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(52, 138, 220, 0.1);
  color: var(--accent);
}

.flow-icon-warm {
  background: rgba(217, 164, 65, 0.14);
  color: var(--accent-warm);
}

.flow-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.flow-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.flow-card h3 {
  margin: 18px 0 0;
  font-size: 21px;
  line-height: 1.24;
  font-weight: 700;
}

.flow-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.74;
  color: var(--text-soft);
}

.flow-card .module-ok {
  margin-top: 16px;
}

.benefits-list {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-card-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.benefit-item-warm {
  border-color: rgba(217, 164, 65, 0.26);
  box-shadow: var(--shadow-warm);
}

.benefit-dot {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(101, 201, 212, 0.1);
  color: var(--accent);
  flex: 0 0 auto;
}

.benefit-dot-warm {
  background: rgba(217, 164, 65, 0.14);
  color: var(--accent-warm);
}

.benefit-dot svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.benefit-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;
}

.benefit-item p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-soft);
}

.benefit-item .module-ok {
  margin-top: 14px;
}

.cta-box {
  text-align: center;
}

.cta-box-warm {
  background: linear-gradient(180deg, rgba(251, 252, 252, 0.96) 0%, rgba(243, 211, 140, 0.10) 100%);
  border-color: rgba(217, 164, 65, 0.26);
  box-shadow: var(--shadow-warm);
}

.cta-box p {
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .hero-showcase {
    grid-template-columns: 1fr;
  }

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

  .insights-card {
    grid-column: 1 / 3;
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero-panel,
  .flow-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .insights-card,
  .chart-card-large {
    grid-column: auto;
  }

  .content-block,
  .cta-box,
  .showcase-main {
    padding: 26px;
  }
}

@media (max-width: 640px) {
  .landing {
    padding-top: 24px;
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding: 34px 18px 18px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .content-block h2,
  .cta-box h2 {
    font-size: 30px;
  }

  .metric-card,
  .flow-card,
  .benefit-item,
  .chart-card,
  .signal-card {
    padding: 18px;
  }

  .content-block,
  .cta-box,
  .showcase-main {
    padding: 20px;
    border-radius: 24px;
  }

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

  .radial {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 12px 0;
  }

  .header-content {
    width: min(calc(100% - 24px), var(--container));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .brand {
    height: 36px;
  }

  .brand img {
    height: 100%;
    max-width: 160px;
  }

  .topnav {
    width: 100%;
    justify-content: center;
    gap: 8px 18px;
    font-size: 13px;
  }

  .topnav a {
    min-height: 32px;
    color: var(--text-soft);
  }

  .landing {
    margin-top: 108px;
  }
}

@media (max-width: 480px) {
  .header-content {
    gap: 8px;
  }

  .brand {
    height: 32px;
  }

  .brand img {
    max-width: 145px;
  }

  .topnav {
    gap: 6px 14px;
    font-size: 12px;
  }

  .topnav a {
    min-height: 28px;
  }

  .landing {
    margin-top: 98px;
  }
}