:root {
  --ink: #102622;
  --muted: #47635f;
  --teal: #16b7a8;
  --teal-dark: #098476;
  --mint: #d9fbf4;
  --cream: #fff7d7;
  --gold: #ffd75a;
  --pink: #ff81a8;
  --white: #ffffff;
  --line: rgba(13, 79, 70, .16);
  --shadow: 0 24px 80px rgba(15, 72, 66, .16);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 18%, rgba(22,183,168,.28), transparent 31rem),
    radial-gradient(circle at 10% 10%, rgba(255,215,90,.38), transparent 28rem),
    linear-gradient(135deg, #fff9df 0%, #d8fbf6 52%, #fefbf4 100%);
}

a { color: inherit; }

.page-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 38px rgba(19, 66, 61, .10);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 178px;
  max-width: 48vw;
  height: auto;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-link,
.lang-toggle {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  text-decoration: none;
  color: var(--ink);
  background: rgba(218,251,244,.9);
  box-shadow: inset 0 0 0 1px rgba(8,132,118,.08);
  cursor: pointer;
}

.lang-toggle {
  color: var(--white);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .85fr);
  gap: 42px;
  align-items: center;
  padding: 64px 0 46px;
}

.hero-copy {
  position: relative;
  padding: clamp(30px, 6vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -95px;
  top: -85px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,215,90,.72), rgba(255,215,90,0) 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(8,132,118,.12);
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  letter-spacing: -.065em;
  line-height: .92;
  font-size: clamp(56px, 9vw, 108px);
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.55;
  font-weight: 750;
}

.status-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 28px 0 0;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,247,215,.85);
  border: 1px solid rgba(255,215,90,.60);
}

.status-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.status-card p {
  margin: 0;
  color: #66542c;
  line-height: 1.45;
}

.pulse {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 rgba(22,183,168,.45);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,183,168,.45); }
  70% { box-shadow: 0 0 0 12px rgba(22,183,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,183,168,0); }
}

.cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 950;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 18px 34px rgba(8,132,118,.26);
}

.btn.secondary {
  color: #3a2c07;
  background: linear-gradient(135deg, #fff4be, var(--gold));
  box-shadow: inset 0 0 0 1px rgba(129,91,0,.10);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 40%, #fff 0 34%, rgba(255,255,255,.42) 35% 100%),
    linear-gradient(135deg, rgba(255,255,255,.68), rgba(217,251,244,.62));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: min(90%, 500px);
  height: auto;
  filter: drop-shadow(0 30px 35px rgba(101,73,11,.18));
  animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.coin {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 58px;
  min-width: 58px;
  padding: 0 14px;
  border-radius: 999px;
  color: #5c3c00;
  font-weight: 1000;
  background: linear-gradient(145deg, #fff3a5, #ffbf22);
  box-shadow: 0 18px 28px rgba(171,110,0,.22), inset 0 0 0 4px rgba(255,255,255,.25);
}

.coin-one { left: 12%; top: 20%; transform: rotate(-12deg); }
.coin-two { right: 9%; bottom: 24%; transform: rotate(10deg); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.timeline {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 42px rgba(15,72,66,.10);
}

.feature-card {
  padding: 22px;
}

.feature-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
}

.feature-card h2,
.timeline h2 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.timeline {
  margin-top: 18px;
  padding: 26px;
}

.timeline ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(217,251,244,.9), rgba(255,247,215,.75));
  color: var(--muted);
  font-weight: 800;
}

.timeline span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer {
  margin-top: 26px;
  padding: 20px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 650;
}

.footer p { margin: 5px 0; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 34px; }
  .hero-visual { min-height: 380px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline ol { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 24px, 1160px); padding-top: 16px; }
  .topbar { border-radius: 26px; align-items: flex-start; }
  .brand img { width: 142px; }
  .ghost-link { display: none; }
  .hero-copy { padding: 28px 22px; border-radius: 30px; }
  h1 { font-size: clamp(48px, 15vw, 76px); }
  .lead { font-size: 18px; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual { min-height: 320px; border-radius: 30px; }
  .coin { transform: scale(.82); }
  .coin-one { left: 6%; top: 18%; }
  .coin-two { right: 3%; bottom: 18%; }
  .feature-grid { grid-template-columns: 1fr; }
}
