:root {
  --bg: #f4f6f4;
  --surface: #ffffff;
  --ink: #102028;
  --ink-soft: #4c626c;
  --line: #d8e1e3;
  --accent: #00ad8c;
  --accent-strong: #007b66;
  --accent-2: #0e6dff;
  --warm: #f3b647;
  --danger: #b93845;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(8, 29, 42, 0.11);
  --shell: min(1140px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 90% -20%, #b8f0dd 0%, transparent 40%),
    radial-gradient(circle at -10% 25%, #c6d8ff 0%, transparent 30%),
    var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  z-index: 999;
  background: #fff;
  border: 2px solid var(--accent);
  padding: 10px 14px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 32, 40, 0.07);
  background: rgba(244, 246, 244, 0.84);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.brand-logo {
  display: block;
  width: clamp(138px, 13vw, 180px);
  height: auto;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.menu a {
  padding: 8px 9px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.9rem;
}

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

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  box-shadow: 0 8px 20px rgba(5, 127, 110, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(5, 127, 110, 0.32);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.giveaway-hero .button-ghost {
  background: #ffffff;
  color: #17303e;
  border-color: rgba(211, 228, 239, 0.54);
}

.giveaway-hero .button-ghost:hover {
  background: #f2f8fb;
  color: #102c41;
  border-color: rgba(148, 184, 206, 0.72);
}

.button-small {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.language-switcher {
  position: relative;
  justify-self: end;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 134px;
  border: 1px solid rgba(21, 34, 43, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 10px 15px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(12, 29, 40, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.language-toggle:hover,
.language-switcher.is-open .language-toggle {
  transform: translateY(-1px);
  border-color: rgba(23, 74, 114, 0.22);
  box-shadow: 0 12px 24px rgba(12, 29, 40, 0.12);
}

.language-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--accent-2);
}

.language-toggle-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-toggle-label {
  white-space: nowrap;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(230px, 78vw);
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(21, 34, 43, 0.1);
  border-radius: 18px;
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 38px rgba(11, 29, 40, 0.16);
  z-index: 45;
}

.language-menu[hidden] {
  display: none !important;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  border-color: rgba(15, 118, 104, 0.18);
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(2px);
}

.language-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 118, 104, 0.12), rgba(23, 74, 114, 0.14));
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.translate-anchor,
.goog-logo-link,
.goog-te-gadget span,
.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important;
  color: transparent !important;
}

body.skiptranslate {
  top: 0 !important;
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.giveaway-hero {
  padding: 52px 0 40px;
}

.giveaway-hero .hero-grid {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(18px, 3.2vw, 34px);
  background:
    radial-gradient(circle at 82% 14%, rgba(84, 173, 255, 0.44) 0%, transparent 36%),
    radial-gradient(circle at 8% 100%, rgba(0, 173, 140, 0.28) 0%, transparent 42%),
    linear-gradient(145deg, #082539 0%, #0d2f47 56%, #173f5d 100%);
  color: #eef8ff;
  border: 1px solid rgba(146, 185, 210, 0.36);
  box-shadow: 0 28px 48px rgba(7, 29, 45, 0.24);
}

.giveaway-hero .hero-grid::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 198, 97, 0.5), rgba(255, 198, 97, 0));
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e2f6f1;
  color: #0f5d4f;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.giveaway-hero .eyebrow {
  background: rgba(128, 240, 219, 0.15);
  color: #9cf5e3;
}

.hero h1,
.section h2,
.section h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 16px 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

.giveaway-hero .lede {
  color: #cce3f2;
}

.jackpot-tag {
  margin: 14px 0 0;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 219, 154, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 226, 176, 0.44);
  color: #ffeac8;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 26px;
}

.hero-points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: #d6eaf7;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ef5d7;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.metric-row div {
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.giveaway-hero .metric-row div {
  background: rgba(250, 253, 255, 0.1);
  border-color: rgba(203, 222, 237, 0.3);
}

.metric-row dt {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.giveaway-hero .metric-row dt {
  color: #b9d4e5;
}

.metric-row dd {
  margin: 6px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.giveaway-hero .metric-row dd {
  color: #ffffff;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.hero-visual video {
  filter: drop-shadow(0 24px 40px rgba(10, 36, 56, 0.14));
}

.hero-property-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(189, 213, 232, 0.4);
  box-shadow: 0 24px 40px rgba(8, 26, 40, 0.4);
  background: #0d2f47;
}

.hero-property-frame img,
.hero-property-frame video,
.hero-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  object-fit: cover;
  object-position: center 52%;
}

.hero-media {
  display: block;
}

.hero-property-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: #e9f7ff;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(5, 24, 37, 0.1), rgba(5, 24, 37, 0.94));
}

