:root {
  --bg: #06140f;
  --bg-soft: #0c231a;
  --cream: #f7f1df;
  --muted: rgba(247, 241, 223, 0.72);
  --muted-strong: rgba(247, 241, 223, 0.88);
  --green: #8cd66d;
  --green-deep: #174c36;
  --gold: #e7c978;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.24);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.36);
  --radius-lg: 34px;
  --radius-md: 24px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  color: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(141, 214, 109, 0.14), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(231, 201, 120, 0.12), transparent 28rem),
    linear-gradient(180deg, #06140f 0%, #071912 52%, #04100c 100%);
  line-height: 1.5;
  cursor: default;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  background:
    radial-gradient(circle at center, rgba(141, 214, 109, 0.16), transparent 24rem),
    #06140f;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s var(--ease);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 241, 223, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 45px rgba(141, 214, 109, 0.18);
}

.loader-mark span {
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border: 1px solid transparent;
  border-top-color: var(--green);
  animation: spin 1.3s linear infinite;
}

.loader-mark svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--cream);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: draw 1.5s var(--ease) infinite alternate;
}

.loader p {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cursor-glow {
  position: fixed;
  z-index: 20;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(141, 214, 109, 0.18), transparent 66%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(1rem, 2.4vw, 2rem);
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 9, 6, 0.2), rgba(2, 9, 6, 0.82)),
    radial-gradient(circle at 50% 42%, transparent 0 20rem, rgba(2, 8, 6, 0.34) 36rem);
}

.hero-bg {
  position: absolute;
  inset: clamp(0.8rem, 2vw, 1.4rem);
  z-index: -4;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 54px);
  box-shadow: var(--shadow);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.04);
  animation: slowZoom 24s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 10, 0.76), rgba(3, 15, 10, 0.34), rgba(3, 15, 10, 0.68)),
    linear-gradient(180deg, rgba(3, 15, 10, 0.28), rgba(3, 15, 10, 0.78));
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
  background-size: 64px 64px, 17px 17px;
  mix-blend-mode: overlay;
}

.topbar {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(6, 20, 15, 0.5);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-left: 0.35rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(141, 214, 109, 0.22), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.22rem;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  background: rgba(247, 241, 223, 0.92);
  color: #082016;
  font-weight: 700;
  font-size: 0.86rem;
  overflow: hidden;
}

.topbar-cta span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--cream);
  transition: transform 0.35s var(--ease);
}

.topbar-cta:hover span {
  transform: rotate(90deg);
}

