:root {
  color-scheme: dark;
  --bg: #070c08;
  --bg-soft: #0e160f;
  --panel: #142014;
  --panel-strong: #182618;
  --line: rgba(159, 232, 112, 0.2);
  --line-strong: rgba(159, 232, 112, 0.44);
  --text: #f4f7f1;
  --muted: #bac4b5;
  --soft: #7f8b79;
  --accent: #9fe870;
  --accent-2: #d4ff86;
  --danger: #ff7b72;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 4%, rgba(159, 232, 112, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(212, 255, 134, 0.08), transparent 25rem),
    linear-gradient(180deg, #071009 0%, #070c08 48%, #090f09 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(159, 232, 112, 0.14);
  border-radius: 999px;
  background: rgba(7, 12, 8, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-weight: 800;
  font-size: 19px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 0 26px rgba(159, 232, 112, 0.18);
}

.brand-wordmark {
  width: 112px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-links a {
  padding: 9px 14px;
  color: var(--muted);
  font-size: 14px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(159, 232, 112, 0.08);
  color: var(--text);
}

.header-cta {
  justify-self: end;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(159, 232, 112, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  width: min(1320px, calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 52px 0 76px;
}

.hero-copy {
  max-width: 650px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(159, 232, 112, 0.28);
  border-radius: 999px;
  background: rgba(159, 232, 112, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.section .eyebrow {
  margin-bottom: 18px;
}

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

h1 {
  margin: 22px 0 22px;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.15;
}

.hero-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.section p,
.final-cta p {
  margin-top: 30px;
  color: var(--muted);
  font-size: 18px;
}

.section h2 + p,
.section-heading p,
.final-cta h2 + p {
  margin-top: 0;
  padding-top: 18px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-button {
  border: 1px solid rgba(212, 255, 134, 0.72);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071009;
  box-shadow: 0 16px 38px rgba(159, 232, 112, 0.22);
}

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

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

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

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
}

.hero-visual {
  min-width: 0;
  perspective: 1600px;
}

.macbook {
  position: relative;
  isolation: isolate;
  padding: 0;
  aspect-ratio: 1066 / 684;
  transform-style: preserve-3d;
  transform: rotateX(4deg) rotateY(-8deg);
  transition: transform 220ms ease;
}

.macbook-shot {
  display: block;
  aspect-ratio: auto;
  transform: rotateX(3deg) rotateY(-7deg);
}

.macbook-shot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.46));
}

.macbook-frame {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.58));
}

.macbook-screen {
  position: absolute;
  top: 8.9%;
  left: 13.6%;
  z-index: 1;
  overflow: hidden;
  width: 75.5%;
  height: 76%;
  border-radius: 10px 10px 2px 2px;
  background: #0c130d;
}

.screen {
  overflow: hidden;
  height: 100%;
  min-height: 0;
  padding: 18px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 42% 0%, rgba(159, 232, 112, 0.12), transparent 24rem),
    #0c130d;
}

.dashboard-top,
.chart-title,
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dash-label,
.chart-title span,
.panel-header span {
  color: var(--accent);
  font-size: 13px;
}

.dashboard-top strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.macbook .dashboard-top strong {
  font-size: clamp(24px, 3vw, 42px);
}

.status-pill {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(159, 232, 112, 0.08);
  font-size: 13px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.macbook .metric-strip {
  gap: 9px;
  margin: 16px 0;
}

.metric-strip article,
.chart-card,
.feature-card,
.owner-panel,
.phone-preview,
.price-card,
.shot-card,
.scenario-card,
.time-heat-card,
details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #1a2819, #0e160f);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.feature-card[data-tilt],
.price-card[data-tilt],
.shot-card[data-tilt],
.scenario-card[data-tilt],
.time-heat-card[data-tilt],
.phone-preview[data-tilt],
.owner-panel[data-tilt] {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card[data-tilt]:hover,
.price-card[data-tilt]:hover,
.shot-card[data-tilt]:hover,
.scenario-card[data-tilt]:hover,
.time-heat-card[data-tilt]:hover,
.phone-preview[data-tilt]:hover,
.owner-panel[data-tilt]:hover {
  border-color: rgba(159, 232, 112, 0.5);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3), 0 0 34px rgba(159, 232, 112, 0.1);
}

.metric-strip article {
  min-height: 94px;
  padding: 16px;
  border-radius: 14px;
}

.macbook .metric-strip article {
  min-height: 76px;
  padding: 12px;
  border-radius: 10px;
}

.metric-strip span {
  color: #d9ead1;
  font-size: 13px;
}

.metric-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.macbook .metric-strip strong {
  font-size: 18px;
}

.positive strong {
  color: var(--accent);
}

.charts-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 14px;
}

.chart-card {
  min-height: 270px;
  padding: 18px;
  border-radius: 16px;
}

.macbook .chart-card {
  min-height: 208px;
  padding: 14px;
  border-radius: 12px;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 7px;
  height: 188px;
  margin-top: 24px;
  padding-top: 20px;
  border-bottom: 1px solid rgba(159, 232, 112, 0.2);
}

.macbook .bar-chart {
  height: 138px;
  gap: 6px;
  margin-top: 18px;
}

.bar-chart i {
  display: block;
  height: var(--h);
  min-height: 16px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 24px rgba(159, 232, 112, 0.28);
}

.line-chart {
  width: 100%;
  height: 210px;
  margin-top: 20px;
}

.macbook .line-chart {
  height: 150px;
  margin-top: 16px;
}

.line-chart .area {
  fill: url(#area);
}

.line-chart .line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(159, 232, 112, 0.35));
}

