:root {
  --coffee-50: #f4f8fb;
  --coffee-100: #e3edf4;
  --coffee-200: #bed6e6;
  --coffee-300: #8db9d0;
  --coffee-500: #316f8d;
  --coffee-700: #204a60;
  --coffee-800: #1f3f52;
  --coffee-900: #0f2635;
  --leaf: #4d7654;
  --crema: #d6a85d;
  --ink: #11212c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 38, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--coffee-50);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(190, 214, 230, 0.6);
  background: rgba(244, 248, 251, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
  color: var(--coffee-900);
}

.brand small {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coffee-500);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--coffee-800);
  font-size: 14px;
  font-weight: 800;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--coffee-800);
  cursor: pointer;
  font: inherit;
}

.solutions-menu {
  position: relative;
}

.solutions-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: min(520px, calc(100vw - 32px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--coffee-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: 180ms ease;
}

.solutions-menu:hover .solutions-panel,
.solutions-menu.open .solutions-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.solutions-panel a {
  border-radius: 6px;
  padding: 12px;
  color: var(--coffee-800);
}

.solutions-panel a:hover {
  background: var(--coffee-50);
  color: var(--coffee-900);
}

.header-actions,
.header-cta,
.header-login,
.header-link,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.header-actions {
  gap: 10px;
}

.header-link {
  border: 1px solid transparent;
  padding: 0 18px;
  background: var(--crema);
  color: var(--coffee-900);
  box-shadow: 0 12px 30px rgba(214, 168, 93, 0.24);
}

.header-login {
  border: 1px solid var(--coffee-100);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--coffee-900);
}

.header-login:hover {
  border-color: var(--coffee-300);
  background: var(--white);
}

.header-cta,
.primary-action {
  background: var(--crema);
  color: var(--coffee-900);
  box-shadow: 0 12px 30px rgba(214, 168, 93, 0.24);
}

.header-cta {
  padding: 0 18px;
}

.primary-action {
  padding: 0 20px;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 73px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px) 54px;
  background:
    linear-gradient(135deg, rgba(15, 38, 53, 0.98), rgba(31, 63, 82, 0.96)),
    var(--coffee-900);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.05) contrast(1.08) blur(0.4px);
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(214, 168, 93, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(15, 38, 53, 0.7), rgba(31, 63, 82, 0.5));
}

.grid-line {
  position: absolute;
  z-index: 1;
  width: 140%;
  height: 1px;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 93, 0.55), transparent);
  opacity: 0.62;
  animation: scan 9s linear infinite;
}

.line-a { top: 24%; }
.line-b { top: 54%; animation-delay: -3s; }
.line-c { top: 82%; animation-delay: -6s; }

@keyframes scan {
  from { transform: translateX(-20%) rotate(-8deg); }
  to { transform: translateX(20%) rotate(-8deg); }
}

.hero-copy,
.hero-product {
  position: relative;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--crema);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: #d8e6ee;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.58;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8e6ee;
  font-size: 13px;
  font-weight: 800;
}

.hero-product {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(244, 248, 251, 0.96);
  color: var(--coffee-900);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  animation: floatIn 700ms ease both;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--coffee-100);
  padding: 13px 16px;
  background: var(--white);
}

.product-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coffee-200);
}

.product-topbar span:first-child {
  background: var(--crema);
}

.product-topbar strong {
  margin-left: auto;
  font-size: 13px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
}

.metric-strip article,
.mini-card,
.bars-card,
.chart-card,
.audit-preview {
  border: 1px solid var(--coffee-100);
  border-radius: 8px;
  background: var(--white);
}

.metric-strip article {
  padding: 14px;
}

.metric-strip small,
.mini-card span,
.bars-card span {
  color: var(--coffee-500);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-strip strong,
.mini-card strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
  line-height: 1;
}

.metric-strip em {
  display: inline-block;
  margin-top: 8px;
  color: var(--leaf);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 12px;
  padding: 0 16px 16px;
}

.chart-card,
.audit-preview {
  padding: 16px;
}

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