.hero-inner {
  width: min(1180px, calc(100% - 1.5rem));
  min-height: calc(100svh - 8rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(2rem, 6vw, 5.5rem) 0;
}

.hero-card,
.hero-side,
.progress-panel,
.feature-card,
.contact-card {
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(8, 28, 20, 0.38);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero-card {
  max-width: 760px;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 8.4vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

h1 span {
  display: block;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #f9f2df, #d9ff9d 42%, #8cd66d 86%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.95rem 1.28rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  font-weight: 800;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: auto;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
  transition:
    width 0.45s var(--ease),
    height 0.45s var(--ease);
}

.btn.is-rippling::before {
  left: var(--ripple-x);
  top: var(--ripple-y);
  width: 220px;
  height: 220px;
}

.btn svg {
  position: relative;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s var(--ease);
}

.btn span,
.btn {
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover svg {
  transform: translateX(5px);
}

.btn-primary {
  color: #092116;
  background: linear-gradient(135deg, #eaf8c7, #8cd66d);
  box-shadow: 0 20px 46px rgba(141, 214, 109, 0.24);
}

.btn-secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 0.75rem;
}

.time-card {
  position: relative;
  min-height: 92px;
  padding: 0.9rem 0.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.time-card::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.time-card strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.35s var(--ease);
}

.time-card.is-changing strong {
  transform: translateY(-4px) scale(1.03);
}

.time-card span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-side {
  align-self: center;
  padding: 1rem;
  border-radius: 30px;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted-strong);
  font-size: 0.78rem;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.mini-card {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-card p,
.mini-card small {
  color: var(--muted);
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.75rem 0;
}

.progress-track {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  box-shadow: 0 0 24px rgba(141, 214, 109, 0.38);
  transform-origin: left;
  animation: progressGlow 2.4s ease-in-out infinite;
}

.trust-stack {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.trust-stack span {
  padding: 0.72rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.light-ray,
.orb,
.leaf,
.butterfly,
.grassline {
  pointer-events: none;
}

.light-ray {
  position: absolute;
  z-index: -2;
  top: -8%;
  width: 24rem;
  height: 120%;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 206, 0.1), transparent);
  filter: blur(4px);
  transform: rotate(16deg);
  animation: rayDrift 14s ease-in-out infinite alternate;
}

.light-ray-one {
  left: 16%;
}

.light-ray-two {
  right: 8%;
  animation-delay: -4s;
}

.orb {
  position: absolute;
  z-index: -2;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.42;
  animation: float 10s ease-in-out infinite;
}

.orb-one {
  left: 4%;
  bottom: 6%;
  background: rgba(141, 214, 109, 0.14);
}

.orb-two {
  right: 6%;
  top: 22%;
  background: rgba(231, 201, 120, 0.12);
  animation-delay: -3s;
}

.grassline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 86px;
  opacity: 0.3;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(141, 214, 109, 0.32) 42% 43%, transparent 43%),
    linear-gradient(82deg, transparent 0 58%, rgba(247, 241, 223, 0.22) 58% 59%, transparent 59%),
    linear-gradient(180deg, transparent, rgba(3, 13, 9, 0.76));
  background-size: 22px 100%, 34px 100%, 100% 100%;
}

.leaf {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 17px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(199, 246, 148, 0.72), rgba(87, 154, 84, 0.38));
  filter: drop-shadow(0 0 10px rgba(141, 214, 109, 0.16));
  animation: leafFall linear infinite;
}

.butterfly {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 12px;
  opacity: 0.34;
  background:
    radial-gradient(circle at 35% 50%, rgba(247, 241, 223, 0.8) 0 30%, transparent 33%),
    radial-gradient(circle at 66% 50%, rgba(231, 201, 120, 0.72) 0 31%, transparent 34%);
  animation: butterflyCross 18s linear infinite;
}

.butterfly-one {
  top: 25%;
  left: -3rem;
}

.butterfly-two {
  top: 66%;
  right: -3rem;
  animation-direction: reverse;
  animation-delay: -8s;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.showcase h2,
.contact-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-heading p,
.showcase p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
}

.progress-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.progress-panel {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.progress-panel strong {
  display: block;
  font-size: 5.4rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.progress-panel span,
.progress-panel p {
  color: var(--muted);
}

.progress-panel p {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  margin: 0;
  font-size: 0.9rem;
}

.progress-orbit,
.progress-orbit span {
  position: absolute;
  border-radius: 50%;
}

.progress-orbit {
  inset: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  animation: spin 16s linear infinite;
}

.progress-orbit span {
  width: 11px;
  height: 11px;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.progress-orbit span:first-child {
  top: -5px;
  left: 50%;
}

.progress-orbit span:last-child {
  bottom: -5px;
  right: 28%;
}

.preview-section {
  position: relative;
}

.preview-section::before {
  content: "";
  position: absolute;
  inset: 3rem -10vw auto;
  height: 78%;
  z-index: -1;
  border-radius: 50px;
  background:
    radial-gradient(circle at 20% 40%, rgba(141, 214, 109, 0.14), transparent 22rem),
    rgba(255, 255, 255, 0.035);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-card {
  position: relative;
  min-height: 245px;
  padding: 1.35rem;
  border-radius: 30px;
  transform-style: preserve-3d;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(141, 214, 109, 0.2), transparent 13rem);
  transition: opacity 0.35s var(--ease);
}

.feature-card:hover {
  border-color: rgba(141, 214, 109, 0.48);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(141, 214, 109, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) rotate(-5deg);
}

.feature-icon {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(141, 214, 109, 0.14);
  color: var(--green);
  transition: transform 0.45s var(--ease);
}

.feature-icon svg,
.contact-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  position: relative;
  margin-bottom: 0.65rem;
  font-size: 1.28rem;
}

.feature-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
}

.showcase {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: 1rem;
  border-radius: clamp(30px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 38px;
  transition: transform 1s var(--ease);
}

.showcase:hover img {
  transform: scale(1.035);
}

.showcase div {
  padding: clamp(1rem, 3vw, 2.5rem);
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.newsletter {
  align-self: center;
}

.newsletter label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

.input-row {
  display: flex;
  gap: 0.7rem;
}

.input-row input {
  width: 100%;
  min-height: 54px;
  padding: 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  outline: none;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.input-row input:focus {
  border-color: rgba(141, 214, 109, 0.72);
  box-shadow: 0 0 0 4px rgba(141, 214, 109, 0.12);
}

.form-message {
  min-height: 1.3rem;
  margin: 0.75rem 0 0;
  color: var(--green);
  font-size: 0.9rem;
}

.contact-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-link {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted-strong);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.contact-link:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 214, 109, 0.4);
  background: rgba(141, 214, 109, 0.1);
}

.contact-link span {
  display: grid;
  gap: 0.14rem;
  text-align: center;
}

.contact-link small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.socials {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 900;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}

.socials a:hover {
  transform: translateY(-4px) rotate(-4deg);
  background: var(--green);
  color: #071d15;
}

.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p,
.footer small {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

@keyframes slowZoom {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1.09) translate3d(-1%, -0.7%, 0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes progressGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.24);
  }
}

@keyframes rayDrift {
  from {
    transform: translateX(-2rem) rotate(16deg);
    opacity: 0.38;
  }
  to {
    transform: translateX(2rem) rotate(19deg);
    opacity: 0.16;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(1rem, -1.4rem, 0);
  }
}

@keyframes leafFall {
  0% {
    transform: translate3d(0, -12vh, 0) rotate(0deg);
    opacity: 0;
  }
  10%,
  78% {
    opacity: 0.72;
  }
  100% {
    transform: translate3d(var(--drift), 112vh, 0) rotate(460deg);
    opacity: 0;
  }
}

@keyframes butterflyCross {
  0% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }
  50% {
    transform: translate3d(55vw, -3rem, 0) rotate(-8deg);
  }
  100% {
    transform: translate3d(110vw, 2rem, 0) rotate(8deg);
  }
}

@media (max-width: 980px) {
  .topbar {
    border-radius: 28px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .progress-section,
  .showcase,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: clamp(4rem, 12vw, 7rem);
  }

  .hero-side {
    max-width: 520px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase {
    min-height: auto;
  }

  .showcase img {
    min-height: 340px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 0.7rem;
  }

  .hero-bg {
    inset: 0.7rem;
    border-radius: 30px;
  }

  .topbar {
    width: calc(100% - 0.7rem);
    padding: 0.55rem;
    margin-top: 0.1rem;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .topbar-cta {
    padding: 0.7rem 0.78rem;
    font-size: 0.76rem;
  }

  .hero-inner,
  .section,
  .showcase,
  .footer {
    width: calc(100% - 1rem);
  }

  .hero-inner {
    padding-top: 4.6rem;
    gap: 1rem;
  }

  .hero-card {
    padding: 1.15rem;
    border-radius: 26px;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.4rem);
    letter-spacing: -0.055em;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions,
  .input-row {
    flex-direction: column;
  }

  .btn,
  .input-row input {
    width: 100%;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-card {
    min-height: 82px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .showcase h2,
  .contact-card h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 205px;
  }

  .showcase {
    padding: 0.6rem;
    border-radius: 28px;
  }

  .showcase img {
    min-height: 280px;
    border-radius: 22px;
  }

  .contact-card {
    padding: 1.05rem;
    border-radius: 26px;
  }

  .contact-link {
    min-height: 78px;
    grid-template-columns: auto 1fr;
    justify-content: start;
    place-items: center start;
  }

  .contact-link span {
    text-align: left;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cursor-glow,
  .light-ray,
  .butterfly {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
