:root {
  color-scheme: light;
  --ink: #1f2933;
  --slate: #4a5562;
  --sand: #f7f1e7;
  --amber: #ffb35c;
  --mint: #6dd6c1;
  --rose: #f28cab;
  --sky: #d8e5ff;
  --night: #122026;
  --card: rgba(255, 255, 255, 0.72);
  --glass: rgba(255, 255, 255, 0.4);
  --border: rgba(31, 41, 51, 0.12);
  --shadow: 0 24px 50px rgba(17, 24, 39, 0.15);
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: radial-gradient(circle at top left, #fff4dc 0%, #f7f1e7 55%, #eef2ff 100%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}

.orb--amber {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #ffe0b5 0%, var(--amber) 60%, transparent 70%);
  top: -120px;
  left: -80px;
}

.orb--mint {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #d5fff5 0%, var(--mint) 55%, transparent 70%);
  bottom: -160px;
  right: -100px;
  animation-delay: 2s;
}

.orb--rose {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #ffe1ea 0%, var(--rose) 55%, transparent 70%);
  top: 45vh;
  right: 10vw;
  animation-delay: 4s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 95%, rgba(0, 0, 0, 0.03) 95%),
    linear-gradient(90deg, transparent 95%, rgba(0, 0, 0, 0.03) 95%);
  background-size: 80px 80px;
  opacity: 0.35;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(18px);
  }
}

header,
main,
footer {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 10px;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--night);
  color: #fff;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
}

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

.cta,
.ghost {
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: 999px;
  padding: 12px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta {
  background: var(--night);
  color: #fff;
  box-shadow: 0 16px 30px rgba(18, 32, 38, 0.2);
}

.cta--dark {
  background: var(--night);
}

.ghost {
  background: transparent;
  color: var(--night);
  border: 1px solid var(--border);
}

.cta:hover,
.ghost:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  padding: 50px 0 80px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lede {
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.hero__stats h3 {
  font-size: 22px;
  font-family: "Fraunces", serif;
}

.hero__stats span {
  font-size: 13px;
  color: var(--slate);
}

.hero__panel {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card--accent {
  background: linear-gradient(135deg, rgba(18, 32, 38, 0.9), rgba(28, 78, 90, 0.9));
  color: #fff;
}

.pulse {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.pulse span {
  height: 68px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--mint), #ffffff);
  animation: pulse 1.8s ease-in-out infinite;
}

.pulse span:nth-child(2) {
  animation-delay: 0.2s;
}

.pulse span:nth-child(3) {
  animation-delay: 0.4s;
}

.pulse span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.6);
  }
  50% {
    transform: scaleY(1);
  }
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row span {
  background: var(--glass);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.meter {
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 20px;
}

.meter__bar {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--amber), var(--rose));
}

.section {
  padding: 70px 0;
}

.section__title {
  max-width: 640px;
  margin-bottom: 36px;
}

.section__title p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 12px;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 40px);
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-grid article {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

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

.checklist li {
  padding-left: 28px;
  position: relative;
  color: var(--slate);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
}

.project-cards {
  display: grid;
  gap: 16px;
}

.project {
  background: var(--night);
  color: #fff;
  padding: 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}

.pricing {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.pricing__cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.price-card--featured {
  background: var(--night);
  color: #fff;
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--amber);
  color: #1a1206;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.price {
  font-family: "Fraunces", serif;
  font-size: 22px;
}

.section--cta {
  background: var(--night);
  color: #fff;
  border-radius: 30px;
  padding: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-form input {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 60px;
  color: var(--slate);
  font-size: 14px;
}

.footer__links {
  display: flex;
  gap: 18px;
}

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

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero,
  .section--split,
  .pricing,
  .section--cta {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: column;
  }

  .topbar {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .section--cta {
    padding: 32px;
  }

  .hero__stats {
    gap: 16px;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
  }
}

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--night);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.toast--show {
  opacity: 1;
  transform: translateY(0);
}