.card-head span {
  color: var(--coffee-500);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-head strong {
  text-align: right;
  font-size: 14px;
}

.chart-card svg {
  width: 100%;
  height: auto;
}

.chart-area {
  fill: rgba(214, 168, 93, 0.24);
}

.chart-line {
  fill: none;
  stroke: var(--crema);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 1.6s ease 400ms forwards;
}

.chart-dot {
  fill: var(--coffee-900);
  opacity: 0;
  animation: fadeUp 500ms ease 1.7s forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeUp {
  to { opacity: 1; }
}

.chart-footer {
  display: flex;
  justify-content: space-between;
  color: var(--coffee-500);
  font-size: 12px;
  font-weight: 800;
}

.audit-preview ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-preview li {
  border-left: 4px solid var(--crema);
  padding: 8px 0 8px 10px;
  background: var(--coffee-50);
}

.audit-preview b,
.audit-preview span {
  display: block;
}

.audit-preview span {
  margin-top: 3px;
  color: var(--coffee-500);
  font-size: 12px;
  font-weight: 800;
}

.problem-band,
.founder-demo,
.presenter-section,
.notifications-section,
.insight-strip,
.journey,
.solutions,
.documents-section,
.performance-section,
.audit-section,
.screens-section,
.testimonials-section,
.plan,
.final-cta,
.result-band {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.founder-demo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  background: var(--coffee-900);
  color: var(--white);
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.live-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(15, 38, 53, 0.86);
  color: var(--crema);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.presenter-scene {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--coffee-800);
}

.presenter-scene img {
  display: block;
  width: 100%;
  max-height: 460px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.guided-checklist {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px;
  background: rgba(15, 38, 53, 0.52);
}

.presenter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 168, 93, 0.2), transparent 28%),
    linear-gradient(135deg, #f4f8fb 0%, #ffffff 54%, #e3edf4 100%);
}

.presenter-section .guided-checklist {
  border-color: var(--coffee-100);
  background: var(--coffee-900);
  box-shadow: var(--shadow);
}

.presenter-section .presenter-scene {
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}


.guided-checklist h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

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

.guided-checklist li {
  position: relative;
  padding-left: 28px;
  color: #d8e6ee;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.guided-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--crema);
  color: var(--coffee-900);
  font-size: 13px;
  font-weight: 1000;
}

.founder-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.12;
}

.founder-card p {
  margin: 16px 0 0;
  color: #d8e6ee;
  font-size: 15px;
  line-height: 1.58;
}

.founder-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.founder-stats span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #cbdde7;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.founder-stats b {
  display: block;
  color: var(--crema);
  font-size: 15px;
}

.sample-lab {
  display: grid;
  align-items: stretch;
}

.sample-table {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 25% 10%, rgba(214, 168, 93, 0.18), transparent 32%),
    linear-gradient(135deg, #071723, #102c3d 52%, #071723);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.sample-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.38;
}

.sample-top,
.coffee-samples,
.sample-scan,
.sample-data {
  position: relative;
  z-index: 1;
}

.sample-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.sample-top span {
  color: var(--crema);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.sample-top strong {
  color: var(--white);
  font-size: 14px;
}

.coffee-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sample {
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.sample.active {
  border-color: var(--crema);
  box-shadow: 0 0 0 4px rgba(214, 168, 93, 0.14), 0 20px 50px rgba(214, 168, 93, 0.16);
}

.sample i {
  display: block;
  width: 52px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 48% 52% 48% 52%;
  background: linear-gradient(135deg, #6b3f25, #c08b54 52%, #432514);
  box-shadow: inset -8px -12px 18px rgba(0,0,0,.26), 0 14px 28px rgba(0,0,0,.24);
  transform: rotate(18deg);
  animation: beanPulse 2.6s ease-in-out infinite;
}

.sample:nth-child(2) i {
  animation-delay: -0.7s;
}

.sample:nth-child(3) i {
  animation-delay: -1.3s;
}

@keyframes beanPulse {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-8px) rotate(13deg); }
}

.sample-scan {
  height: 64px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sample-scan span {
  display: block;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 93, 0.64), transparent);
  animation: scanSample 2.5s ease-in-out infinite;
}

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

.sample-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sample-data article {
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.09);
}

.sample-data small,
.sample-data strong {
  display: block;
}

.sample-data small {
  color: #cbdde7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-data strong {
  margin-top: 6px;
  color: var(--crema);
  font-size: 22px;
}

.problem-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 4vw, 58px);
  background: var(--white);
}

