:root {
  color-scheme: dark;
  --bg: #07110d;
  --bg-soft: #0b1712;
  --panel: #0e1d17;
  --panel-light: #f1f7eb;
  --ink: #eff7ed;
  --ink-dark: #0b1712;
  --muted: #8fa298;
  --muted-dark: #50635a;
  --line: rgba(226, 255, 237, 0.12);
  --line-strong: rgba(226, 255, 237, 0.2);
  --lime: #c8f55c;
  --lime-bright: #dcff79;
  --green: #46d68c;
  --danger: #ff7e72;
  --display: "DM Sans", "Noto Sans SC", sans-serif;
  --body: "Inter", "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(200, 245, 92, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 245, 92, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 58px 58px;
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.page-glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.09;
  pointer-events: none;
}

.page-glow-one { top: 80px; right: -180px; background: var(--lime); }
.page-glow-two { top: 720px; left: -320px; background: var(--green); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1260px, calc(100% - 32px));
  min-height: 72px;
  margin: 12px auto 0;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 17, 13, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand > span:last-child > span { color: var(--lime); }

.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(200, 245, 92, 0.16), 0 8px 24px rgba(200, 245, 92, 0.12);
}

.desktop-nav { display: flex; gap: 34px; color: var(--muted); font-size: 13px; }
.desktop-nav a { transition: color 180ms ease; }
.desktop-nav a:hover { color: var(--ink); }

.wallet-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.wallet-button:hover { border-color: rgba(200, 245, 92, 0.45); background: rgba(200, 245, 92, 0.06); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
.wallet-button.connected .status-dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(200, 245, 92, 0.1); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 650px;
  padding-block: 74px 64px;
}

.eyebrow, .section-kicker {
  color: var(--lime);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.pulse::after { content: ""; position: absolute; inset: -5px; border: 1px solid var(--lime); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%, 100% { transform: scale(0.65); opacity: 0; } 45% { opacity: 0.7; } 85% { transform: scale(1.15); opacity: 0; } }

.hero h1 {
  max-width: 700px;
  margin: 26px 0 22px;
  font-family: var(--display);
  font-size: clamp(58px, 7.2vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero h1 span { color: var(--lime); }

.hero-lede {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--ink-dark); box-shadow: 0 14px 32px rgba(200, 245, 92, 0.1); }
.button-primary:hover { background: var(--lime-bright); }
.button-secondary { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.03); }
.button-secondary:hover { border-color: rgba(200, 245, 92, 0.35); }
.button-light { background: var(--ink); color: var(--ink-dark); }

.trust-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; color: #71887b; font-size: 12px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row i { display: inline-grid; place-items: center; width: 17px; height: 17px; border: 1px solid rgba(200, 245, 92, 0.32); border-radius: 50%; color: var(--lime); font-style: normal; font-size: 9px; }

.hero-visual { position: relative; min-height: 480px; }
.chain-orbit { position: absolute; border: 1px solid rgba(200, 245, 92, 0.12); border-radius: 50%; }
.orbit-one { top: 14px; right: 0; width: 440px; height: 440px; }
.orbit-two { top: 80px; right: 66px; width: 310px; height: 310px; border-style: dashed; animation: rotate 42s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }

.visual-card {
  position: absolute;
  border: 1px solid rgba(200, 245, 92, 0.18);
  background: linear-gradient(145deg, rgba(16, 35, 27, 0.94), rgba(8, 20, 15, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.visual-card-main { top: 80px; right: 46px; width: min(420px, calc(100% - 24px)); padding: 24px; border-radius: 24px; transform: rotate(-2deg); }
.visual-card-top { display: flex; align-items: center; justify-content: space-between; color: #779083; font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; }
.live-state { display: inline-flex; align-items: center; gap: 6px; color: var(--lime); }
.live-state i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.block-number { margin: 26px 0 16px; font-family: var(--display); font-size: clamp(40px, 6vw, 64px); font-weight: 600; letter-spacing: -0.06em; }

.mini-bars { display: flex; align-items: end; gap: 7px; height: 80px; padding: 12px 0 4px; border-bottom: 1px solid var(--line); }
.mini-bars span { flex: 1; height: var(--bar); border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, rgba(200, 245, 92, 0.13), var(--lime)); opacity: 0.82; }
.visual-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.visual-meta div { display: flex; flex-direction: column; gap: 6px; }
.visual-meta span { color: #648071; font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; }
.visual-meta strong { font-family: var(--display); font-size: 18px; }

.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 12px 15px; border: 1px solid var(--line-strong); border-radius: 11px; background: rgba(10, 24, 18, 0.92); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.28); color: #c1cec6; font-family: var(--display); font-size: 11px; backdrop-filter: blur(10px); }
.floating-chip span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 7px; background: rgba(200, 245, 92, 0.13); color: var(--lime); font-weight: 700; }
.floating-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(70, 214, 140, 0.1); }
.chip-one { top: 42px; left: 28px; animation: float 5s ease-in-out infinite; }
.chip-two { right: -3px; bottom: 74px; animation: float 5s 1.2s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-8px); } }

