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

html {
  scroll-behavior: smooth;
}

:root {
  --green: #00ff7f;
  --green-dark: #00b85c;
  --black: #050505;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.12);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
  filter: blur(22px);
  z-index: -1;
}

.orb.one {
  top: -220px;
  left: -170px;
}

.orb.two {
  bottom: -250px;
  right: -170px;
  background: radial-gradient(circle, rgba(0, 255, 127, 0.2), transparent 65%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
  transition: transform 0.35s ease;
}

header.hide {
  transform: translateY(-100%);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  color: white;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a {
  color: white;
  text-decoration: none;
  opacity: 0.72;
}

nav a:hover,
nav a[aria-current="page"] {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 38px;
  padding: 120px 42px 60px;
  position: relative;
}

h1 {
  font-size: clamp(42px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  max-width: 1080px;
  font-weight: 700;
}

h1 span.stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px white;
}

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

.btn {
  border: none;
  outline: none;
  padding: 16px 24px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-green {
  background: var(--green);
  color: var(--black);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-card {
  position: relative;
  height: 610px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    #101010;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(35deg) translateX(-55%);
}

.browser-top {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.mock-block {
  position: relative;
  border-radius: 26px;
  background: #f5f5f5;
  color: #050505;
  padding: 28px;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.mock-title {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 700;
  max-width: 360px;
  z-index: 2;
}

.mock-title span {
  color: var(--green-dark);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  z-index: 2;
}

.mock-grid div {
  height: 86px;
  border-radius: 16px;
  background: #050505;
}

.mock-grid div:nth-child(2) {
  background: var(--green);
}

.mock-grid div:nth-child(5) {
  background: #d8d8d8;
}

.mock-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.95;
}

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-track {
  display: inline-block;
  animation: move 18s linear infinite;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
}

.strip-track span {
  margin-right: 42px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.75);
}

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

.section {
  padding: 120px 42px;
}

.section-header {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.section-kicker {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.card {
  min-height: 360px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
  color: inherit;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

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

.card-number {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.card h3 {
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.card h3.smaller {
  font-size: 21px;
}

.card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  font-size: 16px;
  margin-top: 18px;
}

.card .card-link {
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  display: inline-block;
}

.statement {
  padding: 140px 42px;
  background: #ffffff;
  color: #050505;
  position: relative;
  overflow: hidden;
}

.statement h2 {
  font-size: clamp(38px, 6.5vw, 90px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  max-width: 1250px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.statement .green {
  color: var(--green-dark);
}

.statement-shape {
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--green);
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 50px;
}

.price-card {
  border-radius: 34px;
  padding: 34px;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.price-card h3 {
  font-size: 30px;
  letter-spacing: -0.8px;
  font-weight: 700;
}

.price {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 18px 0;
}

.price span {
  font-size: 18px;
  letter-spacing: 0;
}

.price-card p {
  font-size: 17px;
  line-height: 1.5;
  opacity: 0.75;
  max-width: 420px;
}

.price-card ul {
  list-style: none;
  margin: 22px 0 26px;
  font-size: 15px;
  line-height: 2;
  opacity: 0.85;
}

.price-card ul li::before {
  content: "— ";
}

/* ---------- Subpage layout ---------- */

.page-hero {
  padding: 170px 42px 70px;
  max-width: 1180px;
}

.page-hero .breadcrumbs {
  margin-bottom: 26px;
}

.page-title {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 700;
}

.page-intro {
  margin-top: 28px;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

.breadcrumbs {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

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

.breadcrumbs span.sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.3);
}

.meta-line {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.meta-line .dot-sep {
  color: var(--green);
}

.prose {
  padding: 20px 42px 100px;
  max-width: 860px;
  font-size: 17.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.prose h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: white;
  margin: 64px 0 22px;
}

.prose h3 {
  font-size: 24px;
  letter-spacing: -0.5px;
  color: white;
  margin: 42px 0 16px;
}

.prose p {
  margin-bottom: 20px;
}

.prose ul,
.prose ol {
  margin: 0 0 22px 22px;
}

.prose li {
  margin-bottom: 10px;
}

.prose a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 127, 0.35);
}

.prose a:hover {
  border-bottom-color: var(--green);
}

.prose strong {
  color: white;
}

.prose blockquote {
  border-left: 3px solid var(--green);
  padding: 6px 0 6px 22px;
  margin: 30px 0;
  color: white;
  font-weight: bold;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 15.5px;
}

.prose th,
.prose td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}

.prose th {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 1px;
}

.faq-list {
  max-width: 860px;
  padding: 0 42px 100px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  padding: 26px 28px;
  margin-bottom: 14px;
}

.faq-item h3 {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: white;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  font-size: 16px;
}

.faq-item p a {
  color: var(--green);
  text-decoration: none;
}

.cta-band {
  margin: 40px 42px 110px;
  border-radius: 36px;
  background: var(--green);
  color: var(--black);
  padding: 60px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 700;
  max-width: 640px;
}

.cta-band .btn {
  background: var(--black);
  color: white;
  flex: 0 0 auto;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 42px 110px;
}

.post-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
  min-height: 250px;
}

.post-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.post-card .post-date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.45);
}

.post-card h3 {
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.post-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}

.post-card .read-more {
  color: var(--green);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 42px 90px;
  max-width: 1000px;
}

.chip-list a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.chip-list a:hover {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}

/* ---------- Footer ---------- */

.footer {
  padding: 110px 42px 42px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-top: 1px solid var(--border);
}

.footer-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 25px var(--green);
  flex: 0 0 auto;
}

.footer h2 {
  font-size: clamp(36px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 30px;
}

.footer-nav h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 14.5px;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom strong {
  color: white;
  font-size: 24px;
  text-transform: lowercase;
}

.copyright {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.38);
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.25s ease;
}

.socials a:hover {
  background: var(--green);
  color: #050505;
  transform: translateY(-4px);
}

.socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  z-index: 200;
  box-shadow: 0 0 35px rgba(0, 255, 127, 0.28);
  transition: 0.25s ease;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

/* ---------- Responsive ---------- */

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

  .hero-card {
    max-width: 720px;
  }

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

@media (max-width: 760px) {
  header {
    padding: 18px 18px;
  }

  .logo {
    font-size: 20px;
  }

  nav {
    gap: 14px;
    font-size: 11px;
  }

  nav a.hide-mobile {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 50px;
    gap: 42px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  h1 span.stroke {
    -webkit-text-stroke: 1px white;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 26px;
  }

  .btn {
    width: 100%;
    padding: 15px 20px;
  }

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

  .hero-card {
    height: auto;
    border-radius: 26px;
    padding: 18px;
  }

  .mock-block {
    height: 390px;
    padding: 22px;
    border-radius: 22px;
  }

  .mock-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .mock-circle {
    width: 230px;
    height: 230px;
    right: -100px;
    top: 78px;
  }

  .mock-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mock-grid div {
    height: 64px;
    border-radius: 14px;
  }

  .strip {
    padding: 16px 0;
  }

  .strip-track {
    font-size: 18px;
  }

  .section {
    padding: 82px 18px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -1px;
  }

  .cards,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .cards.two {
    grid-template-columns: 1fr;
  }

  .post-grid {
    padding: 0 18px 80px;
  }

  .chip-list {
    padding: 0 18px 70px;
  }

  .card {
    min-height: 280px;
    border-radius: 24px;
    padding: 24px;
  }

  .card h3 {
    font-size: 22px;
  }

  .statement {
    padding: 92px 18px;
  }

  .statement h2 {
    font-size: clamp(30px, 9vw, 46px);
    letter-spacing: -1.2px;
  }

  .statement-shape {
    width: 260px;
    height: 260px;
    right: -110px;
    bottom: -100px;
  }

  .pricing {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .price-card {
    min-height: 340px;
    padding: 26px;
    border-radius: 26px;
  }

  .price-card h3 {
    font-size: 26px;
  }

  .price {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  .page-hero {
    padding: 130px 18px 46px;
  }

  .page-title {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -0.8px;
  }

  .page-intro {
    font-size: 17px;
  }

  .prose {
    padding: 10px 18px 70px;
    font-size: 16.5px;
  }

  .faq-list {
    padding: 0 18px 70px;
  }

  .cta-band {
    margin: 20px 18px 80px;
    padding: 40px 26px;
    border-radius: 26px;
  }

  .footer {
    padding: 80px 18px 28px;
    gap: 40px;
  }

  .footer-label {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 9px 12px;
    margin-bottom: 22px;
  }

  .footer h2 {
    font-size: clamp(30px, 9vw, 48px);
    letter-spacing: -1.2px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .socials {
    flex-wrap: wrap;
  }

  .scroll-top {
    right: 16px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .mock-title {
    font-size: 27px;
  }

  .section-title {
    font-size: 27px;
  }

  .statement h2 {
    font-size: 29px;
  }
}