.problem-band h2,
.section-title h2,
.result-copy h2,
.plan h2,
.final-cta h2 {
  margin-bottom: 0;
  color: var(--coffee-900);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.problem-grid article,
.audit-grid article {
  border: 1px solid var(--coffee-100);
  border-radius: 8px;
  padding: 20px;
  background: var(--coffee-50);
}

.problem-grid strong,
.audit-grid strong {
  color: var(--coffee-900);
  font-size: 15px;
}

.problem-grid p,
.audit-grid p,
.result-copy p,
.performance-card p,
.plan p,
.final-cta p {
  margin: 10px 0 0;
  color: var(--coffee-700);
  font-size: 15px;
  line-height: 1.55;
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: linear-gradient(180deg, var(--coffee-50), var(--white));
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(120px, 0.65fr);
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--coffee-100);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 38, 53, 0.08);
}

.insight-card span,
.performance-card .card-head span {
  color: var(--coffee-500);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  margin-top: 8px;
  color: var(--coffee-900);
  font-size: 26px;
  line-height: 1;
}

.insight-card small {
  display: block;
  margin-top: 8px;
  color: var(--coffee-700);
  font-size: 13px;
  font-weight: 800;
}

.insight-card svg {
  width: 100%;
  min-height: 90px;
}

.insight-card svg path {
  fill: none;
  stroke: var(--leaf);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: drawLine 1.4s ease forwards;
}

.donut {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  justify-self: end;
  border-radius: 50%;
  background: conic-gradient(var(--crema) calc(var(--value) * 1%), var(--coffee-100) 0);
}

.donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--white);
}

.donut b {
  position: relative;
  z-index: 1;
  color: var(--coffee-900);
  font-size: 22px;
}

.tiny-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 112px;
  justify-self: end;
  width: 140px;
  border-radius: 8px;
  background: var(--coffee-50);
  padding: 12px;
}

.tiny-bars i {
  width: 100%;
  height: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--coffee-500), var(--crema));
  animation: growBar 900ms ease forwards;
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--coffee-100);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 38, 53, 0.08);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--coffee-200);
}

.step-card.active::before,
.step-card:hover::before {
  background: var(--crema);
}

.step-card span {
  color: var(--crema);
  font-size: 13px;
  font-weight: 1000;
}

.step-card h3 {
  margin: 16px 0 12px;
  color: var(--coffee-900);
  font-size: 20px;
  line-height: 1.18;
}

.step-card p,
.step-card li {
  color: var(--coffee-700);
  font-size: 15px;
  line-height: 1.6;
}

.step-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 18px;
}

.solutions {
  background: var(--coffee-900);
  color: var(--white);
}

.solutions .section-title h2,
.solutions .eyebrow {
  color: var(--white);
}

.solutions .eyebrow {
  color: var(--crema);
}

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

.solution-grid a {
  min-height: 218px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  transition: 180ms ease;
}

.solution-grid a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
}

.solution-grid span {
  color: var(--crema);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.solution-grid strong,
.solution-grid small {
  display: block;
}

.solution-grid strong {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.2;
}

.solution-grid small {
  margin-top: 12px;
  color: #cbdde7;
  font-size: 14px;
  line-height: 1.55;
}

.notifications-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 168, 93, 0.22), transparent 34%),
    linear-gradient(135deg, #0f2635, #17364a);
  color: var(--white);
}

.notifications-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.12;
}

.notifications-copy p {
  max-width: 640px;
  margin: 15px 0 0;
  color: #d7e4eb;
  font-size: 15px;
  line-height: 1.6;
}

.notification-checks {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.notification-checks span {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 13px 14px 13px 42px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.notification-checks span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--crema);
  color: var(--coffee-900);
  font-size: 13px;
  font-weight: 1000;
}

.notification-demo {
  display: grid;
  gap: 16px;
  width: min(100%, 760px);
  justify-self: end;
}

.phone-shell {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: clamp(18px, 2.5vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(8, 22, 32, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: auto -18% -22% 28%;
  height: 190px;
  border-radius: 999px;
  background: rgba(214, 168, 93, 0.22);
  filter: blur(30px);
}

.phone-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 14px;
  color: var(--white);
}

.phone-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #54d18a;
  box-shadow: 0 0 0 6px rgba(84, 209, 138, 0.14);
}

.phone-top strong {
  font-size: 15px;
}

.phone-top small {
  margin-left: auto;
  color: #b8ccd8;
  font-size: 12px;
  font-weight: 800;
}

.notification-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.notify-card {
  position: relative;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 15px 16px 15px 50px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(28px);
  animation: notifyIn 9s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.notify-card::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crema);
  box-shadow: 0 0 0 7px rgba(214, 168, 93, 0.16);
}