.network-strip { border-block: 1px solid var(--line); background: rgba(5, 14, 10, 0.72); }
.metrics-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.metrics-grid article { display: flex; flex-direction: column; gap: 8px; min-width: 0; padding: 24px; border-right: 1px solid var(--line); }
.metrics-grid article:first-child { padding-left: 0; }
.metrics-grid article:last-child { border-right: 0; }
.metric-label { color: #64786e; font-size: 11px; }
.metric-value { overflow: hidden; font-family: var(--display); font-size: 20px; text-overflow: ellipsis; white-space: nowrap; }
.online-value { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 15px; }
.online-value i { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.online-value.online { color: var(--green); }
.online-value.offline { color: var(--danger); }

.monitor-section { padding-block: 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading h2 { margin: 12px 0 0; font-family: var(--display); font-size: clamp(36px, 5vw, 56px); line-height: 1; letter-spacing: -0.05em; }
.section-heading > p { max-width: 510px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.monitor-layout { display: grid; grid-template-columns: 340px 1fr; gap: 16px; }
.control-panel, .activity-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(12, 27, 20, 0.74); }
.control-panel { padding: 24px; }
.panel-title, .activity-header > div { display: flex; align-items: center; gap: 12px; }
.panel-title { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.panel-title > div, .activity-header > div > div { display: flex; flex-direction: column; gap: 3px; }
.panel-title strong, .activity-header strong { font-family: var(--display); font-size: 14px; }
.panel-title span:not(.panel-icon), .activity-header span { color: var(--muted); font-size: 11px; }
.panel-icon { display: grid; place-items: center; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; background: rgba(200, 245, 92, 0.12); color: var(--lime); font-family: var(--display); font-size: 18px; }
.panel-icon-dark { background: rgba(13, 31, 22, 0.08); color: #2d5e44; }

form { display: flex; flex-direction: column; padding-top: 23px; }
label { margin-bottom: 9px; color: #c6d2ca; font-size: 11px; font-weight: 600; }
label span { color: #5c7165; font-weight: 400; }
.input-wrap { display: flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 13px; border: 1px solid var(--line-strong); border-radius: 11px; background: rgba(0, 0, 0, 0.14); transition: border-color 180ms ease, box-shadow 180ms ease; }
.input-wrap:focus-within { border-color: rgba(200, 245, 92, 0.55); box-shadow: 0 0 0 3px rgba(200, 245, 92, 0.06); }
.input-wrap > span { color: var(--lime); font-family: var(--display); font-size: 11px; font-weight: 700; }
.input-wrap input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-family: var(--display); font-size: 12px; }
.input-wrap input::placeholder { color: #4e6257; }
.input-wrap-plain { margin-bottom: 18px; }
.field-help { margin: 7px 0 20px; color: #50655a; font-size: 10px; line-height: 1.55; }
.submit-watch { width: 100%; }
.submit-watch:disabled { opacity: 0.58; cursor: wait; transform: none; }
.text-button { margin-top: 10px; padding: 8px; border: 0; background: transparent; color: #5e7367; font-size: 11px; cursor: pointer; }
.text-button:hover { color: var(--ink); }

.watch-summary { margin-top: 18px; padding: 15px; border: 1px solid rgba(200, 245, 92, 0.17); border-radius: 12px; background: rgba(200, 245, 92, 0.055); }
.watching-label { display: flex; align-items: center; gap: 7px; color: var(--lime); font-size: 10px; font-weight: 600; }
.watching-label i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); }
.watch-summary code { display: block; margin: 9px 0 13px; overflow: hidden; color: #becdc4; font-size: 10px; text-overflow: ellipsis; }
.watch-summary > div { display: flex; justify-content: space-between; color: #6d8376; font-size: 10px; }
.watch-summary > div strong { display: block; margin-top: 3px; color: var(--ink); font-family: var(--display); font-size: 12px; }

.activity-panel { display: flex; flex-direction: column; min-width: 0; background: var(--panel-light); color: var(--ink-dark); }
.activity-header { display: flex; align-items: center; justify-content: space-between; min-height: 84px; padding: 0 24px; border-bottom: 1px solid rgba(13, 31, 22, 0.1); }
.activity-header span { color: var(--muted-dark); }
.icon-button { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(13, 31, 22, 0.12); border-radius: 10px; background: transparent; cursor: pointer; transition: transform 180ms ease, background 180ms ease; }
.icon-button:hover { transform: rotate(45deg); background: rgba(13, 31, 22, 0.04); }

.table-wrap { flex: 1; min-height: 390px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 11px; }
th { padding: 14px 18px; border-bottom: 1px solid rgba(13, 31, 22, 0.08); color: #809087; font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-align: left; text-transform: uppercase; }
td { max-width: 220px; padding: 16px 18px; border-bottom: 1px solid rgba(13, 31, 22, 0.07); vertical-align: middle; }
.tx-link { display: flex; flex-direction: column; gap: 3px; min-width: 135px; }
.tx-link a { overflow: hidden; font-family: var(--display); font-weight: 600; text-overflow: ellipsis; }
.tx-link a:hover { color: #48752c; }
.tx-link span { overflow: hidden; color: #7f8f86; font-family: var(--display); font-size: 9px; text-overflow: ellipsis; }
.type-badge, .status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 999px; font-size: 9px; font-weight: 600; white-space: nowrap; }
.type-badge { background: rgba(43, 86, 57, 0.08); color: #345c46; }
.type-badge.in { background: rgba(64, 134, 73, 0.11); color: #2f6c43; }
.type-badge.out { background: rgba(154, 99, 36, 0.1); color: #8a5827; }
.type-badge.log { background: rgba(77, 63, 151, 0.1); color: #564a96; }
.status-badge { background: rgba(46, 137, 76, 0.1); color: #2c7543; }
.status-badge i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.block-link { font-family: var(--display); font-weight: 600; }
.value-cell { font-family: var(--display); white-space: nowrap; }
.empty-row td { border: 0; }
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 300px; color: #778a80; text-align: center; }
.empty-state strong { margin: 18px 0 5px; color: #33483d; font-size: 13px; }
.empty-state > span:last-child { font-size: 10px; }
.empty-radar { position: relative; display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(34, 76, 51, 0.12); border-radius: 50%; }
.empty-radar::before, .empty-radar::after { content: ""; position: absolute; border: 1px solid rgba(34, 76, 51, 0.1); border-radius: 50%; }
.empty-radar::before { inset: 9px; }
.empty-radar::after { inset: 20px; }
.empty-radar i { width: 6px; height: 6px; border-radius: 50%; background: #4c8f5a; }
.activity-footer { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 0 22px; border-top: 1px solid rgba(13, 31, 22, 0.1); color: #73867b; font-size: 9px; }
.activity-footer a { color: #335e47; font-weight: 600; }

.features-section { padding-block: 60px 130px; }
.centered-heading { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.centered-heading > p { margin: 22px auto 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 46px; }
.feature-card { position: relative; min-height: 300px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(11, 25, 18, 0.65); }
.feature-card-accent { background: var(--lime); color: var(--ink-dark); }
.feature-number { position: absolute; top: 24px; right: 24px; color: #54685d; font-family: var(--display); font-size: 10px; }
.feature-card-accent .feature-number { color: rgba(11, 23, 18, 0.45); }
.feature-icon { display: grid; place-items: center; width: 44px; height: 44px; margin: 24px 0 44px; border: 1px solid var(--line-strong); border-radius: 13px; color: var(--lime); font-family: var(--display); font-size: 20px; }
.feature-card-accent .feature-icon { border-color: rgba(11, 23, 18, 0.18); color: var(--ink-dark); }
.feature-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 18px; letter-spacing: -0.02em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.feature-card-accent p { color: rgba(11, 23, 18, 0.67); }
.feature-link { position: absolute; bottom: 27px; color: #698074; font-size: 10px; }
.feature-card-accent .feature-link { color: rgba(11, 23, 18, 0.62); }

.vision-section { border-block: 1px solid var(--line); background: linear-gradient(120deg, rgba(200, 245, 92, 0.04), transparent 55%); }
.vision-inner { display: grid; grid-template-columns: 1fr 0.9fr; gap: 120px; padding-block: 130px; }
.vision-copy h2 { margin: 18px 0 0; font-family: var(--display); font-size: clamp(42px, 5.4vw, 70px); line-height: 1.06; letter-spacing: -0.055em; }
.vision-copy h2 span { color: var(--lime); }
.vision-text { align-self: end; }
.vision-text p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.vision-text p:first-child { color: #d8e4dc; font-size: 17px; }
.vision-signature { display: flex; align-items: center; gap: 14px; margin-top: 36px; color: var(--lime); font-family: var(--display); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.signature-line { width: 52px; height: 1px; background: var(--lime); }

.cta-section { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-block: 100px; padding: 48px 54px; border-radius: 22px; background: var(--lime); color: var(--ink-dark); }
.cta-section .section-kicker { color: rgba(11, 23, 18, 0.6); }
.cta-section h2 { margin: 10px 0 8px; font-family: var(--display); font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.05em; }
.cta-section p { margin: 0; color: rgba(11, 23, 18, 0.64); font-size: 13px; }

.site-footer { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 30px; min-height: 130px; border-top: 1px solid var(--line); }
.footer-brand { font-size: 14px; }
.footer-brand .brand-mark { width: 28px; height: 28px; border-radius: 9px; }
.site-footer p { max-width: 520px; margin: 0 auto; color: #5a7064; font-size: 9px; line-height: 1.7; text-align: center; }
.footer-links { display: flex; justify-content: end; gap: 20px; color: #6d8277; font-family: var(--display); font-size: 10px; }
.footer-links a:hover { color: var(--ink); }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 50; max-width: min(360px, calc(100% - 48px)); padding: 13px 16px; border: 1px solid var(--line-strong); border-radius: 11px; background: #10231a; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); color: #dce9e0; font-size: 11px; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { min-height: 460px; margin-top: 30px; }
  .visual-card-main { left: 50%; right: auto; transform: translateX(-50%) rotate(-2deg); }
  .orbit-one { left: 50%; right: auto; transform: translateX(-50%); }
  .orbit-two { left: 50%; right: auto; margin-left: -155px; }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid article { border-bottom: 1px solid var(--line); }
  .metrics-grid article:first-child { padding-left: 24px; }
  .metrics-grid article:nth-child(3) { border-right: 0; }
  .metrics-grid article:nth-child(4), .metrics-grid article:nth-child(5) { border-bottom: 0; }
  .monitor-layout { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-inner { gap: 60px; }
  .site-footer { grid-template-columns: 1fr; padding-block: 34px; }
  .site-footer p { order: 3; }
  .footer-links { justify-content: start; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 62px; padding: 0 13px; border-radius: 14px; }
  .wallet-button { min-height: 36px; padding: 0 12px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 27px; height: 27px; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero h1 { font-size: clamp(52px, 17vw, 72px); }
  .hero-lede { font-size: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 410px; }
  .visual-card-main { top: 74px; width: calc(100% - 16px); padding: 20px; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 250px; height: 250px; margin-left: -125px; }
  .chip-one { top: 22px; left: 0; }
  .chip-two { right: 0; bottom: 30px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid article { padding: 18px 14px; }
  .metrics-grid article:first-child { padding-left: 14px; }
  .metrics-grid article:nth-child(2), .metrics-grid article:nth-child(4) { border-right: 0; }
  .metrics-grid article:nth-child(3) { border-right: 1px solid var(--line); }
  .metrics-grid article:nth-child(4) { border-bottom: 1px solid var(--line); }
  .metrics-grid article:nth-child(5) { border-bottom: 0; }
  .metric-value { font-size: 17px; }
  .monitor-section { padding-block: 86px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 22px; }
  .control-panel { padding: 20px; }
  .activity-header { padding: 0 18px; }
  th, td { padding: 13px 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
  .vision-inner { grid-template-columns: 1fr; gap: 50px; padding-block: 90px; }
  .cta-section { display: block; margin-block: 70px; padding: 34px 28px; }
  .cta-section .button { width: 100%; margin-top: 28px; }
  .site-footer { align-items: start; }
  .site-footer p { margin: 0; text-align: left; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
