/* ===========================
   TOKENS & RESET
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-50: #f9f9f8;
  --gray-100: #f2f2f0;
  --gray-200: #e5e4e0;
  --gray-300: #c8c7c2;
  --gray-400: #9d9c97;
  --gray-500: #6e6d69;
  --gray-600: #4a4946;
  --gray-700: #2e2d2b;
  --gray-800: #1c1b1a;
  --gray-900: #111110;
  --accent: #2a5f3f;
  --accent-light: #3d8a5a;
  --accent-pale: #e8f3ec;
  --seed-gold: #b8860b;
  --seed-gold-pale: #fdf8e8;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 60px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ===========================
   TYPOGRAPHY
   =========================== */
h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 120px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-dark {
  background: var(--gray-900);
  color: var(--white);
}

.section-header {
  max-width: 680px;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.45);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: inherit;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  font-weight: 300;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-ghost,
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gray-900);
  color: var(--white);
  border: 1px solid var(--gray-900);
}

.btn-primary:hover {
  background: var(--gray-700);
  border-color: var(--gray-700);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-ghost:hover {
  border-color: var(--gray-500);
  color: var(--gray-900);
}

.btn-nav {
  padding: 7px 16px;
  font-size: 12px;
  background: var(--gray-900);
  color: var(--white);
  border: 1px solid transparent;
}

.btn-nav:hover {
  background: var(--gray-700);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

/* ===========================
   NAV
   =========================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: border-color 0.3s;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  flex-shrink: 0;
}

.logo-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
  flex: 1;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  transition: color 0.15s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--gray-900);
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Graphic side */
.hero-graphic-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  width: 100%;
  max-width: 520px;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.2s var(--ease-out), transform 1.4s var(--ease-out);
  will-change: transform, opacity;
}

.hero-graphic.visible {
  opacity: 1;
  transform: scale(1);
}

/* Callouts */
.callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}

.callout.visible {
  opacity: 1;
}

.callout-left {
  flex-direction: row-reverse;
}

.callout-right {
  flex-direction: row-reverse;
}

.callout-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-700);
  flex-shrink: 0;
}

.callout-line {
  width: 80px;
  height: 1px;
  flex-shrink: 0;
  color: var(--gray-400);
  overflow: visible;
}

.callout-text {
  padding: 0 12px;
  max-width: 200px;
}

.callout-text-right {
  text-align: right;
}

.callout-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.callout-arrow {
  font-size: 10px;
}

.callout-text p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
  font-weight: 300;
}

/* Copy side */
.hero-copy {
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out) 0.2s, transform 0.9s var(--ease-out) 0.2s;
}

.hero-copy.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  max-width: 1120px;
  margin: 60px auto 0;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s var(--ease-out) 0.6s, transform 0.8s var(--ease-out) 0.6s;
}

.hero-stats.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ===========================
   PROTOCOL GRID
   =========================== */
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.protocol-card {
  background: var(--white);
  padding: 48px 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.protocol-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.protocol-card:hover {
  background: var(--gray-50);
}

.protocol-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.protocol-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.protocol-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   NOT A TOKEN / DISTINCTION
   =========================== */
.distinction-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.distinction-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.distinction-text p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

.distinction-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
}

.compare-col {
  padding: 32px 28px;
}

.compare-col-no {
  background: var(--white);
  border-right: 1px solid var(--gray-200);
}

.compare-col-yes {
  background: var(--gray-50);
}

.compare-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.compare-col-yes .compare-title {
  color: var(--accent);
}

.compare-col li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
}

.compare-col li::before {
  content: '–';
  color: var(--gray-300);
  flex-shrink: 0;
}

.compare-col-yes li::before {
  content: '✓';
  color: var(--accent);
  flex-shrink: 0;
}

.compare-col li:last-child {
  border-bottom: none;
}

/* ===========================
   YIELD
   =========================== */
.yield-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.yield-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.yield-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.yield-card:nth-child(2) {
  transition-delay: 0.12s;
}

.yield-card-seed {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: var(--white);
}

.yield-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 28px;
  width: fit-content;
}

.yield-badge-standard {
  background: var(--gray-100);
  color: var(--gray-500);
}

.yield-apr {
  font-size: 80px;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}

.yield-card:not(.yield-card-seed) .yield-apr {
  color: var(--gray-900);
}

.yield-pct {
  font-size: 40px;
  font-weight: 300;
  vertical-align: super;
}

.yield-apr-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  font-weight: 300;
}

.yield-card:not(.yield-card-seed) .yield-apr-sub {
  color: var(--gray-400);
}

.yield-features {
  flex: 1;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yield-card:not(.yield-card-seed) .yield-features {
  border-color: var(--gray-200);
}

.yield-features li {
  font-size: 13.5px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}

.yield-card:not(.yield-card-seed) .yield-features li {
  border-color: var(--gray-100);
  color: var(--gray-600);
}

.yield-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.yield-card:not(.yield-card-seed) .yield-features li::before {
  background: var(--gray-300);
}

.yield-card-seed .btn-primary {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--white);
}