.notify-card b {
  color: var(--white);
  font-size: 14px;
}

.notify-card span {
  color: #d7e4eb;
  font-size: 13px;
  line-height: 1.45;
}

.notify-card em {
  color: var(--crema);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.notify-two { animation-delay: 1.1s; }
.notify-three { animation-delay: 2.2s; }
.notify-four { animation-delay: 3.3s; }

@keyframes notifyIn {
  0%, 9% {
    opacity: 0;
    transform: translateX(28px);
  }

  16%, 72% {
    opacity: 1;
    transform: translateX(0);
  }

  86%, 100% {
    opacity: 0.42;
    transform: translateX(-10px);
  }
}

.notification-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.notification-metrics span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7e4eb;
  font-size: 13px;
  font-weight: 800;
}

.notification-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--crema);
  font-size: 28px;
  line-height: 1;
}

.documents-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  background: linear-gradient(135deg, var(--coffee-50), var(--white));
}

.documents-image {
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.documents-image img,
.solution-hero-image {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
}

.solution-hero-image {
  border-top: 1px solid var(--coffee-100);
}

.documents-copy h2 {
  margin: 0;
  color: var(--coffee-900);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.12;
}

.documents-copy p {
  margin: 14px 0 0;
  color: var(--coffee-700);
  font-size: 15px;
  line-height: 1.55;
}

.document-checks {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.document-checks span {
  position: relative;
  border: 1px solid var(--coffee-100);
  border-radius: 8px;
  padding: 13px 14px 13px 42px;
  background: var(--white);
  color: var(--coffee-900);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(15, 38, 53, 0.06);
}

.document-checks span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--crema);
  color: var(--coffee-900);
  font-size: 13px;
  font-weight: 1000;
}

.performance-section {
  background: var(--white);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.performance-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  border: 1px solid var(--coffee-100);
  border-radius: 8px;
  padding: 22px;
  background: var(--coffee-50);
  box-shadow: 0 14px 38px rgba(15, 38, 53, 0.08);
}

.stack-chart {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.stack-chart i {
  display: flex;
  align-items: center;
  width: 0;
  min-height: 48px;
  padding-left: 14px;
  color: var(--coffee-900);
  font-style: normal;
  font-weight: 900;
  animation: growWidth 900ms ease forwards;
}

.stack-chart i + i {
  margin-top: 8px;
}

.stack-chart .signed { background: #dff5e6; }
.stack-chart .payment { background: #e4eef5; }
.stack-chart .pending { background: #fff2cf; }

.rank-chart {
  display: grid;
  gap: 12px;
}

.rank-chart div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 10px;
  color: var(--coffee-900);
  font-size: 13px;
  font-weight: 900;
}

.rank-chart i {
  display: block;
  width: 0;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--crema), var(--leaf));
  animation: growWidth 900ms ease forwards;
}

.rank-chart b {
  text-align: right;
}

.heat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 2px;
}

.heat-grid i {
  aspect-ratio: 1;
  border-radius: 5px;
  background: var(--coffee-100);
}

.heat-grid .warm {
  background: rgba(214, 168, 93, 0.58);
}

.heat-grid .hot {
  background: var(--crema);
  box-shadow: 0 0 0 4px rgba(214, 168, 93, 0.16);
}

@keyframes growWidth {
  to { width: var(--w); }
}

.result-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(180deg, var(--coffee-50), #ffffff);
}

.result-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card,
.bars-card {
  padding: 20px;
  box-shadow: 0 14px 34px rgba(15, 38, 53, 0.08);
}

.mini-card.alert {
  border-color: rgba(214, 168, 93, 0.5);
}

.bars-card {
  grid-column: 1 / -1;
}

.bars {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 220px;
  margin-top: 22px;
  border-radius: 8px;
  background: repeating-linear-gradient(to top, var(--coffee-50), var(--coffee-50) 43px, var(--coffee-100) 44px);
  padding: 18px;
}

.bars i {
  width: 100%;
  height: 0;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--crema), var(--leaf));
  animation: growBar 900ms ease forwards;
}

@keyframes growBar {
  to { height: var(--h); }
}

.audit-section {
  background: var(--white);
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.screens-section {
  background: linear-gradient(180deg, var(--coffee-50), var(--white));
}

.screens-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.screen-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--coffee-100);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.screen-card-large {
  grid-row: span 2;
}

