:root {
  color-scheme: light;
  --bg: #f7f8f6;
  --surface: #ffffff;
  --surface-soft: #eef3f0;
  --ink: #0c0f14;
  --muted: #616a75;
  --line: #dde2e3;
  --accent: #2d7d78;
  --accent-dark: #205f5c;
  --accent-soft: #dff0ec;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.09);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 6%, rgba(45, 125, 120, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #ffffff 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 226, 227, 0.8);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(12, 15, 20, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 48px rgba(12, 15, 20, 0.1);
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  box-shadow: inset 0 -10px 18px rgba(45, 125, 120, 0.35);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 8px;
  color: #2c333c;
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.section-pad {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 54px;
  padding-top: 64px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 6.35rem;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 4.1rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.18rem;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(12, 15, 20, 0.18);
}

.btn-primary:hover {
  background: #151b24;
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  width: min(78vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(45, 125, 120, 0.2);
  border-radius: 999px;
  animation: float 7s ease-in-out infinite;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.orbit-ring::before {
  top: 14%;
  right: 17%;
}

.orbit-ring::after {
  left: 7%;
  bottom: 28%;
  background: #9aa8b2;
}

.product-shell {
  position: relative;
  width: min(100%, 470px);
  padding: 14px;
  border: 1px solid rgba(221, 226, 227, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  animation: lift 6s ease-in-out infinite;
}

.product-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.product-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7ced3;
}

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

.panel {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.panel svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.panel p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.panel-wide {
  grid-column: 1 / -1;
  min-height: 170px;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
  background: #0f141c;
}

.panel-wide p {
  margin-bottom: 8px;
  color: #aeb8c2;
}

.panel-wide strong {
  color: #ffffff;
  font-size: 3.2rem;
  letter-spacing: 0;
}

.line-chart {
  height: 116px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex: 1;
}

.line-chart span {
  flex: 1;
  min-width: 12px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #67c9bf, #d8eee9);
}

.accent-panel {
  background: var(--accent-soft);
}

.panel-code {
  gap: 10px;
  justify-content: center;
  background: #f5f7f7;
}

.panel-code code {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 8px 10px;
  border-radius: 8px;
  background: #ffffff;
  color: #33404c;
  font-size: 0.78rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 42px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 56px rgba(16, 24, 40, 0.06);
}

.about-content p {
  margin: 0;
  font-size: 1.06rem;
}

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

.about-points span,
.feature-row span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  color: #2a333d;
  font-weight: 700;
}

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

.service-card,
.project-card,
.testimonial-card,
.step,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(16, 24, 40, 0.04);
}

.service-card {
  min-height: 230px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 125, 120, 0.38);
  box-shadow: 0 24px 58px rgba(16, 24, 40, 0.08);
}

.service-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--accent);
}

.service-card p,
.project-card p,
.step p,
.testimonial-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

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

.stat-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(45, 125, 120, 0.08), transparent 58%),
    #ffffff;
}

.stat-card strong {
  margin-bottom: 10px;
  font-size: 5.1rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

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

.feature-row svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--accent);
}

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

.step {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  top: 55px;
  left: 72px;
  width: calc(100% - 68px);
  height: 1px;
  background: var(--line);
}

.step:last-child::after {
  display: none;
}

.step span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.step svg {
  position: absolute;
  top: 34px;
  right: 24px;
  width: 30px;
  height: 30px;
  color: var(--accent);
}

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

.project-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.project-card h3,
.project-card p {
  padding-inline: 22px;
}

.project-card h3 {
  margin-top: 22px;
}

.project-card p {
  padding-bottom: 24px;
}

.project-preview {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eef4f2;
}