.hero-property-frame figcaption::after {
  content: "Verified Prize";
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(99, 247, 208, 0.2);
  border: 1px solid rgba(153, 254, 230, 0.45);
  color: #a3fce8;
}

.status-card {
  position: absolute;
  right: -10px;
  bottom: 28px;
  width: min(320px, 88%);
  background: rgba(9, 28, 45, 0.94);
  color: #ecf8ff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.giveaway-hero .status-card {
  bottom: -18px;
  right: -16px;
  width: min(350px, 92%);
  border: 1px solid rgba(148, 192, 220, 0.35);
}

.status-card h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.status-line {
  margin: 0 0 12px;
}

.status-sub {
  margin: 10px 0 0;
  font-size: 0.84rem;
  color: #bedef0;
}

.progress {
  width: 100%;
  height: 11px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #53ffd1, #51b4ff);
  transition: width 600ms ease;
}

.section {
  padding: clamp(52px, 7vw, 84px) 0;
}

.section-heading {
  max-width: 74ch;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--ink-soft);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: stretch;
}

.vision-main {
  border: 1px solid #c7d7db;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  box-shadow: var(--shadow);
}

.vision-highlights {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.vision-highlights p {
  margin: 0;
  border: 1px solid #d4e0e3;
  border-radius: 12px;
  background: #f7fbfc;
  padding: 10px 12px;
}

.vision-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0c2f49, #154866);
  color: #e9f7ff;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.vision-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #92d4ff;
}

.vision-stat {
  margin: 10px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
}

.vision-small {
  margin: 0 0 10px;
  color: #c6e6fb;
}

.vision-metric-stack {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.vision-metric-stack > div {
  border: 1px solid rgba(179, 213, 235, 0.36);
  border-radius: 12px;
  background: rgba(11, 41, 62, 0.35);
  padding: 10px 12px;
}

.vision-metric-label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9dd5fa;
}

.vision-metric-value {
  margin: 6px 0;
  font-size: 1.18rem;
  font-weight: 700;
}