.yield-card-seed .btn-primary:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}

/* ===========================
   SEED SECTION
   =========================== */
.seed-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.seed-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  margin-bottom: 24px;
  margin-top: 16px;
  color: var(--white);
}

.seed-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

.seed-highlight {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 36px 0;
}

.seed-highlight-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sh-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.sh-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* Chart */
.seed-visual {
  position: sticky;
  top: 100px;
}

.seed-chart {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px;
}

.seed-chart-header {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 32px;
}

.seed-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 160px;
}

.bar-item {
  flex: 1;
  height: var(--bar-h);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px 2px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 8px;
  position: relative;
  transition: background 0.2s;
  cursor: default;
  min-width: 0;
}

.bar-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bar-item-max {
  background: rgba(255, 255, 255, 0.25);
}

.bar-item-max:hover {
  background: rgba(255, 255, 255, 0.35);
}

.bar-label {
  display: none;
  font-size: 9px;
}

.bar-val {
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

.bar-item-max .bar-val {
  color: rgba(255, 255, 255, 0.85);
}

.seed-chart-bars .bar-item:hover .bar-val {
  color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   TEAM — Portrait Grid
   =========================== */
.team-portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.team-portrait-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.team-portrait-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-portrait-card:nth-child(2) {
  transition-delay: 0.1s;
}

.team-portrait-card:nth-child(3) {
  transition-delay: 0.2s;
}

.team-portrait-card:nth-child(4) {
  transition-delay: 0.3s;
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 16px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-out);
  filter: grayscale(8%);
}

.team-portrait-card:hover .team-photo {
  transform: scale(1.03);
}

.team-portrait-info {
  padding: 0;
}

.team-portrait-meta {
  border-top: 1.5px solid var(--gray-900);
  padding-top: 14px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-portrait-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.team-portrait-role {
  font-size: 12.5px;
  color: var(--gray-500);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.team-portrait-desc {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

.team-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 300;
  font-style: italic;
}

.team-note svg {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* ===========================
   STATUS
   =========================== */
.status-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  border-left: 1px solid var(--gray-200);
  padding-left: 0;
}

.status-item {
  display: flex;
  gap: 32px;
  padding: 28px 0 28px 40px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.status-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.status-item:nth-child(2) {
  transition-delay: 0.1s;
}

.status-item:nth-child(3) {
  transition-delay: 0.2s;
}

.status-item:nth-child(4) {
  transition-delay: 0.3s;
}

.status-item:nth-child(5) {
  transition-delay: 0.4s;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  position: absolute;
  left: -4px;
}

.status-active .status-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-pale);
}

.status-upcoming .status-dot {
  background: var(--gray-300);
  border: 1.5px solid var(--gray-300);
}

.status-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.status-upcoming .status-content h3 {
  color: var(--gray-400);
}

.status-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  font-weight: 300;
}

.status-upcoming .status-content p {
  color: var(--gray-400);
}

/* ===========================
   CTA
   =========================== */
.section-cta {
  padding: 140px 0;
  border-top: 1px solid var(--gray-200);
}

.cta-block {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-graphic {
  width: 48px;
  height: 48px;
  color: var(--gray-300);
  margin-bottom: 28px;
}

.cta-bolt {
  width: 100%;
  height: 100%;
}

.cta-block h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}

.cta-actions {
  margin-bottom: 20px;
}

.cta-tagline {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  font-weight: 300;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  border-top: 1px solid var(--gray-200);
  padding: 36px 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  color: var(--gray-700);
}

.footer-logo .logo-icon {
  color: var(--gray-700);
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.footer-nav a {
  font-size: 12px;
  color: var(--gray-400);
  transition: color 0.15s;
  letter-spacing: 0.02em;
}

.footer-nav a:hover {
  color: var(--gray-700);
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ===========================
   ANIMATIONS (scroll observer)
   =========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .container {
    padding: 0 28px;
  }

  .nav-inner {
    padding: 0 28px;
    gap: 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 28px 0;
    gap: 48px;
  }

  .hero-graphic-wrap {
    order: -1;
  }

  .hero-graphic {
    max-width: 340px;
    margin: 0 auto;
  }

  .callout {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 28px;
  }

  .stat-divider {
    display: none;
  }

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

  .distinction-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .distinction-compare {
    grid-template-columns: 1fr;
  }

  .compare-col-no {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

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

  .seed-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .seed-visual {
    position: relative;
    top: 0;
  }

  .team-portrait-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-nav {
    margin-left: 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
  }

  .section-cta {
    padding: 100px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-portrait-grid {
    grid-template-columns: 1fr;
  }
}