/* OYCI — sea-themed lander */

:root {
  --sand: #f1e7d2;
  --sand-2: #e7d9b9;
  --foam: #e2eaf2;
  --sea-1: #1b1f5c;
  --sea-2: #2a2f8a;
  --sea-3: #5156e8;
  --teal: #2f9e9f;
  --kelp: #4e8b5a;
  --coral: #e26340;
  --coral-2: #c44a2a;
  --amber: #f0a93a;
  --ink: #14163a;
  --line: rgba(20, 22, 58, 0.18);

  --font: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; }

/* ───── buttons ───── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font);
  font-weight: 600; font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--coral); color: #fff; }
.btn.primary:hover { background: var(--coral-2); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--sand); }
.btn.ghost-light { background: transparent; color: var(--sand); border-color: rgba(241,231,210,0.4); }
.btn.ghost-light:hover { background: rgba(241,231,210,0.1); border-color: var(--sand); }
.btn.sm { font-size: 13px; padding: 8px 14px; }

/* ───── nav ───── */
.nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 22px 0;
}
.nav-inner {
  display: flex; align-items: center; gap: 22px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--sand);
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18), 0 6px 22px rgba(81, 86, 232, 0.45);
}
.nav-links { display: flex; gap: 4px; margin-left: 10px; }
.nav-links a {
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 500; font-size: 14px;
  color: rgba(241,231,210,0.78);
}
.nav-links a:hover { background: rgba(241,231,210,0.12); color: var(--sand); }
.nav-right { margin-left: auto; display: flex; gap: 10px; align-items: center; }

.pricepill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(241,231,210,0.28);
  border-radius: 999px;
  font-family: var(--mono); font-size: 12px;
  color: var(--sand);
  background: rgba(10,35,43,0.35);
  backdrop-filter: blur(8px);
}
.pricepill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5eda90;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(94,218,144,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(94,218,144,0); }
}