.project-preview::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.preview-commerce {
  background: linear-gradient(135deg, #eef6f2, #dfe8e5);
}

.preview-health {
  background: linear-gradient(135deg, #eef3f8, #e4e9ee);
}

.preview-finance {
  background: linear-gradient(135deg, #f2f0eb, #e3ebe8);
}

.screen {
  position: absolute;
  border: 1px solid rgba(12, 15, 20, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.12);
}

.desktop-screen {
  width: 72%;
  height: 56%;
  left: 11%;
  top: 24%;
  padding: 16px;
}

.desktop-screen span {
  display: block;
  width: 28%;
  height: 10px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #cfd8d8;
}

.desktop-screen strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.desktop-screen div {
  width: 100%;
  height: 54px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--accent) 28%, transparent 28%),
    repeating-linear-gradient(90deg, #d8e1e0 0 13%, transparent 13% 20%);
}

.phone-screen {
  width: 24%;
  min-width: 72px;
  height: 48%;
  right: 12%;
  bottom: 12%;
  padding: 12px;
}

.phone-screen span {
  display: block;
  height: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #d5dddd;
}

.phone-screen span:first-child {
  width: 44%;
  background: var(--accent);
}

.testimonial-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.testimonial-card p {
  margin-bottom: 34px;
  color: #27313b;
  font-size: 1.02rem;
}

.testimonial-card strong {
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  padding-top: 32px;
}

.cta-panel {
  display: grid;
  place-items: start;
  padding: clamp(34px, 8vw, 76px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 125, 120, 0.18), transparent 46%),
    #0c0f14;
  color: #ffffff;
  overflow: hidden;
}

.cta-panel .eyebrow {
  color: #8ddbd0;
}

.cta-panel h2 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #ffffff;
}

.cta-panel p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #c7d0d8;
}

.cta-panel .btn-primary {
  background: #ffffff;
  color: var(--ink);
}

.site-footer {
  width: min(calc(100% - 36px), var(--max));
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto;
  padding: 50px 0 36px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 340px;
  margin: 18px 0 0;
  font-size: 0.94rem;
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

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

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid !important;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.copyright {
  grid-column: 1 / -1;
  max-width: none !important;
  margin-top: 16px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(8deg) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .section-heading,
  .about-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card-grid,
  .timeline,
  .project-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 22px), var(--max));
    margin-top: 10px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    left: 11px;
    right: 11px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 15px;
  }

  .section-pad {
    width: min(calc(100% - 24px), var(--max));
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: 3.65rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .stat-card strong {
    font-size: 4rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .product-shell {
    width: min(100%, 390px);
  }

  .panel-wide {
    min-height: 145px;
    flex-direction: column;
    align-items: stretch;
  }

  .line-chart {
    height: 74px;
  }

  .about-content,
  .cta-panel {
    padding: 24px;
  }

  .about-points,
  .card-grid,
  .why-layout,
  .feature-row,
  .timeline,
  .project-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.95rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .brand small {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dashboard-grid {
    gap: 10px;
  }

  .panel {
    min-height: 116px;
    padding: 14px;
  }

  .panel-wide strong {
    font-size: 2.55rem;
  }

  .project-preview {
    min-height: 230px;
  }
}

/* ── Innovations ──────────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #67c9bf 60%, #a8e4df);
  z-index: 200;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
  transition: width 60ms linear;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 640px;
  height: 640px;
  margin: -320px 0 0 -320px;
  background: radial-gradient(circle, rgba(45, 125, 120, 0.055) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.site-nav a.active {
  background: var(--surface-soft);
  color: var(--accent-dark);
}

.typed-text::after {
  content: "|";
  color: var(--accent);
  font-weight: 400;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.service-grid .service-card:nth-child(1) { transition-delay: 0ms; }
.service-grid .service-card:nth-child(2) { transition-delay: 60ms; }
.service-grid .service-card:nth-child(3) { transition-delay: 120ms; }
.service-grid .service-card:nth-child(4) { transition-delay: 180ms; }
.service-grid .service-card:nth-child(5) { transition-delay: 60ms; }
.service-grid .service-card:nth-child(6) { transition-delay: 120ms; }
.service-grid .service-card:nth-child(7) { transition-delay: 180ms; }
.service-grid .service-card:nth-child(8) { transition-delay: 240ms; }

.timeline .step:nth-child(1) { transition-delay: 0ms; }
.timeline .step:nth-child(2) { transition-delay: 90ms; }
.timeline .step:nth-child(3) { transition-delay: 180ms; }
.timeline .step:nth-child(4) { transition-delay: 270ms; }

.project-grid .project-card:nth-child(1) { transition-delay: 0ms; }
.project-grid .project-card:nth-child(2) { transition-delay: 90ms; }
.project-grid .project-card:nth-child(3) { transition-delay: 180ms; }

.testimonial-grid .testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonial-grid .testimonial-card:nth-child(2) { transition-delay: 90ms; }
.testimonial-grid .testimonial-card:nth-child(3) { transition-delay: 180ms; }

/* ── Ticker ─────────────────────────────────────────────── */

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, #0a0d12 0%, var(--accent-dark) 50%, #0a0d12 100%);
  border-bottom: 1px solid rgba(45, 125, 120, 0.35);
  padding: 11px 0;
  cursor: default;
  user-select: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: ticker-run 32s linear infinite;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-track strong {
  color: #ffffff;
  font-weight: 800;
}

.t-dot {
  color: var(--accent);
  font-size: 0.45rem;
  flex-shrink: 0;
  opacity: 0.7;
}

@keyframes ticker-run {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Pricing ─────────────────────────────────────────────── */

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

.pricing-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.pricing-card.pricing-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(45, 125, 120, 0.06) 0%, var(--surface) 50%);
  box-shadow:
    0 0 0 1px rgba(45, 125, 120, 0.25),
    0 32px 80px rgba(45, 125, 120, 0.14);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 10px 0 6px;
  flex-wrap: wrap;
}

.price-symbol {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.price-amount {
  font-size: 5rem;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--ink);
  font-weight: 800;
}

.price-was {
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: line-through;
  align-self: flex-end;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 0.95rem;
  margin-bottom: 22px !important;
  flex: 1;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #2a333d;
  font-weight: 500;
}

.price-features svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
}

