@import url("https://fonts.googleapis.com/css2?family=Syne:wght@600;700&family=Inter:wght@300;400;500&display=swap");

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:root {
  --bg: #04141F;
  --surface: #0d1f2d;
  --surface2: #112536;
  --border: rgba(255,255,255,0.07);
  --text: #F0EFE8;
  --muted: #8a9baa;
  --subtle: #3d5060;
  --accent: #37CFD0;
  --accent-dim: rgba(55,207,208,0.1);
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;
  --space-1: 0.5rem;
  --space-2: 0.875rem;
  --space-3: 1.25rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.28);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(55, 207, 208, 0.12), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

main,
nav,
footer {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  background: rgba(4, 20, 31, 0.72);
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-logo-main {
  color: var(--text);
}

.nav-logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links a,
.footer-col a,
.social-links a {
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active,
.footer-col a:hover,
.social-links a:hover {
  color: var(--accent);
}

.nav-cta,
.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.nav-cta,
.btn-primary {
  background: var(--accent);
  color: #04141F;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-primary:hover,
.btn-ghost:hover,
.btn-outline:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(4, 20, 31, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 40;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
}

.mobile-menu-cta {
  margin-top: 1rem;
}

.page-hero {
  padding: 140px 0 3.5rem;
  border-bottom: 1px solid var(--border);
}

.home-hero {
  position: relative;
  padding: 150px 0 5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -10rem auto auto 50%;
  width: 42rem;
  height: 42rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(55, 207, 208, 0.16), transparent 60%);
  pointer-events: none;
}

.hero-grid,
.about-grid,
.contact-grid,
.proof-card {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 720px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 8ch;
}

.hero-body,
.section-body {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.hero-body {
  margin-top: 1.25rem;
}

.hero-actions,
.card-actions,
.proof-tags,
.trust-row,
.filter-bar,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-row {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.section-block {
  padding: 5rem 0;
}

.divider,
.divider-top {
  border-top: 1px solid var(--border);
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-tag::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.sub-title {
  margin: 1rem 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: var(--accent);
}

.steps-grid,
.tier-grid,
.templates-grid,
.audience-grid {
  display: grid;
  gap: 1.5rem;
}

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

.step-card,
.tier-card,
.template-card,
.info-card,
.stat-box,
.note-box,
.ecosystem-card,
.comparison-table,
.contact-form,
.proof-card,
.timeline-item,
.faq-item {
  background: rgba(13, 31, 45, 0.86);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.step-card,
.info-card,
.stat-box,
.ecosystem-card,
.timeline-item {
  padding: 1.6rem;
}

.step-number,
.timeline-number {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--accent);
}

.step-card h3,
.tier-card h3,
.template-content h3,
.info-card h3,
.proof-copy h3 {
  margin-bottom: 0.65rem;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.step-card p,
.tier-card li,
.template-content p,
.info-card p,
.proof-copy p,
.timeline-content p,
.long-copy p {
  color: var(--muted);
  font-size: 0.95rem;
}

.tier-card {
  position: relative;
  padding: 1.75rem;
}

.tier-card.featured {
  border-color: rgba(55, 207, 208, 0.55);
}

.tier-label,
.popular-pill,
.niche-badge,
.tier-badge,
.style-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier-label {
  margin-bottom: 1rem;
  background: var(--accent-dim);
  color: var(--accent);
}

.popular-pill {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(55, 207, 208, 0.16);
  color: var(--accent);
}

.tier-price,
.template-price {
  margin: 1rem 0 1.1rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent);
}

.tier-card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.small-note,
.footer-brand p,
.footer-col a,
.footer-bottom p,
.social-links a,
.form-note {
  color: var(--muted);
  font-size: 12px;
}

.template-card {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.template-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 207, 208, 0.4);
}

.template-card.coming-soon {
  opacity: 0.68;
}

.template-card.coming-soon:hover {
  transform: none;
  border-color: var(--border);
}

.template-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 10 / 7;
  background: var(--surface2);
}

.template-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.niche-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(4, 20, 31, 0.84);
  border: 1px solid rgba(255,255,255,0.1);
}

.card-pills {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.style-dark {
  background: #04141F;
  border: 1px solid rgba(55, 207, 208, 0.55);
  color: var(--accent);
}

.style-light {
  background: #F8F6F2;
  color: #04141F;
}

.style-bold {
  background: #0a0a0a;
  color: #f1cb4c;
}

.tier-1 {
  background: rgba(138, 155, 170, 0.16);
  color: var(--muted);
}

.tier-2 {
  background: rgba(230, 170, 76, 0.18);
  color: #f0b457;
}

.tier-3 {
  background: rgba(55, 207, 208, 0.18);
  color: var(--accent);
}

.template-content {
  padding: 1.35rem;
}

.template-content p {
  min-height: 3em;
}

.disabled {
  opacity: 0.7;
  pointer-events: none;
}

.filter-bar {
  margin-bottom: 2rem;
}

.filter-btn {
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #04141F;
}

.niche-section + .niche-section {
  margin-top: 3rem;
}

.niche-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.niche-head h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
}

.niche-head span {
  color: var(--muted);
  font-size: 0.85rem;
}

.proof-card {
  grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
}

.proof-copy {
  padding: 2rem;
}

.proof-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.proof-tags span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.faq-icon {
  color: var(--accent);
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 1.4rem 1.4rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
}

.timeline-content h2 {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.timeline-content h2 span {
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.note-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(17, 37, 54, 0.78);
  color: var(--muted);
}

.comparison-table {
  overflow: auto;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.comparison-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.comparison-table th {
  font-family: var(--font-heading);
}

.comparison-table .yes {
  color: var(--accent);
  font-weight: 700;
}

.comparison-table .no {
  color: var(--muted);
}

.about-grid,
.contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.long-copy {
  display: grid;
  gap: 1rem;
}

.stats-stack {
  display: grid;
  gap: 1rem;
}

.stat-box span {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--accent);
}

.stat-box p {
  color: var(--muted);
}

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

.ecosystem-card {
  padding: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand,
.footer-col {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 20, 31, 0.92);
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 80vh;
  border-radius: 24px;
}

.lightbox button {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(17, 37, 54, 0.8);
  color: var(--text);
}

.lightbox .lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox .lightbox-prev {
  left: 2rem;
}

.lightbox .lightbox-next {
  right: 2rem;
}

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

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

.rd1 {
  transition-delay: 0.1s;
}

.rd2 {
  transition-delay: 0.2s;
}

.rd3 {
  transition-delay: 0.3s;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .steps-grid,
  .tier-grid,
  .templates-grid,
  .about-grid,
  .contact-grid,
  .proof-card,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 1.25rem;
  }

  .page-hero,
  .home-hero {
    padding-top: 120px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    max-width: none;
  }
}