.tiers {
  background: linear-gradient(180deg, transparent, #f0f6ff 45%, transparent);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.tiers-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.tier-card,
.how-grid li,
.tokenomics-grid article,
.usecase-grid article,
.roadmap-content {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tier-card:hover,
.how-grid li:hover,
.tokenomics-grid article:hover,
.usecase-grid article:hover,
.roadmap-content:hover,
.vision-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(8, 29, 42, 0.14);
}

.tier-card {
  position: relative;
  overflow: hidden;
}

.tier-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.tier-gold::after {
  background: linear-gradient(90deg, #ca9a2c, #f3c15a);
}

.tier-diamond::after {
  background: linear-gradient(90deg, #6fb3ff, #a0ecff);
}

.tier-platinum::after {
  background: linear-gradient(90deg, #8ca0b5, #ced9e3);
}

.tier-range {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--accent-strong);
}

.tiers-grid ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.tier-badge {
  margin: 0 0 8px;
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2b4a52;
  background: #ebf3f6;
}

.tier-note {
  margin: 12px 0 0;
  font-size: 0.88rem;
  color: #47616b;
}

.tier-cta {
  margin-top: 12px;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #c5d6db;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #183641;
  background: #f6fcff;
}

.tier-cta:hover {
  border-color: #85b8af;
}

.how-to-buy {
  border-top: 1px solid rgba(16, 32, 40, 0.08);
  border-bottom: 1px solid rgba(16, 32, 40, 0.08);
  background: linear-gradient(145deg, #f9fbf9, #f3faf6);
}

.how-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.how-grid li {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  position: relative;
  box-shadow: var(--shadow);
}

.how-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: stretch;
}

.how-icon {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e4f8f2;
  color: #0f5d4f;
  font-size: 0.78rem;
  font-weight: 700;
}

.how-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.15rem;
}

.how-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.how-cta {
  margin: 20px 0 0;
}

.how-visual {
  border-radius: var(--radius);
  border: 1px solid #c3d6df;
  background: linear-gradient(145deg, #f8fcff, #ecf6fb);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  align-content: start;
  gap: 14px;
}

.how-visual h3 {
  margin: 0;
}

.how-visual p {
  margin: 0;
  color: var(--ink-soft);
}

.flow-pill {
  display: grid;
  gap: 8px;
}

.flow-pill span {
  border-radius: 999px;
  background: #fff;
  border: 1px solid #c8d8df;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #234955;
  position: relative;
}

.flow-pill span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 2px;
  height: 8px;
  background: #aac4d0;
  transform: translateX(-50%);
}

.tokenomics {
  background: linear-gradient(180deg, transparent, #f5f8fb 50%, transparent);
}

.tokenomics-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tokenomics-layout {
  --tokenomics-rotation: 0deg;
  --tokenomics-label-rotation: 0deg;
  --tokenomics-accent: #4a4d3d;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  align-items: stretch;
}

.tokenomics-wheel {
  border: 1px solid #c3d5df;
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.tokenomics-total-label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #567280;
}

.tokenomics-total-value {
  margin: 4px 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.22rem;
  color: #173547;
}

.wheel-ring {
  position: relative;
  width: min(220px, 90%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 44%, transparent 45%),
    conic-gradient(
      #4a4d3d 0 60%,
      #70745c 60% 75%,
      #8f9475 75% 85%,
      #a3a88a 85% 92%,
      #b4b99b 92% 97%,
      #c4c9ac 97% 100%
    );
  border: 1px solid #c8dae1;
  display: grid;
  place-items: center;
  transform: rotate(var(--tokenomics-rotation));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 280ms ease;
  box-shadow: 0 18px 30px rgba(11, 38, 55, 0.08);
}

.wheel-ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--tokenomics-accent) 38%, white);
  opacity: 0.72;
  transform: scale(0.96);
  transition: transform 320ms ease, opacity 320ms ease, border-color 320ms ease;
  pointer-events: none;
}

.wheel-ring span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  color: #183b4a;
  text-align: center;
  transform: rotate(var(--tokenomics-label-rotation));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tokenomics-legend {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.tokenomics-legend li {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #24414f;
  border-radius: 12px;
  padding: 7px 8px;
  transition: background-color 220ms ease, transform 220ms ease, color 220ms ease;
  cursor: pointer;
}

.tokenomics-legend li strong {
  font-size: 0.84rem;
  color: #102e3e;
}

.legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.swatch-presale { background: #4a4d3d; }
.swatch-staking { background: #70745c; }
.swatch-marketing { background: #8f9475; }
.swatch-burn { background: #a3a88a; }
.swatch-liquidity { background: #b4b99b; }
.swatch-team { background: #c4c9ac; }

.tokenomics-grid article p:last-child {
  margin-bottom: 0;
}

.tokenomics-spotlight {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tokenomics-spotlight > div {
  border-radius: 14px;
  border: 1px solid #b8cddd;
  background: linear-gradient(145deg, #f7fbff, #ebf6ff);
  padding: 14px;
}

.spotlight-label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #3a5a6b;
}

.spotlight-value {
  margin: 7px 0 0;
  font-size: 1.22rem;
  font-weight: 700;
  color: #0d2f47;
}

.tokenomics-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
  outline: none;
}

.tokenomics-layout[data-active="presale"] {
  --tokenomics-rotation: -108deg;
  --tokenomics-label-rotation: 108deg;
  --tokenomics-accent: #4a4d3d;
}

.tokenomics-layout[data-active="staking"] {
  --tokenomics-rotation: -243deg;
  --tokenomics-label-rotation: 243deg;
  --tokenomics-accent: #70745c;
}

.tokenomics-layout[data-active="marketing"] {
  --tokenomics-rotation: -288deg;
  --tokenomics-label-rotation: 288deg;
  --tokenomics-accent: #8f9475;
}

.tokenomics-layout[data-active="burn"] {
  --tokenomics-rotation: -327.6deg;
  --tokenomics-label-rotation: 327.6deg;
  --tokenomics-accent: #a3a88a;
}

.tokenomics-layout[data-active="liquidity"] {
  --tokenomics-rotation: -340.2deg;
  --tokenomics-label-rotation: 340.2deg;
  --tokenomics-accent: #b4b99b;
}

.tokenomics-layout[data-active="team"] {
  --tokenomics-rotation: -354.6deg;
  --tokenomics-label-rotation: 354.6deg;
  --tokenomics-accent: #c4c9ac;
}

.tokenomics-layout[data-active] .wheel-ring::after {
  transform: scale(1);
}

.tokenomics-layout[data-active="presale"] .tokenomics-grid article[data-tokenomics-key="presale"],
.tokenomics-layout[data-active="presale"] .tokenomics-legend li[data-tokenomics-key="presale"],
.tokenomics-layout[data-active="staking"] .tokenomics-grid article[data-tokenomics-key="staking"],
.tokenomics-layout[data-active="staking"] .tokenomics-legend li[data-tokenomics-key="staking"],
.tokenomics-layout[data-active="marketing"] .tokenomics-grid article[data-tokenomics-key="marketing"],
.tokenomics-layout[data-active="marketing"] .tokenomics-legend li[data-tokenomics-key="marketing"],
.tokenomics-layout[data-active="burn"] .tokenomics-grid article[data-tokenomics-key="burn"],
.tokenomics-layout[data-active="burn"] .tokenomics-legend li[data-tokenomics-key="burn"],
.tokenomics-layout[data-active="liquidity"] .tokenomics-grid article[data-tokenomics-key="liquidity"],
.tokenomics-layout[data-active="liquidity"] .tokenomics-legend li[data-tokenomics-key="liquidity"],
.tokenomics-layout[data-active="team"] .tokenomics-grid article[data-tokenomics-key="team"],
.tokenomics-layout[data-active="team"] .tokenomics-legend li[data-tokenomics-key="team"] {
  border-color: color-mix(in srgb, var(--tokenomics-accent) 36%, #bfd1d8);
  background: color-mix(in srgb, var(--tokenomics-accent) 10%, white);
  color: #102e3e;
  transform: translateY(-3px);
}

.tokenomics-layout[data-active="presale"] .tokenomics-legend li[data-tokenomics-key="presale"] .legend-swatch,
.tokenomics-layout[data-active="staking"] .tokenomics-legend li[data-tokenomics-key="staking"] .legend-swatch,
.tokenomics-layout[data-active="marketing"] .tokenomics-legend li[data-tokenomics-key="marketing"] .legend-swatch,
.tokenomics-layout[data-active="burn"] .tokenomics-legend li[data-tokenomics-key="burn"] .legend-swatch,
.tokenomics-layout[data-active="liquidity"] .tokenomics-legend li[data-tokenomics-key="liquidity"] .legend-swatch,
.tokenomics-layout[data-active="team"] .tokenomics-legend li[data-tokenomics-key="team"] .legend-swatch {
  transform: scale(1.35);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--tokenomics-accent) 18%, transparent);
}

.tokenomics-legend li:focus-visible,
.tokenomics-grid article:focus-visible {
  outline: 2px solid #0e6dff;
  outline-offset: 2px;
}

.token-label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.token-value {
  margin: 8px 0;
  font-size: 1.18rem;
  font-weight: 700;
}

.token-use-cases {
  border-top: 1px solid rgba(16, 32, 40, 0.08);
}

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

.usecase-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.usecase-card h3 {
  margin-top: 10px;
}

.usecase-tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e6f4ff;
  color: #0e6dff;
  font-size: 0.78rem;
  font-weight: 700;
}

.roadmap {
  background: linear-gradient(180deg, transparent, #ecf8ff 52%, transparent);
}

.roadmap-timeline {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00ad8c, #0e6dff);
  opacity: 0.32;
}

.roadmap-node {
  position: relative;
  padding-top: 4px;
}

.roadmap-marker {
  position: relative;
  z-index: 2;
  margin: 0 auto 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #9cc8dd;
  background: #fff;
  color: #25637f;
  font-weight: 800;
}

.roadmap-node.active .roadmap-marker {
  background: #0f3550;
  color: #fff;
  border-color: #0f3550;
}

.roadmap-content {
  border: 1px solid #bfd3dd;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
  min-height: 210px;
}

.roadmap-phase {
  margin: 0 0 8px;
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0e6dff;
  font-weight: 700;
}

.roadmap-status {
  margin: 10px 0 0;
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: #eaf6ff;
  color: #195a7d;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.feature-list {
  list-style: none;
  margin: 16px 0 26px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.feature-list li {
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.widget-card,
.competition-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.widget-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(14, 109, 255, 0.08), transparent 30%),
    radial-gradient(circle at 0 100%, rgba(0, 173, 140, 0.1), transparent 36%),
    #fff;
}

.widget-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 52%);
  pointer-events: none;
}

.widget-card > * {
  position: relative;
  z-index: 1;
}

.widget-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.widget-head h3 {
  margin: 6px 0 0;
}

.widget-kicker {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4d6d7f;
}

.widget-sync-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(0, 173, 140, 0.12), rgba(14, 109, 255, 0.14));
  border: 1px solid rgba(91, 151, 172, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
  color: #114b63;
}

.widget-sync-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(0, 173, 140, 0.12);
}

.widget-intro {
  margin: 0;
  max-width: 44ch;
  font-size: 1rem;
  color: #36505f;
  line-height: 1.7;
}

.widget-stage-panel {
  --widget-tilt-x: 0deg;
  --widget-tilt-y: 0deg;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(186, 206, 220, 0.8);
  background:
    radial-gradient(circle at 100% 0, rgba(14, 109, 255, 0.12), transparent 36%),
    linear-gradient(145deg, #f8fbff, #edf4fb);
  box-shadow: 0 18px 32px rgba(10, 34, 47, 0.09);
  transform: perspective(1000px) rotateX(var(--widget-tilt-x)) rotateY(var(--widget-tilt-y));
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.widget-stage-panel:hover {
  border-color: rgba(93, 142, 168, 0.38);
  box-shadow: 0 24px 40px rgba(10, 34, 47, 0.14);
}

.widget-stage-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.widget-stage-top h4 {
  margin: 6px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  color: #173547;
}

.widget-stage-label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #557081;
}

.widget-price-pill {
  min-width: 132px;
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 208, 223, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.widget-price-pill span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #56707d;
}

.widget-price-pill strong {
  display: block;
  margin-top: 6px;
  font-size: 1.42rem;
  line-height: 1;
}

.widget-progress-block {
  margin-top: 18px;
}

.widget-progress-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  color: #24414f;
}

.widget-progress-copy span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #4d6673;
}

.widget-progress-copy strong {
  font-size: 1rem;
}

.widget-progress-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(184, 204, 218, 0.42);
  border: 1px solid rgba(190, 210, 223, 0.7);
}

.widget-progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(14, 109, 255, 0.28);
  transition: width 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.widget-stat-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.widget-stat-card {
  margin: 0;
  padding: 14px;
  border-radius: 15px;
  border: 1px solid rgba(188, 209, 220, 0.78);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.widget-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 169, 191, 0.56);
  box-shadow: 0 12px 24px rgba(16, 49, 68, 0.08);
}