.price-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.price-actions .btn {
  width: 100%;
  justify-content: center;
}

.scarcity-tag {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #b45309;
  padding: 8px 14px;
  background: #fef3c7;
  border-radius: 8px;
  border: 1px solid #fde68a;
}

.scarcity-tag.scarcity-hot {
  color: #0f766e;
  background: #ccfbf1;
  border-color: #99f6e4;
}

/* ── Local → Global strip ────────────────────────────────── */

.l2g-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(90deg, #eef6f2 0%, #ffffff 50%, #eef3f8 100%);
  overflow: hidden;
}

.l2g-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 0 0 auto;
  min-width: 140px;
}

.l2g-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.l2g-node strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.l2g-node small {
  font-size: 0.8rem;
  color: var(--muted);
}

.l2g-global strong {
  color: var(--accent-dark);
}

.l2g-connector {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 0 16px;
}

.l2g-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 6px,
    transparent 6px,
    transparent 14px
  );
  animation: flow-right 1.2s linear infinite;
}

@keyframes flow-right {
  0% { background-position: 0 0; }
  100% { background-position: 28px 0; }
}

.l2g-chip {
  flex-shrink: 0;
  padding: 6px 16px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.03em;
  margin: 0 8px;
  white-space: nowrap;
}

/* ── FOMO Widget ─────────────────────────────────────────── */

.fomo-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 110;
  width: 268px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(45, 125, 120, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 64px rgba(12, 15, 20, 0.16);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(calc(100% + 32px));
  transition: transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fomo-widget.is-visible {
  transform: translateY(0);
}

.fomo-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fomo-top strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.fomo-pulse {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.fomo-widget p {
  margin: 0 !important;
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
  color: var(--muted) !important;
}

.fomo-widget p strong {
  color: var(--ink);
}

.fomo-widget .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

.fomo-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 150ms ease, background 150ms ease;
}

.fomo-close:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

/* ── Toast Notifications ─────────────────────────────────── */

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 109;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
  max-width: 320px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 44px rgba(12, 15, 20, 0.12);
  backdrop-filter: blur(14px);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  pointer-events: auto;
  transform: translateX(-110%);
  opacity: 1;
  transition:
    transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 280ms ease;
}