.line-chart circle {
  fill: #0c130d;
  stroke: var(--accent);
  stroke-width: 5;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.product-shots {
  width: min(1260px, calc(100% - 40px));
}

.shot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.shot-card,
.scenario-card,
.time-heat-card {
  border-radius: var(--radius);
  padding: 24px;
}

.dashboard-shot {
  min-height: 440px;
}

.transactions-shot {
  min-height: 440px;
}

.shot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.shot-header span {
  color: var(--accent);
}

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

.mini-metrics div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(159, 232, 112, 0.18);
  border-radius: 14px;
  background: rgba(7, 12, 8, 0.42);
}

.mini-metrics span,
.fake-table b,
.fake-table span {
  display: block;
  min-width: 0;
}

.mini-metrics span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.mini-metrics b {
  display: block;
  font-size: clamp(17px, 1.8vw, 24px);
  white-space: nowrap;
}

.green {
  color: var(--accent);
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 16px;
  height: 230px;
  margin-top: 34px;
  border-bottom: 1px solid rgba(159, 232, 112, 0.22);
}

.mini-bars i {
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.fake-table {
  display: grid;
}

.fake-table div {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.7fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(159, 232, 112, 0.16);
}

.fake-table b {
  color: #dff0d8;
  font-size: 13px;
}

.fake-table span {
  color: var(--muted);
}

.scenario-card {
  align-self: stretch;
}

.scenario-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(159, 232, 112, 0.14);
}

.scenario-row span {
  color: var(--muted);
}

.scenario-row.danger strong,
.scenario-row.final strong {
  color: var(--danger);
}

.scenario-row.final {
  margin-top: 8px;
  font-size: 22px;
}

.scenario-card p {
  margin: 22px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

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

.feature-card {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius);
}