.screen-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 360px;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid var(--coffee-100);
}

.screen-card-large img {
  min-height: 0;
  max-height: 520px;
}

.screen-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.screen-card strong {
  color: var(--coffee-900);
  font-size: 16px;
}

.screen-card span {
  color: var(--coffee-700);
  font-size: 14px;
  line-height: 1.55;
}

.testimonials-section {
  overflow: hidden;
  background: var(--coffee-900);
  color: var(--white);
}

.testimonials-section .section-title h2 {
  color: var(--white);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 16px;
  transition: transform 360ms ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--crema);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.person strong,
.person small {
  display: block;
}

.person strong {
  color: var(--white);
  font-size: 16px;
}

.person small {
  color: #cbdde7;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-card p {
  margin: 28px 0 20px;
  color: #eef6fa;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.carousel-button:hover {
  border-color: var(--crema);
  color: var(--crema);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active {
  width: 28px;
  background: var(--crema);
}

.plan {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  background: var(--coffee-900);
  color: var(--white);
}

.plan h2,
.plan p {
  color: var(--white);
}

.plan aside {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.plan aside span,
.plan aside small {
  display: block;
  color: #d8e6ee;
  font-weight: 800;
}

.plan aside strong {
  display: block;
  margin: 8px 0;
  color: var(--crema);
  font-size: 32px;
  line-height: 1;
}

.plan aside .primary-action {
  width: 100%;
  margin-top: 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  text-align: left;
  background: var(--white);
}

.final-copy > img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.final-cta h2 {
  max-width: 830px;
  margin-top: 10px;
}

.final-cta p {
  max-width: 680px;
}

.coffee-cta-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 8px solid var(--coffee-50);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coffee-cta-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: calc(100% - 32px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(22, 15, 11, 0.72);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 14px 34px rgba(22, 15, 11, 0.22);
  backdrop-filter: blur(10px);
}

.coffee-cta-photo img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
}

.final-cta .secondary-action {
  border-color: var(--coffee-100);
  background: var(--coffee-50);
  color: var(--coffee-900);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--coffee-100);
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--coffee-900);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.footer-actions {
  justify-items: end;
}

.site-footer strong {
  font-size: 15px;
}

.site-footer span,
.site-footer a {
  color: #cbdde7;
  font-size: 13px;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--crema);
}

@media (max-width: 1080px) {
  .hero,
  .founder-demo,
  .presenter-section,
  .notifications-section,
  .documents-section,
  .problem-band,
  .result-band,
  .plan,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .timeline,
  .solution-grid,
  .insight-strip,
  .performance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    min-height: 38px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-link {
    display: none;
  }

  .footer-actions {
    justify-items: start;
  }

  .solutions-panel {
    left: 0;
    grid-template-columns: 1fr;
    transform: translate(0, 8px);
  }

  .solutions-menu:hover .solutions-panel,
  .solutions-menu.open .solutions-panel {
    transform: translate(0, 0);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-video {
    opacity: 0.5;
    filter: saturate(1.08) contrast(1.04);
  }

  .hero-bg::after {
    background:
      radial-gradient(circle at 68% 18%, rgba(214, 168, 93, 0.1), transparent 34%),
      linear-gradient(135deg, rgba(15, 38, 53, 0.66), rgba(31, 63, 82, 0.44));
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    min-width: 0;
    padding: 0 10px;
    text-align: center;
    font-size: 12px;
    line-height: 1.15;
  }

  h1 {
    font-size: 28px;
  }

  .metric-strip,
  .dashboard-grid,
  .founder-card,
  .founder-stats,
  .coffee-samples,
  .sample-data,
  .problem-grid,
  .timeline,
  .solution-grid,
  .notification-metrics,
  .insight-strip,
  .performance-grid,
  .result-board,
  .audit-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

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

  .donut,
  .tiny-bars {
    justify-self: start;
  }

  .screen-card-large {
    grid-row: auto;
  }

  .screen-card-large img {
    min-height: 0;
  }

  .phone-shell {
    min-height: 390px;
    border-radius: 18px;
    padding: 14px;
  }

  .notify-card {
    padding-right: 13px;
  }

  .presenter-scene img,
  .screen-card img,
  .screen-card-large img {
    max-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .step-card {
    min-height: auto;
  }

  .bars {
    height: 180px;
  }
}
