:root {
  --ink: #18252d;
  --muted: #5d6b73;
  --line: #dce7e9;
  --surface: #f6fbfb;
  --white: #ffffff;
  --teal: #43c6cb;
  --teal-dark: #087d83;
  --navy: #243139;
  --shadow: 0 24px 70px rgba(22, 54, 62, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 231, 233, .82);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 44px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { width: 168px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a { color: #40515a; font-size: .94rem; font-weight: 650; text-decoration: none; }
.desktop-nav a:hover { color: var(--teal-dark); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 20px; border-radius: 11px; }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 28px rgba(36, 49, 57, .2); }
.button-primary:hover { background: #121d23; box-shadow: 0 16px 34px rgba(36, 49, 57, .28); }
.button-ghost { border-color: #bdced1; color: var(--navy); background: var(--white); }
.button-ghost:hover { border-color: var(--teal-dark); }
.button-link { padding-inline: 8px; color: var(--teal-dark); }

.hero {
  position: relative;
  min-height: 710px;
  padding: 86px 0 92px;
  overflow: hidden;
  background: linear-gradient(145deg, #f9fcfc 0%, #ffffff 52%, #edfafa 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(8, 125, 131, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 125, 131, .08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: 4%; top: 1%; background: rgba(67, 198, 203, .16); }
.hero-glow-two { width: 280px; height: 280px; left: -120px; bottom: -80px; background: rgba(136, 227, 211, .17); }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.25fr; align-items: center; gap: 66px; }
.hero-copy { max-width: 520px; }
.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 9px 13px;
  border: 1px solid #bfe3e5;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
h1 { margin: 0; max-width: 620px; font-size: clamp(2.75rem, 5.4vw, 4.7rem); line-height: .98; letter-spacing: -.055em; }
.hero-text { max-width: 580px; margin: 26px 0 0; color: var(--muted); font-size: 1.14rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 14px 24px; margin: 34px 0 0; padding: 0; list-style: none; color: #45565e; font-size: .88rem; font-weight: 650; }
.hero-points li { position: relative; padding-left: 20px; }
.hero-points li::before { content: "\2713"; position: absolute; left: 0; color: var(--teal-dark); font-weight: 900; }

.hero-visual { position: relative; padding: 18px; border: 1px solid rgba(183, 211, 214, .8); border-radius: 26px; background: rgba(255, 255, 255, .72); box-shadow: var(--shadow); }
.hero-visual::after { content: ""; position: absolute; inset: 12px; z-index: -1; border-radius: 22px; background: #d8f4f4; transform: rotate(2.2deg); }
.dashboard-image { width: 100%; border-radius: 16px; }
.visual-badge {
  position: absolute;
  z-index: 2;
  top: -19px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #34464e;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(24, 53, 60, .12);
  font-size: .8rem;
  font-weight: 750;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(67, 198, 203, .16); }

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .hero { padding-top: 62px; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 680px; }
  .hero-visual { max-width: 760px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 142px; }
  .button-small { min-height: 40px; padding-inline: 15px; }
  .hero { min-height: auto; padding: 50px 0 70px; }
  h1 { font-size: clamp(2.55rem, 12.5vw, 3.5rem); }
  .hero-text { font-size: 1.02rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 11px; }
  .hero-visual { padding: 9px; border-radius: 18px; }
  .dashboard-image { border-radius: 12px; }
  .visual-badge { display: none; }
}

.section { padding: 108px 0; }
.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.showcase-copy h2,
.faq-intro h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.section-heading > p:last-child,
.showcase-copy > p,
.faq-intro > p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

.platform-strip { border-block: 1px solid var(--line); background: #fbfdfd; }
.platform-inner { min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.platform-inner p { max-width: 300px; margin: 0; color: #53636b; font-size: .9rem; font-weight: 720; }
.platform-inner img { width: min(610px, 58%); max-height: 74px; object-fit: contain; }

.features { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fbfdfd; }
.feature-number { display: block; margin-bottom: 52px; color: #789097; font-size: .77rem; font-weight: 850; letter-spacing: .1em; }
.feature-card h3 { margin: 0 0 12px; font-size: 1.25rem; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.feature-card-dark { color: var(--white); border-color: var(--navy); background: var(--navy); }
.feature-card-dark p, .feature-card-dark .feature-number { color: #c4d3d7; }
.feature-card-accent { border-color: #a8dfe1; background: #ddf6f6; }

.product-showcase { overflow: hidden; background: var(--surface); }
.showcase-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.showcase-copy { max-width: 490px; }
.check-list { display: grid; gap: 14px; margin: 30px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; font-weight: 650; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: var(--white); background: var(--teal-dark); font-size: .7rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.showcase-gallery { position: relative; min-height: 500px; }
.gallery-main { position: absolute; top: 0; left: 0; width: 94%; border: 10px solid var(--white); border-radius: 20px; box-shadow: var(--shadow); }
.gallery-secondary { position: absolute; right: -5%; bottom: -30px; width: 30%; max-height: 470px; object-fit: contain; filter: drop-shadow(0 20px 26px rgba(29, 59, 65, .22)); }

.plans { background: var(--white); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 520px; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fbfdfd; }
.plan-card h3 { margin: 5px 0 9px; font-size: 1.55rem; letter-spacing: -.03em; }
.plan-label { margin: 0; color: var(--teal-dark); font-size: .76rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.plan-description { min-height: 48px; margin: 0; color: var(--muted); line-height: 1.55; }
.price { display: flex; align-items: flex-start; margin: 30px 0 26px; color: var(--navy); }
.price span { padding-top: 11px; font-size: .9rem; font-weight: 800; }
.price strong { font-size: 3.9rem; line-height: 1; letter-spacing: -.07em; }
.price sup { padding-top: 8px; font-size: 1.05rem; font-weight: 850; }
.price small { align-self: flex-end; padding: 0 0 7px 7px; color: var(--muted); }
.plan-card ul { display: grid; gap: 13px; margin: 0 0 30px; padding: 0; list-style: none; color: #506069; }
.plan-card li::before { content: "\2713"; margin-right: 10px; color: var(--teal-dark); font-weight: 900; }
.plan-card .button { width: 100%; margin-top: auto; }
.button-plan { border-color: #afc1c5; color: var(--navy); background: var(--white); }
.button-plan:hover { border-color: var(--teal-dark); }
.plan-featured { border-color: var(--navy); box-shadow: 0 20px 50px rgba(25, 48, 55, .12); transform: translateY(-12px); }
.popular-tag { position: absolute; top: -14px; right: 24px; padding: 8px 13px; border-radius: 999px; color: var(--white); background: var(--navy); font-size: .72rem; font-weight: 800; }
.trial-note { max-width: 760px; margin: 36px auto 0; color: var(--muted); font-size: .88rem; line-height: 1.6; text-align: center; }

.testimonials { color: var(--white); background: var(--navy); }
.testimonials .eyebrow { color: #b9f3f3; border-color: rgba(185, 243, 243, .28); background: rgba(255, 255, 255, .05); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { display: flex; flex-direction: column; min-height: 270px; margin: 0; padding: 30px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 20px; background: rgba(255, 255, 255, .055); }
blockquote > p { margin: 0; color: #ecf6f7; font-size: 1.05rem; line-height: 1.75; }
blockquote footer { display: grid; gap: 4px; margin-top: auto; padding-top: 24px; }
blockquote footer span { color: #9fb2b7; font-size: .86rem; }

.faq { background: #fbfdfd; }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 90px; }
.faq-intro { position: sticky; top: 40px; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; font-size: 1.06rem; font-weight: 780; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--teal-dark); font-size: 1.7rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -6px 48px 24px 0; color: var(--muted); line-height: 1.7; }

.final-cta { padding: 28px 0 90px; background: #fbfdfd; }
.cta-card { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; padding: 58px; border-radius: 28px; color: var(--white); background: linear-gradient(120deg, #213139 0%, #0c747a 100%); box-shadow: 0 26px 70px rgba(23, 61, 67, .18); }
.cta-card h2 { max-width: 720px; }
.eyebrow-light { color: #c7ffff; border-color: rgba(199, 255, 255, .28); background: rgba(255, 255, 255, .06); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-light { color: var(--navy); background: var(--white); }
.button-dark-outline { color: var(--white); border-color: rgba(255, 255, 255, .45); }

.site-footer { padding: 36px 0 48px; border-top: 1px solid var(--line); background: var(--white); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.footer-brand img { width: 144px; }
.footer-grid > p { margin: 0; color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #45565e; font-size: .88rem; font-weight: 720; text-decoration: none; }
.footer-links a:hover { color: var(--teal-dark); }

@media (max-width: 920px) {
  .section { padding: 84px 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid, .faq-grid { grid-template-columns: 1fr; gap: 54px; }
  .showcase-copy { max-width: 680px; }
  .showcase-gallery { min-height: 520px; }
  .plan-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .plan-card { min-height: 0; }
  .plan-featured { transform: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  blockquote { min-height: 220px; }
  .faq-intro { position: static; }
  .cta-card { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr; justify-items: start; }
}

@media (max-width: 620px) {
  .section { padding: 70px 0; }
  .platform-inner { padding-block: 26px; align-items: flex-start; flex-direction: column; gap: 18px; }
  .platform-inner img { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; }
  .showcase-gallery { min-height: 310px; }
  .gallery-main { width: 100%; border-width: 5px; }
  .gallery-secondary { right: -2%; bottom: -20px; width: 32%; max-height: 270px; }
  .plan-card { padding: 28px 24px; }
  .price strong { font-size: 3.25rem; }
  .cta-card { gap: 34px; padding: 36px 26px; }
  .cta-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .cta-actions .button { width: 100%; }
  .footer-links { flex-wrap: wrap; gap: 16px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