.toast.visible {
  transform: translateX(0);
}

.toast.hiding {
  transform: translateX(-110%);
  opacity: 0;
  transition: transform 320ms ease, opacity 280ms ease;
}

.toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.toast-body {
  line-height: 1.45;
}

.toast-body strong {
  font-weight: 700;
  color: var(--accent-dark);
}

/* ── Pricing responsive ──────────────────────────────────── */

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

  .l2g-strip {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .l2g-connector {
    flex-direction: column;
    padding: 0;
    gap: 4px;
  }

  .l2g-line {
    width: 2px;
    height: 32px;
    background: repeating-linear-gradient(
      180deg,
      var(--accent) 0px,
      var(--accent) 6px,
      transparent 6px,
      transparent 14px
    );
    flex: none;
    animation: flow-down 1.2s linear infinite;
  }

  @keyframes flow-down {
    0% { background-position: 0 0; }
    100% { background-position: 0 28px; }
  }

  .fomo-widget {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    max-width: 320px;
  }

  .toast-container {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* ── Hero Urgency Pill ───────────────────────────────────── */

.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fef2f2, #fff7ed);
  border: 1px solid #fca5a5;
  margin-bottom: 22px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #991b1b;
}

.hero-urgency-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.hero-urgency strong {
  font-weight: 800;
  color: #7f1d1d;
}

/* ── Countdown Strip ─────────────────────────────────────── */

.countdown-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #0c0f14 0%, #0f2a28 50%, #0c0f14 100%);
  border-radius: 12px;
  margin-bottom: 28px;
  border: 1px solid rgba(45, 125, 120, 0.3);
  box-shadow: 0 8px 32px rgba(12, 15, 20, 0.18);
}

.cd-headline {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.cd-units {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 52px;
}

.cd-number {
  font-size: 2rem;
  font-weight: 800;
  color: #67c9bf;
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.cd-sep {
  font-size: 1.6rem;
  color: rgba(103, 201, 191, 0.45);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1;
}

@media (max-width: 720px) {
  .countdown-strip {
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
  }
}

/* ── Savings Badge ───────────────────────────────────────── */

.savings-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 6px;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
  font-size: 0.74rem;
  font-weight: 800;
  align-self: flex-end;
  margin-bottom: 6px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ── FOMO Widget Timer ───────────────────────────────────── */

.fomo-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(90deg, #fef2f2, #fff7ed);
  border: 1px solid #fca5a5;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #991b1b;
  line-height: 1.3;
}

.fomo-timer svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #ef4444;
}

.fomo-timer span {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ── Hero Price Pills ────────────────────────────────────── */

.hero-price-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid transparent;
}

.price-pill strong {
  font-weight: 800;
  font-size: 1rem;
}

.price-pill-web {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #065f46;
}

.price-pill-app {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1e40af;
}

/* ── Proof Strip ─────────────────────────────────────────── */

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 32px 5%;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 0 40px;
}

.proof-item strong {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1.5px;
  font-variant-numeric: tabular-nums;
}

.proof-item .proof-price {
  color: #67c9bf;
}

.proof-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .proof-strip {
    gap: 24px;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    padding: 0 16px;
  }
}

/* ── Process CTA ─────────────────────────────────────────── */

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ── CTA section extras ──────────────────────────────────── */

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

.cta-urgency {
  margin-top: 20px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 0.02em;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline-white svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ── Nav CTA button ──────────────────────────────────────── */

.nav-cta {
  padding: 9px 18px !important;
  font-size: 0.84rem !important;
  border-radius: 8px !important;
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}
