﻿:root {
  color-scheme: light;
  --ink: #0b1b1a;
  --slate: #4f5a59;
  --teal: #0f6b5b;
  --teal-dark: #0b4b41;
  --mist: #e8f6f1;
  --sand: #f7efe4;
  --gold: #f2b35a;
  --rose: #f07d6e;
  --white: #ffffff;
  --shadow: rgba(11, 27, 26, 0.12);
  --shadow-strong: rgba(11, 27, 26, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, #f3fbf8 0%, transparent 55%),
    radial-gradient(circle at 80% 0%, #faeee1 0%, transparent 50%),
    linear-gradient(135deg, #fbf7f1 0%, #f2f9f7 50%, #fdf7f0 100%);
  color: var(--ink);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.ambient {
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 40vh;
  background: radial-gradient(
    circle at center,
    rgba(15, 107, 91, 0.12),
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 32px;
}

.brand {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--slate);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.mobile-nav.is-open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15, 107, 91, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(11, 27, 26, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 32px 0 56px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--teal);
  margin-bottom: 16px;
  font-weight: 600;
}

h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.stat-label {
  color: var(--slate);
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 24px 48px var(--shadow-strong);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.hero-card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.pill {
  background: var(--mist);
  color: var(--teal-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pill-alt {
  background: rgba(240, 125, 110, 0.16);
  color: #9c3d2f;
}

.pill-dark {
  background: rgba(11, 27, 26, 0.12);
  color: var(--ink);
}

.schedule {
  display: grid;
  gap: 14px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 16px var(--shadow);
}

.schedule-time {
  font-weight: 600;
}

.schedule-title {
  color: var(--slate);
  font-size: 0.9rem;
}

.status {
  background: #f3f4f4;
  color: var(--slate);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-filled {
  background: rgba(15, 107, 91, 0.15);
  color: var(--teal-dark);
}

.hero-card-foot {
  margin-top: 16px;
  color: var(--slate);
  font-size: 0.9rem;
}

.section {
  padding: 64px 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--slate);
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 32px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.card p {
  color: var(--slate);
  line-height: 1.5;
}

.feature-groups {
  display: grid;
  gap: 24px;
}

.feature-group {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px var(--shadow);
}

.feature-group.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.feature-group.reverse .feature-visual {
  order: 2;
}

.feature-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(15, 107, 91, 0.12);
  box-shadow: 0 16px 32px var(--shadow);
}

.visual-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-alt {
  background: rgba(240, 125, 110, 0.16);
  color: #9c3d2f;
}

.tag-dark {
  background: rgba(11, 27, 26, 0.12);
  color: var(--ink);
}

.visual-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.visual-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 107, 91, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
}

.mini-card {
  background: rgba(243, 251, 248, 0.8);
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 107, 91, 0.12);
}

.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 6px;
}

.mini-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.mini-note {
  font-size: 0.8rem;
  color: var(--slate);
}

.feature-copy h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.feature-copy p {
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tags span {
  background: rgba(11, 27, 26, 0.08);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.queue {
  display: grid;
  gap: 12px;
}

.queue-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f7fbf9;
  border: 1px solid rgba(11, 27, 26, 0.08);
}

.queue-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.queue-meta {
  font-size: 0.75rem;
  color: var(--slate);
}

.ops-grid {
  display: grid;
  gap: 12px;
}

.ops-card {
  background: #f6f1e8;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 179, 90, 0.2);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: center;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 107, 91, 0.12);
}

.domain-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.domain-chip {
  background: rgba(15, 107, 91, 0.08);
  color: var(--teal-dark);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  font-weight: 700;
  color: var(--teal-dark);
}

.step h4 {
  margin-bottom: 4px;
}

.panel {
  background: linear-gradient(135deg, #fdf8f1 0%, #e5f3ef 100%);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 36px var(--shadow);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 27, 26, 0.08);
  color: var(--slate);
}

.panel-row:last-child {
  border-bottom: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pricing-card h3 {
  font-size: 2rem;
  margin: 8px 0 4px;
}

.pricing-tier {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 600;
}

.pricing-note {
  color: var(--slate);
  margin-bottom: 16px;
}

.pricing-list {
  display: grid;
  gap: 8px;
  color: var(--slate);
  margin-bottom: 20px;
}

.featured {
  background: rgba(15, 107, 91, 0.08);
  border: 1px solid rgba(15, 107, 91, 0.18);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(15, 107, 91, 0.18), rgba(242, 179, 90, 0.25));
  box-shadow: 0 20px 40px var(--shadow);
}

.cta h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.cta p {
  color: var(--slate);
}

.faq .card {
  min-height: 140px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(11, 27, 26, 0.1);
  color: var(--slate);
}

.footer-note {
  max-width: 320px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.8s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-group,
  .feature-group.reverse {
    grid-template-columns: 1fr;
  }

  .feature-group.reverse .feature-visual {
    order: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .ambient {
    animation: none;
  }

  .btn {
    transition: none;
  }
}
