:root {
  --bg: #07110c;
  --bg-soft: #0c1c14;
  --ink: #f6f0e4;
  --muted: #a8c0b2;
  --line: rgba(232, 197, 107, 0.22);
  --gold: #e8c56b;
  --gold-deep: #c9a227;
  --mint: #5ee4a3;
  --leaf: #1f7a52;
  --glass: rgba(10, 28, 20, 0.72);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 50% -10%, #143526 0%, var(--bg) 55%);
  font-family: var(--sans);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.atmosphere,
.leaf-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite;
}

.orb-a {
  width: 38vw;
  height: 38vw;
  left: -8vw;
  top: -6vw;
  background: #1a6b4a;
}

.orb-b {
  width: 32vw;
  height: 32vw;
  right: -10vw;
  top: 12vh;
  background: #8a6a1d;
  animation-delay: -6s;
}

.orb-c {
  width: 28vw;
  height: 28vw;
  left: 30vw;
  bottom: -12vw;
  background: #0e3d2a;
  animation-delay: -11s;
}

.haze {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 17, 12, 0.2) 50%, rgba(7, 17, 12, 0.72) 100%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.palm {
  position: absolute;
  height: min(88vh, 720px);
  color: rgba(94, 228, 163, 0.13);
  animation: sway 9s ease-in-out infinite;
}

.palm-left {
  left: -2vw;
  bottom: -8vh;
}

.palm-right {
  right: -3vw;
  bottom: -10vh;
  animation-delay: -4s;
}

.leaf {
  position: absolute;
  width: 18px;
  height: 34px;
  background: linear-gradient(180deg, #7be3b0, #1f7a52);
  border-radius: 80% 0 80% 0;
  opacity: 0.28;
  animation: fall linear infinite;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 7vw 0;
}

.mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
}

.pill {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232, 197, 107, 0.08);
  animation: pulse 2.8s ease-in-out infinite;
}

.hero {
  text-align: center;
  padding: 9vh 6vw 6vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--mint);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
  animation: blink 1.8s ease-in-out infinite;
}

.domain {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 9.4vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.word {
  display: inline-block;
  background: linear-gradient(110deg, #f8f1e2 20%, #e8c56b 45%, #f8f1e2 70%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6.5s linear infinite, rise 1.1s ease both;
}

.tld {
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0.02em;
  vertical-align: 0.42em;
  margin-left: 0.08em;
  animation: rise 1.2s ease 0.15s both;
}

.lede {
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  font-weight: 300;
  animation: rise 1.2s ease 0.25s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: rise 1.2s ease 0.35s both;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font: 500 15px/1 var(--sans);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #1a1406;
  background: linear-gradient(180deg, #f3de95, var(--gold) 40%, var(--gold-deep));
  box-shadow: 0 10px 30px rgba(232, 197, 107, 0.28);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn.full {
  width: 100%;
  margin-top: 8px;
}

.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
  animation: rise 1.2s ease 0.45s both;
}

.tags li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1100px, 88vw);
  margin: 0 auto 8vh;
}

.stats article {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(16px);
  animation: rise 1s ease both;
}

.stats article:nth-child(2) { animation-delay: 0.08s; }
.stats article:nth-child(3) { animation-delay: 0.16s; }
.stats article:nth-child(4) { animation-delay: 0.24s; }

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.stats p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.split {
  width: min(1100px, 88vw);
  margin: 0 auto 12vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.copy h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
}

.copy p {
  color: var(--muted);
  line-height: 1.7;
}

.checklist {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--ink);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--mint) 55%, var(--leaf));
  box-shadow: 0 0 12px rgba(94, 228, 163, 0.5);
}

.card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  display: grid;
  gap: 14px;
}

.card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.form-note {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 12, 0.55);
  color: var(--ink);
  border-radius: 14px;
  padding: 13px 14px;
  font: 400 16px/1.4 var(--sans);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 197, 107, 0.14);
}

.price-wrap {
  position: relative;
  display: block;
}

.currency {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 16px;
}

.price-wrap input {
  padding-left: 36px;
}

.direct {
  margin: 4px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.direct a {
  color: var(--gold);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 7vw 40px;
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 20;
  padding: 14px 18px;
  border-radius: 999px;
  background: #123224;
  border: 1px solid var(--mint);
  color: var(--ink);
  opacity: 0;
  transition: 0.3s ease;
}

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

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4vw, 3vh, 0) scale(1.08); }
}

@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(5deg); }
}

@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 197, 107, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(232, 197, 107, 0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes fall {
  0% { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.35; }
  100% { transform: translate3d(var(--x, 40px), 110vh, 0) rotate(220deg); opacity: 0; }
}

@media (max-width: 900px) {
  .stats,
  .split {
    grid-template-columns: 1fr;
  }

  .palm {
    opacity: 0.45;
  }

  .topbar,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 8vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