.widget-stat-card span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5b7380;
}

.widget-stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.16rem;
  color: #173547;
}

.widget-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.widget-step-card {
  margin: 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(200, 215, 223, 0.92);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.widget-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 163, 189, 0.5);
  box-shadow: 0 14px 24px rgba(15, 45, 63, 0.08);
}

.widget-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 173, 140, 0.12), rgba(14, 109, 255, 0.14));
  color: #10455d;
  font-size: 0.82rem;
  font-weight: 800;
}

.widget-step-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
}

.widget-step-card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #506975;
}

.widget-grid {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.86rem;
  font-weight: 600;
}

.form-hint {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

input,
select {
  width: 100%;
  border-radius: 11px;
  border: 1px solid #becdce;
  background: #fff;
  padding: 11px 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}

.widget-quote {
  border-radius: 12px;
  background: #f3f7fb;
  padding: 12px;
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.widget-quote p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.widget-quote strong {
  font-size: 1.06rem;
}

.widget-alert {
  margin: 10px 0 0;
  font-size: 0.88rem;
}

.widget-alert.error {
  color: var(--danger);
}

.widget-alert.success {
  color: var(--accent-strong);
}

.competition-grid {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.competition-grid article {
  padding: 16px;
  display: grid;
  gap: 10px;
  transition: transform 180ms ease;
  grid-column: span 1;
  height: 100%;
}

.competition-grid article.featured {
  background: linear-gradient(135deg, #ffffff 0%, #eff8ff 56%, #e9fff8 100%);
  border-color: #b9d8e6;
}

.competition-grid article.featured img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.competition-grid article:hover {
  transform: translateY(-4px);
}

.comp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.chip {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.chip.live {
  background: #ebfbf7;
  color: #0f5d4f;
}

.comp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.9rem;
}

.comp-meta div {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 8px;
}

.comp-meta dt {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.comp-meta dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.ecosystem {
  background: linear-gradient(180deg, transparent, #edf4ff 50%, transparent);
}

.whitepaper {
  background: linear-gradient(180deg, #fdfdfd, #eef8f3);
  border-top: 1px solid rgba(16, 32, 40, 0.08);
  border-bottom: 1px solid rgba(16, 32, 40, 0.08);
}

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

.ecosystem-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.faq-grid {
  max-width: 760px;
}

.faq-grid details {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(16, 32, 40, 0.1);
  padding: 18px 0 34px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  font-weight: 600;
  color: #35505d;
}

.footer-links a:hover {
  color: #0e6dff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease, transform 450ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.checkout-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.checkout-wrap {
  width: min(520px, 92vw);
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .how-layout,
  .competition-grid,
  .ecosystem-grid,
  .vision-grid,
  .tiers-grid,
  .tokenomics-layout,
  .tokenomics-spotlight,
  .tokenomics-grid,
  .usecase-grid,
  .roadmap-timeline {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    position: static;
    margin-top: -12px;
  }

  .giveaway-hero .hero-grid {
    padding: 18px;
  }

  .hero-property-frame img,
  .hero-property-frame video {
    min-height: 260px;
  }

  .nav-wrap {
    grid-template-columns: auto auto 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 9px 14px;
    font-weight: 600;
  }

  .menu {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 72px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    display: none;
    flex-direction: column;
  }

  .menu.is-open {
    display: flex;
  }

  .button-small {
    justify-self: end;
  }

  .language-toggle {
    min-width: auto;
    padding: 10px 12px;
  }

  .language-toggle-label {
    display: none;
  }

  .language-menu {
    right: -4px;
  }

  .wheel-ring {
    width: min(180px, 80%);
  }

  .roadmap-timeline::before {
    display: none;
  }

  .roadmap-node {
    padding-top: 0;
  }

  .roadmap-marker {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    grid-template-columns: auto auto 1fr auto;
  }

  .button-small {
    display: none;
  }

  .language-menu {
    width: min(220px, calc(100vw - 28px));
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .section {
    padding: 50px 0;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer-links {
    gap: 10px 14px;
  }

  .hero-points {
    gap: 6px;
  }

  .jackpot-tag {
    font-size: 0.9rem;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .tier-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Hand-polished refinement layer */
:root {
  --bg: #f3f1ec;
  --surface: #ffffff;
  --ink: #15222b;
  --ink-soft: #4f6069;
  --line: #d7d5cf;
  --accent: #0f7668;
  --accent-strong: #0b5d52;
  --accent-2: #174a72;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(12, 29, 40, 0.08);
  --shell: min(1180px, 92vw);
}

body {
  background:
    radial-gradient(circle at 92% -8%, rgba(74, 132, 184, 0.12) 0%, transparent 34%),
    radial-gradient(circle at -8% 18%, rgba(16, 118, 104, 0.08) 0%, transparent 32%),
    var(--bg);
  color: var(--ink);
}

.site-header {
  background: rgba(243, 241, 236, 0.92);
  border-bottom: 1px solid rgba(21, 34, 43, 0.1);
}

.menu {
  gap: 6px;
}

.menu a {
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.menu a:hover {
  border-color: #c8d2d8;
  background: rgba(255, 255, 255, 0.68);
}

.button {
  background: linear-gradient(120deg, #0f7668, #175a8c);
  box-shadow: 0 8px 20px rgba(15, 73, 99, 0.24);
}

.button-ghost {
  background: #ffffff;
  color: #17303e;
}

.section {
  padding: clamp(54px, 7vw, 86px) 0;
}

.eyebrow {
  background: #dce9e6;
  color: #17564e;
}

.section-heading h2,
.vision-main h2,
.tiers h2,
.how-to-buy h2,
.tokenomics h2,
.token-use-cases h2,
.roadmap h2,
.competitions h2 {
  letter-spacing: -0.015em;
}

.giveaway-hero .hero-grid {
  border-radius: 22px;
  border: 1px solid rgba(171, 194, 210, 0.45);
  background:
    linear-gradient(130deg, rgba(8, 34, 52, 0.95), rgba(19, 55, 80, 0.95)),
    #102c41;
}

.hero-property-frame {
  border-radius: 16px;
  border-color: rgba(188, 210, 225, 0.45);
}

.status-card {
  border-radius: 12px;
}

.vision-main,
.vision-card,
.tier-card,
.how-grid li,
.how-visual,
.tokenomics-wheel,
.tokenomics-spotlight > div,
.tokenomics-grid article,
.usecase-card,
.roadmap-content,
.widget-card,
.competition-grid article,
.ecosystem-grid article,
.faq-grid details {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.vision-card {
  background: linear-gradient(145deg, #15374f, #1e526f);
  border-color: #2f5f80;
}

.tiers {
  background: linear-gradient(180deg, transparent, rgba(27, 90, 125, 0.06) 45%, transparent);
}

.tier-badge {
  background: #edf3f5;
  color: #33515e;
}

.tier-cta {
  background: #f4fafb;
}

.how-to-buy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(240, 247, 245, 0.8));
}

.how-layout {
  gap: 18px;
}

.how-grid {
  gap: 14px;
}

.how-grid li {
  padding: 16px;
}

.how-icon {
  background: #dff2ed;
  color: #0e6257;
}

.how-visual {
  background: linear-gradient(145deg, #f8fbfd, #edf4f8);
}

.flow-pill span {
  background: #ffffff;
  border-color: #cdd9df;
}

.split {
  align-items: start;
  gap: 32px;
}

.tokenomics {
  background: linear-gradient(180deg, transparent, rgba(20, 74, 114, 0.06) 45%, transparent);
}

.tokenomics-layout {
  gap: 16px;
}

.wheel-ring {
  border-color: #c4d5df;
}

.token-use-cases {
  border-top-color: rgba(21, 34, 43, 0.12);
}

.usecase-tag {
  background: #e8f2ff;
  color: #1a5785;
}

.competition-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.competition-grid article {
  padding: 14px;
}

.competition-grid article img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  background: #e9eef1;
  border: 1px solid #d7dee2;
}

.competition-grid article.featured {
  background: #f9fcff;
}

.roadmap {
  background: linear-gradient(180deg, transparent, rgba(19, 89, 130, 0.08) 48%, transparent);
}

.roadmap-timeline {
  gap: 14px;
}

.roadmap-content {
  min-height: 224px;
}

.roadmap-status {
  background: #eaf5ff;
}

.whitepaper,
.ecosystem {
  background: transparent;
}

@media (max-width: 1100px) {
  .menu a {
    font-size: 0.78rem;
    padding-inline: 7px;
  }
}

@media (max-width: 980px) {
  .menu {
    gap: 0;
  }

  .giveaway-hero .hero-grid {
    padding: 16px;
  }

  .competition-grid {
    grid-template-columns: 1fr;
  }
}

/* Roadmap visual polish */
.roadmap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(27, 84, 127, 0.12), transparent 40%),
    radial-gradient(circle at 88% 100%, rgba(16, 118, 104, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(243, 249, 253, 0.9));
}

.roadmap .section-heading {
  max-width: 68ch;
}

.roadmap-timeline {
  position: relative;
  margin-top: 24px;
  gap: 16px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 26px;
  height: 4px;
  border-radius: 999px;
  background: #c7ddeb;
  opacity: 0.9;
}

.roadmap-timeline::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 26px;
  width: 22%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f7668, #175a8c);
}

.roadmap-node {
  position: relative;
  padding-top: 6px;
}

.roadmap-node:nth-child(even) {
  transform: translateY(8px);
}

.roadmap-marker {
  width: 52px;
  height: 52px;
  border-width: 3px;
  box-shadow: 0 6px 14px rgba(19, 47, 68, 0.16);
  background: #f5fbff;
}

.roadmap-node.active .roadmap-marker {
  background: linear-gradient(135deg, #113751, #1b5d84);
  border-color: #113751;
}

.roadmap-content {
  position: relative;
  min-height: 236px;
  padding: 18px;
  border: 1px solid #c8d6df;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.roadmap-content::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 4px;
  border-radius: 999px;
}

.phase-1 .roadmap-content::before {
  background: linear-gradient(90deg, #0f7668, #2ea5a1);
}

.phase-2 .roadmap-content::before {
  background: linear-gradient(90deg, #1b7c98, #58a8cf);
}

.phase-3 .roadmap-content::before {
  background: linear-gradient(90deg, #2a6cb1, #7eb0de);
}

.phase-4 .roadmap-content::before {
  background: linear-gradient(90deg, #4f7397, #98b0c5);
}

.roadmap-phase {
  margin-bottom: 4px;
  font-size: 0.75rem;
  color: #1f6fad;
}

.roadmap-window {
  margin: 0 0 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #60757f;
}

.roadmap-content h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.roadmap-content p {
  margin-top: 0;
}

.roadmap-status {
  margin-top: 12px;
}

.roadmap-status.active {
  background: #dcf5ef;
  color: #0d6559;
}

.roadmap-status.planned {
  background: #e7f1fb;
  color: #205b8b;
}

.roadmap-status.future {
  background: #eceff3;
  color: #516170;
}

@media (max-width: 980px) {
  .roadmap-timeline {
    margin-top: 16px;
  }

  .roadmap-node:nth-child(even) {
    transform: none;
  }

  .roadmap-timeline::before,
  .roadmap-timeline::after {
    display: none;
  }

  .roadmap-marker {
    margin-left: 0;
  }
}

/* Final layout balancing */
.roadmap-timeline {
  align-items: stretch;
}

.roadmap-node {
  display: flex;
  flex-direction: column;
}

.roadmap-node:nth-child(even) {
  transform: none;
}

.roadmap-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 260px;
}

.roadmap-status {
  margin-top: auto;
}

.buy-section .split {
  align-items: stretch;
}

.buy-section .buy-copy,
.buy-section .buy-widget-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.buy-section .buy-copy .button-ghost {
  align-self: flex-start;
}

.buy-preview-card {
  margin: auto 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #bed2df;
  background: #fff;
  box-shadow: var(--shadow);
}

.buy-preview {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.buy-preview-card figcaption {
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #264454;
  background: linear-gradient(180deg, #f8fbfd, #eef5fa);
}

.buy-widget-shell .widget-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.buy-widget-shell .widget-stage-panel {
  margin-top: 4px;
}

.buy-widget-shell .button {
  margin-top: auto;
  min-width: 170px;
}

@media (max-width: 980px) {
  .widget-steps {
    grid-template-columns: 1fr;
  }

  .widget-stage-top {
    flex-direction: column;
  }

  .widget-price-pill {
    width: 100%;
  }

  .roadmap-content {
    min-height: 0;
  }

  .buy-preview-card {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .widget-card {
    padding: 18px;
  }

  .widget-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .widget-stage-top h4 {
    font-size: 1.5rem;
  }

  .widget-stat-grid {
    grid-template-columns: 1fr;
  }

  .widget-progress-copy {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero background video layer */
.giveaway-hero .hero-grid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.giveaway-hero .hero-grid > * {
  position: relative;
  z-index: 2;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 14%, rgba(84, 173, 255, 0.38) 0%, transparent 36%),
    radial-gradient(circle at 8% 100%, rgba(0, 173, 140, 0.24) 0%, transparent 42%),
    linear-gradient(120deg, rgba(5, 26, 41, 0.84) 0%, rgba(8, 34, 52, 0.78) 45%, rgba(12, 44, 64, 0.62) 100%);
}

.giveaway-hero .hero-grid::after {
  z-index: 1;
}

/* Interior gallery */
.interiors-section {
  background: linear-gradient(180deg, transparent, rgba(19, 89, 130, 0.06) 48%, transparent);
}

.interiors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.interior-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #c8d6df;
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.interior-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.interior-shot:hover img {
  transform: scale(1.04);
}

@media (max-width: 980px) {
  .interiors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .interiors-grid {
    grid-template-columns: 1fr;
  }
}

/* Property location */
.location-section {
  background: linear-gradient(180deg, transparent, rgba(18, 86, 128, 0.07) 52%, transparent);
}

.location-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
  align-items: stretch;
}

.location-map-frame,
.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.location-map-frame {
  overflow: hidden;
  min-height: 380px;
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.location-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-card p {
  margin: 0;
}

.location-label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4f6976;
  font-weight: 700;
}

.location-coords {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  color: #153a54;
}

.location-card .button {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 980px) {
  .location-layout {
    grid-template-columns: 1fr;
  }

  .location-map-frame,
  .location-map-frame iframe {
    min-height: 300px;
  }
}

/* Hero cleanup: force true background video + cleaner composition */
.site-header .shell {
  width: min(1320px, 96vw);
}

.site-header .menu {
  flex-wrap: nowrap;
  gap: 6px;
}

.site-header .menu a {
  padding: 6px 7px;
  font-size: 0.76rem;
  white-space: nowrap;
}

.giveaway-hero .hero-grid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  grid-template-columns: 1.15fr 0.85fr;
}

.giveaway-hero .hero-grid > .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 1;
}

.giveaway-hero .hero-grid > .hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(5, 23, 35, 0.86) 0%, rgba(7, 29, 44, 0.75) 46%, rgba(12, 45, 64, 0.58) 100%),
    radial-gradient(circle at 80% 18%, rgba(255, 196, 84, 0.22) 0%, transparent 42%);
}

.giveaway-hero .hero-grid > .hero-copy,
.giveaway-hero .hero-grid > .hero-visual {
  position: relative;
  z-index: 2;
}

.giveaway-hero .hero-property-frame {
  display: none;
}

.giveaway-hero .hero-visual {
  display: flex;
  align-items: flex-end;
}

.giveaway-hero .status-card {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(148, 192, 220, 0.38);
  background: rgba(7, 27, 42, 0.9);
}

@media (max-width: 1180px) {
  .site-header .menu {
    flex-wrap: wrap;
  }

  .site-header .menu a {
    font-size: 0.74rem;
  }
}

@media (max-width: 980px) {
  .site-header .shell {
    width: var(--shell);
  }

  .giveaway-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .giveaway-hero .hero-visual {
    margin-top: 8px;
  }
}
