@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --bg: #030d10;
  --accent: #00ffcc;
  --accent2: #00a8cc;
  --text: #e8f5f2;
  --muted: rgba(232, 245, 242, 0.45);
  --glass: rgba(3, 20, 25, 0.55);
  --border: rgba(0, 255, 204, 0.14);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Canvas ── */
#fluid-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(3, 10, 14, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.55rem 1.7rem;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(0,255,204,0.25);
}

/* ── Burger ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── Mobile nav overlay ── */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(3, 13, 16, 0.97);
  backdrop-filter: blur(30px);
  z-index: 99;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.nav-links.mobile-open a { font-size: 1.4rem; }

/* ── Main wrapper ── */
main { position: relative; z-index: 10; }

/* ── Glass card ── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg);
  padding: 1rem 2.6rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.4s;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,255,204,0.28);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
  display: block;
  text-align: center;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

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

.btn-featured {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color: var(--bg);
  font-weight: 500;
}

.btn-featured:hover {
  box-shadow: 0 12px 40px rgba(0,255,204,0.3);
  transform: translateY(-2px);
  color: var(--bg);
  border-color: transparent;
}

/* ── Eyebrow ── */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 2.2rem;
  background: linear-gradient(145deg, #e8f5f2 0%, #00ffcc 45%, #00a8cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 3.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  padding-bottom: 2px;
}

.hero-link:hover { color: var(--text); border-bottom-color: var(--accent); }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 6rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 3.5rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ── Page section ── */
.section {
  min-height: 100vh;
  padding: 11rem 5rem 6rem;
  position: relative;
}

.section-head {
  max-width: 620px;
  margin-bottom: 5rem;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(145deg, #e8f5f2 0%, #00ffcc 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-card {
  padding: 2.6rem 2.2rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
}

.feature-card:hover {
  border-color: rgba(0, 255, 204, 0.38);
  transform: translateY(-6px);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.35);
  background: rgba(0, 255, 204, 0.04);
}

.feature-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 1.6rem;
  stroke-width: 1.4;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.9rem;
  color: var(--text);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

/* ── Steps ── */
.steps-wrap {
  max-width: 860px;
}

.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 2.5rem;
  position: relative;
  align-items: start;
}

.step:not(:last-child) {
  margin-bottom: 0;
}

.step:not(:last-child) .step-line {
  position: absolute;
  left: 43px;
  top: 88px;
  width: 1px;
  height: calc(100% + 1rem);
  background: linear-gradient(to bottom, rgba(0,255,204,0.35), transparent);
}

.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(0, 255, 204, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.4s;
}

.step:hover .step-num {
  border-color: rgba(0,255,204,0.5);
  background: rgba(0,255,204,0.08);
  box-shadow: 0 0 30px rgba(0,255,204,0.12);
}

.step-content {
  padding: 1.4rem 0 5rem;
}

.step-tag {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 0.6rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.step-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
  max-width: 480px;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
  max-width: 1000px;
}

.pricing-card {
  padding: 3rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: rgba(0, 255, 204, 0.45);
  background: rgba(0, 255, 204, 0.04);
}

.badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,255,204,0.5);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
}

.pricing-name {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pricing-price sup {
  font-size: 1.5rem;
  color: var(--accent);
  vertical-align: super;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.pricing-features li.muted { opacity: 0.4; }
.pricing-features li.muted::before { background: var(--muted); }

/* ── FAQ ── */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 6rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(3, 18, 22, 0.5);
  backdrop-filter: blur(20px);
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(0,255,204,0.3); }

.faq-btn {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-btn:hover { color: var(--accent); }

.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(0,255,204,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.35s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
  padding: 0 1.8rem 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ── Contact form ── */
.contact-card {
  padding: 2.5rem;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.contact-sub {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}

.form-row label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-row input,
.form-row textarea,
.form-row select {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: rgba(0,255,204,0.45); }

.form-row select option { background: #0a1f25; }

.form-row textarea { resize: vertical; min-height: 110px; }

.form-btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ── Contact info ── */
.contact-info {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.info-icon svg { width: 16px; height: 16px; }

.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ── Footer ── */
footer {
  position: relative;
  z-index: 10;
  padding: 2.5rem 5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

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

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ── Comparison (features page) ── */
.compare-wrap {
  margin-top: 6rem;
  max-width: 900px;
}

.compare-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--text);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.compare-table th:not(:first-child) { text-align: center; }

.compare-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  border-bottom: 1px solid rgba(0,255,204,0.05);
}

.compare-table td:not(:first-child) { text-align: center; }

.compare-table td:first-child { color: var(--text); }

.check { color: var(--accent); font-size: 1.1rem; }
.cross { color: rgba(232,245,242,0.2); font-size: 1.1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .section { padding: 8rem 1.5rem 4rem; }
  .hero { padding: 8rem 1.5rem 5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 1.2rem; }
  .step-num { width: 60px; height: 60px; font-size: 1.4rem; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; }
  .stat-item:last-child { border-bottom: none; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