/* ───── HERO with sea SVG ───── */
.hero {
  position: relative;
  min-height: 760px;
  padding: 130px 0 80px;
  color: var(--sand);
  overflow: hidden;
  background: linear-gradient(180deg, #f0c98a 0%, #e89c52 20%, #c45a3a 42%, #6a4a8a 65%, #2a2f8a 85%, #1b1f5c 100%);
}
.sea-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
/* readability scrim — darkens the left side behind text only */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 35, 43, 0.55) 0%, rgba(10, 35, 43, 0.35) 35%, rgba(10, 35, 43, 0) 70%),
    linear-gradient(180deg, rgba(10, 35, 43, 0.45) 0%, rgba(10, 35, 43, 0) 30%);
  pointer-events: none;
}
.hero .wrap { z-index: 2; }
.hero .nav { z-index: 3; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
  min-height: 480px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand);
  padding: 5px 11px;
  background: rgba(10,35,43,0.4);
  border: 1px solid rgba(241,231,210,0.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 22px 0 0;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(10, 35, 43, 0.5), 0 1px 2px rgba(10, 35, 43, 0.35);
}
.hero h1 .a { color: #ffd28a; }
.hero h1 .b { color: #ffe4b8; }
.hero-sub {
  max-width: 520px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(10, 35, 43, 0.4);
}
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.quick-stats {
  background: rgba(10,35,43,0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(241,231,210,0.18);
  border-radius: 14px;
  padding: 22px;
  color: var(--sand);
}
.quick-stats .qs-head {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(241,231,210,0.6);
  margin-bottom: 16px;
  display: flex; justify-content: space-between;
}
.quick-stats .qs-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: #5eda90;
}
.quick-stats .qs-head .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #5eda90; animation: pulse 2s infinite;
}
.qs-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(241,231,210,0.12);
}
.qs-row:first-of-type { border-top: 0; }
.qs-row .k {
  font-size: 13px;
  color: rgba(241,231,210,0.7);
}
.qs-row .v {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.qs-row .v small {
  font-family: var(--mono); font-size: 11px;
  font-weight: 500;
  margin-left: 6px;
  color: #5eda90;
}
.qs-row .v small.amber { color: var(--amber); }
.qs-row .v small.coral { color: #ffa884; }
.qs-row .swatch {
  width: 12px; height: 12px; border-radius: 3px;
  display: inline-block; margin-right: 8px;
  vertical-align: middle;
}

/* ───── section frame ───── */
.section {
  padding: 100px 0;
  position: relative;
}
.section.cream { background: var(--sand); }

.section-head { margin-bottom: 56px; max-width: 720px; }
.kicker {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.h2 {
  font-family: var(--font);
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0;
}
.h2 .a { color: var(--teal); }
.lead {
  margin-top: 20px;
  font-size: 17px; line-height: 1.55;
  color: rgba(10,35,43,0.7);
  max-width: 580px;
}

/* ───── lifecycle ───── */
.life {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.life-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  position: relative;
}
.life-card.a { background: #fff5e0; }
.life-card.b { background: #f5e1c4; }
.life-card.c { background: var(--foam); }
.life-card.d { background: #fcd6c4; }
.life-card .num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(10,35,43,0.55);
  margin-bottom: 14px;
}
.life-card .vis {
  height: 90px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.life-card h3 {
  font-family: var(--font); font-size: 22px;
  letter-spacing: -0.02em; font-weight: 700;
  margin: 0 0 8px;
}
.life-card p {
  font-size: 14px; line-height: 1.5;
  color: rgba(10,35,43,0.7);
  margin: 0;
}

/* ───── vision section (descending below the surface) ───── */
.vision-section {
  position: relative;
  background: #0f1244; /* matches hero's deepest blue so the seam disappears */
  color: var(--sand);
  padding: 140px 0 180px;
  overflow: hidden;
}
.vision-deco {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  display: block;
}
.vision-section .wrap { position: relative; z-index: 1; }
.vision-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.vision-lead .kicker { color: var(--amber); }
.vision-lead .h2 {
  font-size: clamp(38px, 4.8vw, 60px);
  margin: 0;
  color: var(--sand);
  text-shadow: 0 2px 24px rgba(10, 12, 36, 0.5);
}
.vision-lead .h2 em { font-style: italic; color: #ffd28a; }
.vision-lead .lead {
  margin-top: 22px;
  color: rgba(241, 231, 210, 0.82);
  max-width: 480px;
}
.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 18px;
}
.vision-pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(241, 231, 210, 0.18);
}
.vision-pillar:last-child { border-bottom: 1px solid rgba(241, 231, 210, 0.18); }
.vision-pillar .num {
  font-family: var(--mono); font-size: 18px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.vision-pillar h3 {
  font-family: var(--font);
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--sand);
}
.vision-pillar p {
  font-size: 14px; line-height: 1.55;
  color: rgba(241, 231, 210, 0.72);
  margin: 0;
}
@media (max-width: 1000px) {
  .vision-grid { grid-template-columns: 1fr; gap: 40px; }
  .vision-section { padding: 90px 0 110px; }
}
@media (max-width: 640px) {
  .vision-section { padding: 72px 0 88px; }
  .vision-pillar { grid-template-columns: 44px 1fr; gap: 12px; padding: 18px 0; }
}

/* ───── tokenomics section ───── */
.tokenomics-section .h2 .a { color: var(--coral); }
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tk-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  min-height: 130px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.tk-tile .tk-k {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(10,35,43,0.55);
  margin-bottom: 4px;
}
.tk-tile .tk-v {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.tk-tile .tk-unit {
  font-size: 14px; font-weight: 500;
  color: rgba(10,35,43,0.55);
  margin-left: 2px;
}
.tk-tile .tk-sub {
  margin-top: auto;
  font-size: 12px;
  color: rgba(10,35,43,0.55);
}
.tk-tile .tk-sub-inline {
  display: block;
  margin-top: 4px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(10,35,43,0.55);
}
.tk-tile.tk-farm { background: #fff5e0; }
.tk-tile.tk-link {
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.tk-tile.tk-link:hover {
  border-color: var(--coral);
  background: #fff7f3;
  transform: translateY(-1px);
}
.tk-tile.tk-link:hover .tk-arrow { transform: translateX(3px); }
.tk-tile .tk-v-text {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
}
.tk-tile .tk-arrow {
  color: var(--coral);
  font-size: 18px; font-weight: 600;
  transition: transform 0.15s;
  display: inline-block;
}
.tk-tile.tk-live { background: var(--ink); color: var(--sand); }
.tk-tile.tk-live .tk-k { color: var(--amber); }
.tk-tile.tk-live .tk-v { color: var(--sand); }
.tk-tile.tk-live .tk-sub-inline { color: rgba(241,231,210,0.6); }
.tk-tile.tk-live .tk-v-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
.tk-wide { grid-column: 1 / -1; }
.tk-empty {
  grid-column: 1 / -1;
  font-family: var(--mono); font-size: 12px;
  color: rgba(10,35,43,0.45);
  text-align: center;
  padding: 26px 0;
}
.tokenomics-stamp {
  margin-top: 18px;
  font-family: var(--mono); font-size: 11px;
  color: rgba(10,35,43,0.45);
  text-align: right;
}
@media (max-width: 1000px) {
  .tokenomics-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tokenomics-grid { grid-template-columns: 1fr; }
  .tk-tile.tk-live .tk-v-row { grid-template-columns: 1fr; gap: 14px; }
}

/* ───── tweets section ───── */
.tweets-section .h2 .handle-link {
  color: var(--coral);
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.tweets-section .h2 .handle-link:hover { border-bottom-color: var(--coral); }
.tweet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tweet-card {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 160px;
}
.tweet-card.placeholder {
  grid-column: 1 / -1;
  align-items: center; justify-content: center;
  text-align: center;
  color: rgba(10,35,43,0.45);
  font-family: var(--mono); font-size: 12px;
  background: transparent; border-style: dashed;
}
.tweet-card .tweet-media {
  margin: -8px -8px 4px;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  gap: 4px;
}
.tweet-card .tweet-media.items-1 { grid-template-columns: 1fr; }
.tweet-card .tweet-media.items-2 { grid-template-columns: 1fr 1fr; }
.tweet-card .tweet-media.items-3 { grid-template-columns: 1fr 1fr; }
.tweet-card .tweet-media.items-3 .tm-item:first-child { grid-row: span 2; }
.tweet-card .tweet-media.items-4 { grid-template-columns: 1fr 1fr; }
.tweet-card .tweet-media .tm-item {
  position: relative;
  aspect-ratio: 16 / 10;
  background: rgba(20,22,58,0.06);
  overflow: hidden;
  border-radius: 8px;
}
.tweet-card .tweet-media.items-3 .tm-item:first-child { aspect-ratio: 1 / 1; }
.tweet-card .tweet-media .tm-item img,
.tweet-card .tweet-media .tm-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.tweet-card .tweet-text {
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  color: rgba(10,35,43,0.88);
}
.tweet-card .tweet-text a {
  color: var(--coral);
  text-decoration: underline;
}
.tweet-card .tweet-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(10,35,43,0.55);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.tweet-card .tweet-handle { color: rgba(10,35,43,0.7); }
.tweet-card .tweet-link { color: var(--coral); }
.tweet-card .tweet-link:hover { text-decoration: underline; }
.tweets-stale {
  margin-top: 18px;
  font-family: var(--mono); font-size: 11px;
  color: rgba(10,35,43,0.45);
  text-align: right;
}

/* ───── farm/about strip with sea bg ───── */
.farm {
  background: var(--sea-1);
  color: var(--sand);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.farm-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.65;
}
.farm .wrap { position: relative; z-index: 2; }
.farm-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.farm .kicker { color: var(--amber); }
.farm h2 {
  font-family: var(--font);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1;
  font-weight: 700;
  margin: 14px 0 18px;
}
.farm h2 em { font-style: normal; color: var(--amber); }
.farm p {
  font-size: 17px; line-height: 1.55;
  color: rgba(241,231,210,0.85);
  max-width: 520px;
}
.farm-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(241,231,210,0.05);
  border: 1px solid rgba(241,231,210,0.18);
  border-radius: 14px;
  overflow: hidden;
}
.farm-stats > div {
  padding: 22px 24px;
  border-right: 1px solid rgba(241,231,210,0.14);
  border-bottom: 1px solid rgba(241,231,210,0.14);
}
.farm-stats > div:nth-child(2n) { border-right: 0; }
.farm-stats > div:last-child { border-right: 0; border-bottom: 0; }
.farm-stats > .span-2 { grid-column: 1 / -1; }
.farm-stats .k {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(241,231,210,0.55);
  margin-bottom: 8px;
}
.farm-stats .v {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em;
}

/* ───── weather card (inside .farm) ───── */
.weather-card {
  margin-top: 40px;
  background: rgba(241,231,210,0.05);
  border: 1px solid rgba(241,231,210,0.18);
  border-radius: 14px;
  padding: 26px 28px;
  color: var(--sand);
}
.weather-card .wx-empty {
  font-family: var(--mono); font-size: 12px;
  color: rgba(241,231,210,0.5);
  text-align: center;
  padding: 14px 0;
}
.weather-card .wx-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(241,231,210,0.14);
}
.weather-card .wx-loc {
  display: flex; flex-direction: column; gap: 4px;
}
.weather-card .wx-kicker {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
}
.weather-card .wx-day {
  font-family: var(--font); font-size: 20px;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--sand);
}
.weather-card .wx-updated {
  font-family: var(--mono); font-size: 11px;
  color: rgba(241,231,210,0.45);
}
.weather-card .wx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 28px;
}
.weather-card .wx-cell-wide { grid-column: span 2; }
.weather-card .wx-cell-tomorrow { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid rgba(241,231,210,0.12); }
.weather-card .wx-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(241,231,210,0.55);
  margin-bottom: 8px;
}
.weather-card .wx-value {
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em;
}
.weather-card .wx-value-text {
  font-size: 16px; font-weight: 600;
  letter-spacing: 0;
}
.weather-card .wx-dir {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: rgba(241,231,210,0.55);
  margin-left: 4px;
}
@media (max-width: 1000px) {
  .weather-card .wx-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .weather-card .wx-cell-wide { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .weather-card { padding: 22px 20px; margin-top: 28px; }
  .weather-card .wx-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .weather-card .wx-cell-wide,
  .weather-card .wx-cell-tomorrow { grid-column: 1 / -1; }
}

/* ───── CTA + footer ───── */
.cta-wrap {
  padding: 100px 0;
  background: var(--sand);
}
.cta {
  background: var(--coral);
  color: #fff;
  border-radius: 24px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  opacity: 0.7;
}
.cta > * { position: relative; z-index: 2; }
.cta h2 {
  font-family: var(--font);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
}
.cta h2 em { font-style: normal; color: #ffe6cf; }
.cta p {
  color: rgba(255,255,255,0.88);
  font-size: 16px; line-height: 1.55;
  margin: 0 0 22px;
}
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cta .btn.primary { background: var(--ink); color: var(--sand); }
.cta .btn.primary:hover { background: #000; }
.cta .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.cta .btn.ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

.footer {
  background: var(--sand);
  border-top: 1px solid var(--line);
  padding: 36px 0 40px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(10,35,43,0.6);
}
/* Bump specificity to .footer .footer-social so it wins over the mobile .wrap reset (padding: 0 20px) */
.footer .footer-social {
  padding-top: 32px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 640px) {
  .footer .footer-social { padding-top: 28px; margin-top: 28px; padding-bottom: 8px; gap: 10px; }
}
.footer-x {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500; font-size: 13px;
  color: var(--ink);
  background: transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.footer-x:hover {
  background: var(--ink); color: var(--sand);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.footer-x svg { display: block; }
.footer .mono {
  font-family: var(--mono); font-size: 11px;
  color: rgba(10,35,43,0.45);
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
}
.footer-brand .label {
  font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
}
.footer-brand .addr {
  font-family: var(--mono);
  font-size: 12px;
  margin-left: 6px;
  word-break: break-all;
  color: rgba(10,35,43,0.55);
}
.footer-brand .addr:hover { color: var(--ink); }

/* responsive */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .life { grid-template-columns: 1fr 1fr; }
  .farm-grid, .cta { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 60px; min-height: 680px; }
  .tweet-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .life { grid-template-columns: 1fr; }
  .farm-stats { grid-template-columns: 1fr; }
  .farm-stats > div { border-right: 0; }
  .farm-stats > div:not(:last-child) { border-bottom: 1px solid rgba(241,231,210,0.14); }
  .cta { padding: 40px 28px; }
  .section { padding: 64px 0; }
  .cta-wrap, .farm { padding: 64px 0; }
  .tweet-grid { grid-template-columns: 1fr; }
}
