:root {
  --bg: #050d09;
  --bg-2: #08120d;
  --surface: #0d1711;
  --surface-2: #111e16;
  --surface-3: #17251b;
  --line: rgba(215, 255, 0, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f7fff7;
  --muted: #a8b8c8;
  --muted-2: #708091;
  --green: #d7ff00;
  --green-2: #98c900;
  --danger: #ff4242;
  --orange: #ffb84d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 5%, rgba(215, 255, 0, 0.12), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(75, 130, 57, 0.13), transparent 30%),
    linear-gradient(180deg, #050d09 0%, #07100b 42%, #040807 100%);
  color: var(--text);
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 76px 0;
}

.compact {
  padding-top: 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 13, 9, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(215, 255, 0, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  color: #dfe9ed;
  font-size: 0.96rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: #081008;
  box-shadow: 0 0 34px rgba(215, 255, 0, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--green);
}

.btn-nav {
  min-height: 46px;
}

.hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(215, 255, 0, 0.11);
  color: var(--green);
  border: 1px solid rgba(215, 255, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 900;
}

.hero h1,
.section-copy h2,
.section-title h2,
.final-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero h1 strong,
.section-title h2 strong,
.final-cta h2 strong {
  color: var(--green);
  font-weight: 950;
}

.hero-copy p,
.section-copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.trust-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.trust-item > span {
  color: var(--green);
  font-weight: 900;
  font-size: 1.15rem;
}

.trust-item strong {
  display: block;
  font-size: 0.78rem;
}

.trust-item small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

.product-frame,
.wide-shot {
  position: relative;
  border: 1px solid rgba(215, 255, 0, 0.25);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(215, 255, 0, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.product-frame::before,
.wide-shot::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 70% 10%, rgba(215, 255, 0, 0.16), transparent 35%);
  pointer-events: none;
}

.product-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: left top;
  opacity: 0.96;
}

.section-title.centered {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.pain-grid,
.feature-grid,
.reports-grid,
.pricing-cards {
  display: grid;
  gap: 18px;
}

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

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

.pain-card,
.feature-card,
.report-card,
.price-card,
.included-box {
  background: linear-gradient(180deg, rgba(20, 34, 25, 0.84), rgba(10, 19, 14, 0.84));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pain-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
}

.pain-card p,
.feature-card p,
.report-card p,
.export-card p,
.price-card .billing,
.site-footer p {
  color: var(--muted);
  font-size: 0.94rem;
}

.pain-card h3,
.feature-card h3,
.report-card h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.pain-icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--danger);
  border: 1px solid rgba(255, 66, 66, 0.35);
  background: rgba(255, 66, 66, 0.08);
  font-weight: 900;
}

.divider-dot {
  width: 12px;
  height: 12px;
  margin: 24px auto;
  transform: rotate(45deg);
  background: rgba(215, 255, 0, 0.35);
  box-shadow: 0 0 20px rgba(215, 255, 0, 0.38);
}

.feature-icon,
.report-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--green);
  background: rgba(215, 255, 0, 0.09);
  border: 1px solid rgba(215, 255, 0, 0.2);
  font-size: 1.35rem;
  font-weight: 900;
}

.split-grid,
.reports-layout,
.pricing-layout {
  display: grid;
  grid-template-columns: 0.33fr 0.67fr;
  gap: 46px;
  align-items: center;
}

.section-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  letter-spacing: -0.06em;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list li {
  color: #e4eeee;
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-weight: 900;
}

.wide-shot img {
  width: 100%;
  height: auto;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.reports-layout,
.pricing-layout {
  align-items: start;
}

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

.report-card {
  min-height: 172px;
  padding: 20px;
}

.export-card {
  grid-column: 1 / -1;
  min-height: 72px;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 34, 25, 0.9), rgba(10, 19, 14, 0.92));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.export-actions {
  display: flex;
  gap: 10px;
}

.export-actions button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-weight: 800;
}

.export-actions .danger {
  background: var(--danger);
  border-color: var(--danger);
  color: white;
}

.pricing-layout {
  grid-template-columns: 0.28fr 0.72fr;
}

.pricing-cards {
  grid-template-columns: repeat(3, 1fr);
}

.included-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.included-box span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  border: 1px solid var(--green);
}

.price-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.price {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.price span {
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-left: 4px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.price-card li {
  color: #dce9e7;
  font-size: 0.92rem;
  padding-left: 22px;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.price-card a {
  margin-top: auto;
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: all 0.2s ease;
}

.price-card a:hover {
  border-color: var(--green);
  background: rgba(215, 255, 0, 0.08);
}

.price-card.featured {
  border-color: rgba(215, 255, 0, 0.75);
  box-shadow: 0 0 42px rgba(215, 255, 0, 0.12);
}

.price-card.featured .price,
.price-card.featured h3 {
  color: var(--green);
}

.price-card.featured a {
  background: var(--green);
  color: #061006;
  border-color: var(--green);
}

.plan-badge {
  position: absolute;
  right: 18px;
  top: -14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #07100b;
  font-size: 0.78rem;
  font-weight: 950;
}

.final-cta {
  padding: 28px 0 0;
}

.final-cta-box {
  min-height: 176px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px 44px;
  border-radius: 26px 26px 0 0;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 50%, rgba(215, 255, 0, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(22, 38, 27, 0.95), rgba(6, 14, 9, 0.98));
  box-shadow: var(--shadow);
}

.final-cta-box img {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  border: 2px solid rgba(215, 255, 0, 0.4);
  box-shadow: 0 0 44px rgba(215, 255, 0, 0.25);
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 720px;
}

.final-cta p {
  color: var(--muted);
  margin-top: 8px;
}

.site-footer {
  padding: 32px 0 18px;
  background: #030806;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 34px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 8px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.copyright {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.86rem;
  margin-top: 28px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .reports-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .product-frame img {
    height: auto;
  }

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 30px, var(--max));
  }

  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .trust-row,
  .pain-grid,
  .feature-grid,
  .reports-grid,
  .pricing-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .export-card,
  .final-cta-box {
    align-items: stretch;
    flex-direction: column;
  }

  .export-card {
    display: grid;
  }

  .export-actions {
    flex-wrap: wrap;
  }

  .export-actions button,
  .hero-actions .btn {
    width: 100%;
  }

  .final-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 26px 26px 0 0;
  }

  .final-cta-box img {
    margin-inline: auto;
  }

  .final-cta-box .btn {
    width: 100%;
  }

  .wide-shot img {
    min-height: unset;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    padding-inline: 16px;
  }

  .trust-row {
    gap: 8px;
  }

  .pain-card,
  .feature-card,
  .report-card,
  .price-card {
    padding: 20px;
  }

  .product-frame,
  .wide-shot {
    border-radius: 18px;
  }

  .section-copy h2 {
    font-size: 2.05rem;
  }
}


.segments-section {
  padding-top: 18px;
}

.section-title p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.segment-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 255, 0, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(20, 34, 25, 0.84), rgba(10, 19, 14, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.segment-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(215, 255, 0, 0.10);
  border: 1px solid rgba(215, 255, 0, 0.20);
  font-size: 1.4rem;
}

.segment-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.segment-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1120px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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