.feature-section {
  padding-top: 70px;
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: rgba(159, 232, 112, 0.12);
  color: var(--accent);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card[data-tilt]:hover > span {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 28px rgba(159, 232, 112, 0.2);
}

.feature-card p,
.price-card p,
.phone-preview p,
.scenario-card p {
  color: var(--muted);
}

.integrations {
  text-align: center;
}

.integrations .section-heading {
  margin-inline: auto;
}

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

.integration-grid span {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(159, 232, 112, 0.18);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #e9f4e5;
  font-weight: 800;
}

.integration-grid span::before {
  content: none;
}

.integration-logo {
  width: 42px;
  height: 42px;
  padding: 6px;
  border: 1px solid rgba(159, 232, 112, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
}

.integration-logo.logo-wide {
  width: 76px;
  height: 42px;
  padding: 6px 8px;
}

.timing-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.hour-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 10px;
  height: 330px;
  padding: 20px 8px 38px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(159, 232, 112, 0.2);
}

.hour-bars i {
  position: relative;
  height: var(--h);
  min-height: 18px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 24px rgba(159, 232, 112, 0.2);
}

.hour-bars em {
  position: absolute;
  bottom: -34px;
  left: 50%;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  transform: translateX(-50%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.attendant-section {
  width: min(1280px, calc(100% - 40px));
}

.attendant-demo {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
}

.owner-panel,
.phone-preview {
  border-radius: var(--radius);
  padding: 24px;
}

.owner-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.owner-controls span {
  padding: 9px 11px;
  border: 1px solid rgba(159, 232, 112, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
}

.owner-panel {
  min-height: 360px;
}

.rank-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  border-bottom: 1px solid rgba(159, 232, 112, 0.15);
}

.rank-row div {
  overflow: hidden;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.rank-row div span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.rank-row em {
  color: var(--muted);
  font-style: normal;
}

.phone-preview {
  position: relative;
  min-height: 360px;
  padding-top: 56px;
  border-radius: 34px;
}

.phone-top {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 76px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.phone-preview h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: none;
  margin-bottom: 8px;
  font-size: 34px;
}

.phone-preview h3 span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.goal-percent {
  display: block;
  color: var(--accent);
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 14px;
}

.goal-bar {
  overflow: hidden;
  height: 24px;
  margin: 34px 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.goal-bar span {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.phone-preview small {
  display: block;
  margin-bottom: 24px;
  color: var(--soft);
  font-size: 15px;
}

.notification-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.notification-copy {
  max-width: 560px;
}

.notification-visuals {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.notification-device {
  position: relative;
  z-index: 0;
  display: block;
  width: min(78%, 540px);
  margin-bottom: -72px;
  filter: drop-shadow(0 28px 64px rgba(0, 0, 0, 0.32));
}

.notification-device img {
  width: 100%;
  height: auto;
}

.notification-phone {
  position: relative;
  z-index: 1;
  display: block;
  justify-self: center;
  width: min(100%, 760px);
  margin: 0;
  filter: drop-shadow(0 28px 64px rgba(0, 0, 0, 0.42));
}

.notification-phone img {
  width: 100%;
  height: auto;
}

.pricing {
  padding-bottom: 96px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border-radius: 28px;
}

.faq {
  width: min(1040px, calc(100% - 40px));
}

.faq-grid {
  display: grid;
  gap: 12px;
}

details {
  padding: 0;
  border-radius: 18px;
  transition: border-color 180ms ease, background 180ms ease;
}

summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

details[open] {
  border-color: var(--line-strong);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

details p a {
  color: var(--accent);
}

.main-price {
  border-color: rgba(159, 232, 112, 0.52);
  box-shadow: 0 0 80px rgba(159, 232, 112, 0.12), var(--shadow);
  transform: translateY(-12px);
}

.plan-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #071009;
  font-size: 13px;
  font-weight: 900;
}

.plan-badge.subtle {
  border: 1px solid var(--line);
  background: rgba(159, 232, 112, 0.08);
  color: var(--accent);
}

.price-card h3 {
  margin: 26px 0 12px;
  font-size: 28px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.price span,
.price em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.price strong {
  font-size: clamp(74px, 10vw, 118px);
  line-height: 0.9;
}

.price.compact strong {
  font-size: clamp(58px, 7vw, 84px);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card .wide {
  margin-top: auto;
}

.price-card li {
  color: #dfeadc;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(159, 232, 112, 0.45);
}

.wide {
  width: 100%;
}

.guarantee-box {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 840px;
  margin: 44px auto 0;
  text-align: center;
}

.guarantee-box h3 {
  margin: 0;
}

.guarantee-box p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.custom-plan-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.custom-plan-note div {
  display: grid;
  gap: 4px;
}

.custom-plan-note strong {
  color: var(--text);
  font-size: 18px;
}

.custom-plan-note span {
  color: var(--muted);
}

.custom-plan-note .ghost-button {
  flex: 0 0 auto;
}

.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 60px;
  padding: 70px 30px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 232, 112, 0.18), transparent 28rem),
    rgba(20, 32, 20, 0.74);
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 26px;
  font-size: clamp(30px, 4.1vw, 58px);
  line-height: 1.06;
}

.final-cta h2 span {
  display: block;
  white-space: nowrap;
}

.site-footer {
  width: 100%;
  padding: 38px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #000;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand > img:first-child {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-brand .brand-wordmark {
  width: 102px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

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

.site-footer p {
  max-width: 330px;
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  text-align: right;
}

.site-footer p strong {
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(212, 255, 134, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(145deg, #8fd85f, #66b840);
  box-shadow:
    0 0 0 5px rgba(159, 232, 112, 0.055),
    0 0 22px rgba(159, 232, 112, 0.26),
    0 14px 34px rgba(0, 0, 0, 0.34);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 6px rgba(159, 232, 112, 0.08),
    0 0 30px rgba(159, 232, 112, 0.4),
    0 16px 38px rgba(0, 0, 0, 0.38);
}

.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.88);
}

.whatsapp-float svg {
  width: 37px;
  height: 37px;
  overflow: visible;
}

.wa-bubble {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-phone {
  fill: #fff;
  stroke: none;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 840px;
  }

  .macbook {
    transform: none;
  }

  .split,
  .notification-section,
  .attendant-demo,
  .pricing-grid,
  .shot-grid,
  .timing-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .notification-copy {
    grid-row: auto;
  }

  .notification-phone {
    max-width: 720px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }

  .main-price {
    transform: none;
  }

  .phone-preview {
    max-width: 440px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(100% - 28px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .site-header {
    width: min(100% - 32px, 1240px);
  }

  .hero {
    grid-template-columns: minmax(360px, 0.75fr) minmax(520px, 1.25fr);
    width: min(100% - 32px, 1240px);
    gap: 30px;
  }

  h1 {
    font-size: clamp(42px, 4.8vw, 66px);
  }

  .macbook .screen {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero,
  .section,
  .attendant-section,
  .final-cta {
    width: calc(100% - 28px);
  }

  .hero {
    padding: 42px 0 42px;
  }

  .brand-wordmark {
    width: min(116px, 34vw);
  }

  .hero .eyebrow {
    margin-top: 18px;
  }

  .section {
    padding: 48px 0;
  }

  .product-shots {
    padding-top: 30px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

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

  .section h2 + p,
  .section-heading p,
  .final-cta h2 + p {
    padding-top: 10px;
  }

  .hero-actions {
    display: grid;
  }

  .screen {
    min-height: 0;
    padding: 16px;
  }

  .macbook .screen {
    padding: 8px;
  }

  .macbook .dashboard-top strong {
    font-size: 18px;
  }

  .macbook .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin: 8px 0;
  }

  .macbook .metric-strip article {
    min-height: 48px;
    padding: 7px;
  }

  .macbook .metric-strip strong {
    margin-top: 3px;
    font-size: 12px;
  }

  .macbook .charts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .macbook .chart-card {
    min-height: 92px;
    padding: 7px;
  }

  .macbook .chart-title {
    font-size: 9px;
  }

  .macbook .chart-title span,
  .macbook .dash-label,
  .macbook .metric-strip span {
    font-size: 8px;
  }

  .macbook .bar-chart,
  .macbook .line-chart {
    height: 62px;
    margin-top: 6px;
  }

  .dashboard-top {
    align-items: flex-start;
  }

  .status-pill {
    display: none;
  }

  .metric-strip,
  .charts-grid,
  .feature-grid,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .fake-table div {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.82fr) minmax(74px, 0.68fr);
    gap: 10px;
    align-items: center;
    padding: 14px 0;
  }

  .transactions-shot {
    min-height: auto;
  }

  .transactions-shot .shot-header {
    margin-bottom: 12px;
  }

  .fake-table b {
    font-size: 11px;
  }

  .fake-table span {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fake-table div > :last-child {
    text-align: right;
  }

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

  .integration-grid span {
    min-height: 78px;
    flex-direction: column;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 18px;
    font-size: 13px;
  }

  .integration-logo,
  .integration-logo.logo-wide {
    width: 42px;
    height: 42px;
    padding: 6px;
    border-radius: 13px;
  }

  .hour-bars {
    gap: 5px;
    height: 250px;
  }

  .hour-bars i {
    border-radius: 5px 5px 2px 2px;
  }

  .chart-card {
    min-height: 240px;
  }

  .rank-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .rank-row em {
    font-size: 14px;
  }

  .phone-preview {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: center;
    padding-top: 52px;
    padding-bottom: 34px;
  }

  .notification-phone {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .notification-device {
    width: min(92%, 360px);
    margin-bottom: -22px;
  }

  .notification-section {
    gap: 20px;
  }

  .custom-plan-note {
    align-items: stretch;
    flex-direction: column;
    padding-inline: 0;
    text-align: center;
  }

  .custom-plan-note .ghost-button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 86px;
  }

  .site-footer nav {
    gap: 12px 18px;
  }

  .price-card {
    min-height: auto;
    padding: 24px;
  }

  .final-cta {
    margin-bottom: 42px;
    padding: 48px 18px;
  }

  .final-cta h2 {
    font-size: clamp(17px, 5.6vw, 29px);
    line-height: 1.06;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    padding: 0;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 0 34px;
  }

  .section {
    padding: 38px 0;
  }

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

  .section-heading {
    margin-bottom: 20px;
  }

  .shot-card,
  .scenario-card,
  .time-heat-card,
  .owner-panel,
  .phone-preview,
  .price-card {
    padding: 20px;
  }

  .transactions-shot .fake-table div {
    padding: 12px 0;
  }

  .phone-preview {
    min-height: 360px;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .phone-preview h3 {
    font-size: 30px;
  }

  .goal-percent {
    font-size: 30px;
  }

  .goal-bar {
    margin-top: 28px;
  }

  .final-cta {
    margin-bottom: 34px;
    padding: 40px 18px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .bar-chart i {
    animation: rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: calc(var(--h) * 7ms);
  }

  .line-chart .line {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: draw 1200ms ease 220ms forwards;
  }

  .hero-copy,
  .macbook {
    animation: float-in 780ms ease both;
  }

  .macbook {
    animation-delay: 120ms;
  }
}

@keyframes rise {
  from {
    height: 0;
    opacity: 0;
  }
}

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

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}



