:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.14);
  --teal: #0f766e;
  --teal-deep: #115e59;
  --gold: #9a6a20;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

.blob {
  position: fixed;
  z-index: -2;
  pointer-events: none;
  filter: blur(70px);
  display: none;
}

.blob-a {
  width: 480px;
  height: 480px;
  top: -180px;
  left: -180px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
}

.blob-b {
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  padding: 2rem;
}

.splash.hide {
  opacity: 0;
  visibility: hidden;
}

.splash-est {
  position: absolute;
  top: 1.3rem;
  left: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: rgba(15, 23, 42, 0.56);
}

.splash-logo {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(4rem, 16vw, 12rem);
  line-height: 0.9;
  background: linear-gradient(180deg, #0f172a, #475569);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.splash-sub {
  margin: 0.9rem 0 0;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  color: rgba(15, 23, 42, 0.55);
}

.splash-foot {
  width: min(1060px, calc(100% - 2rem));
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.7rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tiny {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(15, 23, 42, 0.55);
  text-transform: uppercase;
}

.ready {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--teal-deep);
  font-weight: 700;
}

.splash-percent {
  margin: 0;
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: rgba(15, 23, 42, 0.9);
}

.splash-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.8rem;
  width: min(1060px, calc(100% - 2rem));
  height: 2px;
  background: rgba(15, 23, 42, 0.18);
}

.splash-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #67e8f9);
  animation: fill 1.8s ease forwards;
}

.site-header {
  width: min(1160px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 10px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.est {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(15, 23, 42, 0.55);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: #334155;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #020617;
}

.section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.4rem 0;
}

.hero {
  padding-top: 3.8rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: center;
}

.kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0.9rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, #0f172a, #475569);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 1.1rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 1.1rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:not(.btn-ghost) {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #14b8a6);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.2);
}

.btn-ghost {
  color: #0f172a;
  border-color: var(--line);
  background: #ffffff;
}

.btn-ghost:hover {
  background: #f8fafc;
}

.btn-small {
  padding: 0.5rem 0.88rem;
  font-size: 0.82rem;
}

.hero-stats {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-stats article {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 14px;
  padding: 0.85rem;
}

.hero-stats h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  font-size: 2rem;
}

.hero-stats p {
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.16);
}

.floating-card {
  position: absolute;
  right: -12px;
  bottom: 20px;
  width: 180px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.72rem;
}

.floating-card h4 {
  margin: 0.32rem 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.8rem;
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.marquee {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.9rem 0;
  animation: scroll 22s linear infinite;
}

.marquee span {
  color: #475569;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.15;
}

.dashboard-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.dashboard-card,
.phone-card,
.feature,
.preview-card,
.story,
.faq-list details {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.dashboard-card {
  padding: 1rem;
  display: grid;
  gap: 0.72rem;
}

.dash-top {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.dash-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.dash-top h3 {
  margin: 0.38rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.insight {
  border-radius: 12px;
  border: 1px solid #99f6e4;
  background: #ecfeff;
  padding: 0.9rem;
}

.insight p:last-child {
  margin: 0.35rem 0 0;
  color: #115e59;
  font-size: 0.86rem;
}

.phone-card {
  margin: 0;
  padding: 0.8rem;
}

.phone-card img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  max-height: 570px;
  object-fit: cover;
}

.feature-grid,
.preview-grid,
.story-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

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

.feature,
.story {
  padding: 1rem;
}

.feature h3,
.story h3 {
  margin: 0;
  font-size: 1.05rem;
}

.feature p,
.story p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.preview-card {
  margin: 0;
  padding: 0.7rem;
}

.preview-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
}

.preview-card.logo img {
  object-fit: contain;
  background: #f8fafc;
  padding: 2rem;
}

.preview-card figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.faq-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.72rem;
}

.faq-list details {
  padding: 0.95rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.contact {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact .lead {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: #64748b;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: #0f172a;
}

.footer-links a:hover {
  color: var(--teal);
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  .hero-visual {
    max-width: 520px;
  }

  .dashboard-grid,
  .feature-grid,
  .preview-grid,
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 1rem);
    border-radius: 18px;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.85rem;
  }

  .nav {
    justify-content: space-between;
  }

  .btn-small {
    width: 100%;
  }

  .section {
    width: calc(100% - 1rem);
    padding: 3.6rem 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-grid,
  .feature-grid,
  .preview-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    right: 8px;
    bottom: 10px;
  }

  .site-footer {
    width: calc(100% - 1rem);
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .splash-foot {
    width: calc(100% - 1rem);
  }

  .splash-line {
    width: calc(100% - 1rem);
  }
}
