/* ============================================================
   Sui.io homepage clone — styles
   Colors, fonts and layout reconstructed from the source markup.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "TWK Everett";
  src: url("https://cdn.prod.website-files.com/68e8e0120513ba12c5cd12e0/68e8f0a2ace66a14bd436ad6_TWKEverett-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "TWK Everett Mono";
  src: url("https://cdn.prod.website-files.com/68e8e0120513ba12c5cd12e0/68e8f746fc7953b5624e358d_TWKEverettMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "TWK Everett Mono";
  src: url("https://cdn.prod.website-files.com/68e8e0120513ba12c5cd12e0/68e8f7385d19f5fafd1cd6b5_TWKEverettMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --blue: #298dff;
  --blue-light: #5ca9ff;
  --blue-soft: #8fcbff;
  --navy: #011829;
  --black: #05080d;
  --ink: #0a0f16;
  --gray-900: #0d1117;
  --gray-700: #222529;
  --gray-600: #343940;
  --gray-500: #4b515b;
  --gray-400: #89919f;
  --gray-300: #a1a7b2;
  --gray-200: #c2c6cd;
  --white: #ffffff;

  --maxw: 1400px;
  --pad: clamp(20px, 5vw, 64px);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "TWK Everett", var(--font-sans);
  --font-mono: "TWK Everett Mono", "SFMono-Regular", ui-monospace, monospace;

  --ease: cubic-bezier(0.51, 0, 0.08, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.4;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: #000; color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.mono { font-family: var(--font-mono); }
.all-caps { text-transform: uppercase; letter-spacing: 0.04em; }
.blue { color: var(--blue); }

/* ============================================================
   Pencil banner
   ============================================================ */
.pencil {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: #fff;
  font-size: 12px; letter-spacing: 0.5px;
  padding: 8px 16px; text-align: center;
}
.pencil a:hover { color: var(--blue-soft); }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 8, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-left { display: flex; align-items: center; gap: 40px; }
.nav-logo img { height: 26px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; font-size: 14px; color: #fff;
  cursor: pointer; border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.nav-toggle svg { width: 9px; height: 9px; transition: transform 0.3s var(--ease); }
.nav-item:hover .nav-toggle svg { transform: rotate(45deg); }
.nav-item:hover .nav-toggle { color: var(--blue-soft); }

/* dropdown */
.nav-dd {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  display: grid; gap: 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  width: max-content; max-width: 90vw;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.nav-item:hover .nav-dd {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd.cols-2 { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
.nav-dd.cols-3 { grid-template-columns: repeat(3, minmax(200px, 1fr)); }
.dd-col { display: flex; flex-direction: column; gap: 4px; }
.dd-cat {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  color: var(--gray-400); letter-spacing: 0.06em; margin-bottom: 8px;
}
.dd-link {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px; border-radius: 10px;
  transition: background 0.2s ease;
}
.dd-link:hover { background: rgba(255,255,255,0.05); }
.dd-ico {
  width: 30px; height: 30px; flex: 0 0 30px;
  display: grid; place-items: center; color: #fff;
}
.dd-ico svg { width: 100%; height: auto; max-height: 22px; }
.dd-link:hover .dd-ico { color: var(--blue); }
.dd-title { font-size: 14px; color: #fff; display: flex; align-items: center; gap: 5px; }
.dd-desc { font-size: 12px; color: var(--gray-400); margin-top: 3px; line-height: 1.35; }
.ext { width: 7px; height: 7px; opacity: 0.6; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { background: #fff; color: #000; }
.hamburger { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px var(--pad) 80px;
}
/* animated gradient balls */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #02060c; }
.ball { position: absolute; border-radius: 50%; will-change: transform; }
.ball.lightblue {
  width: 120vw; height: 90vh; top: -20vh; left: -10vw;
  background: radial-gradient(circle, #5ca9ff, transparent 60%);
  filter: blur(120px); opacity: 0.7;
  animation: drift1 18s ease-in-out infinite alternate;
}
.ball.blue {
  width: 110vw; height: 100vh; top: -30vh; left: 0;
  background: radial-gradient(circle, #1f6fe0, transparent 60%);
  filter: blur(140px); opacity: 0.6;
  animation: drift2 22s ease-in-out infinite alternate;
}
.ball.black {
  width: 130vw; height: 100vh; top: 10vh; left: -15vw;
  background: radial-gradient(circle, #02060c, transparent 65%);
  filter: blur(160px); opacity: 0.9;
  animation: drift3 26s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(8vw, 6vh) scale(1.1); } }
@keyframes drift2 { to { transform: translate(-6vw, 10vh) scale(1.15); } }
@keyframes drift3 { to { transform: translate(5vw, -8vh) scale(1.05); } }

.hero-content { position: relative; z-index: 2; }
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.02em;
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #ffffff 44%, #298dff 88%, rgba(41,141,255,0.2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin: 28px auto 0;
  max-width: 30ch;
  font-size: clamp(16px, 2vw, 21px);
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 999px; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #fff; color: #000; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: #fff; color: #000; border-color: #fff; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee-section { padding: 80px 0 100px; background: var(--black); }
.marquee-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  max-width: 18ch; margin: 0 auto 56px; line-height: 1.1;
}
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; will-change: transform; }
.marquee-item { height: 30px; display: grid; place-items: center; flex: 0 0 auto; }
.marquee-item img { height: 100%; width: auto; opacity: 0.85; }
.marquee-item img.invert { filter: brightness(0) invert(1); }

/* ============================================================
   Integrity / highlight section
   ============================================================ */
.integrity { padding: clamp(80px,12vh,160px) 0; background: var(--black); }
.gray-span { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; color: var(--gray-400); letter-spacing: 0.05em; }
.integrity-lines {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 64px);
  line-height: 1.18;
  font-weight: 400;
  color: var(--gray-500);
}
.integrity-lines .lit { color: #fff; }
.integrity-lines .text-span { color: var(--blue); }
.hl {
  display: inline-flex; align-items: center; gap: 12px;
  vertical-align: middle;
}
.hl-ico {
  width: 64px; height: 64px; border-radius: 10px; background: var(--blue);
  display: inline-grid; place-items: center; flex: 0 0 auto;
}
.hl-ico svg { width: 60%; height: auto; color: #fff; }
.hl .lit { color: #fff; }

/* ============================================================
   "Sui is" tabs
   ============================================================ */
.suiis { padding: 80px 0 0; background: var(--black); }
.suiis-top { display: flex; align-items: center; gap: 14px; }
.suiis-top .bracket { font-family: var(--font-mono); font-size: 12px; color: var(--gray-400); }
.tabs-bg { background: #fff; color: #000; margin-top: 60px; }
.tabs-wrap { padding: clamp(40px,7vw,90px) 0; }
.tab-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px;
  padding: 34px 0;
  border-top: 1px dashed #cfd3d9;
  align-items: center;
}
.tab-row:first-child { border-top: none; }
.tab-num { font-family: var(--font-mono); font-size: 14px; color: #000; }
.tab-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.tab-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px,5vw,60px); margin: 0; line-height: 1.05; }
.tab-ico { width: 56px; height: 56px; border-radius: 8px; background: var(--blue); display: grid; place-items: center; flex: 0 0 auto; }
.tab-ico svg { width: 55%; color: #fff; }

/* ============================================================
   Timeline — Innovation engineered
   ============================================================ */
.timeline { padding: clamp(90px,14vh,180px) 0; background: var(--black); }
.timeline-head { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; margin-bottom: 80px; }
.timeline-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px,8vw,90px); margin: 0; }
.timeline-head .tagline { display: flex; gap: 10px; align-items: center; color: var(--gray-300); font-size: 18px; max-width: 28ch; }
.blue-cube { width: 12px; height: 12px; background: var(--blue); flex: 0 0 12px; }

.tl-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0;
}
.tl-col { display: flex; flex-direction: column; }
.tl-line { background: repeating-linear-gradient(to bottom, var(--gray-500) 0 2px, transparent 2px 12px); width: 2px; justify-self: center; }
.tl-card {
  border: 1.5px solid var(--gray-600);
  border-bottom: none;
  padding: 26px;
}
.tl-col .tl-card:last-child { border-bottom: 1.5px solid var(--gray-600); }
.tl-card .row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tl-cat { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; color: #fff; letter-spacing: 0.04em; }
.tl-num { font-family: var(--font-mono); font-size: 14px; color: var(--gray-300); }
.tl-anim {
  height: 150px; margin: 22px 0; border-radius: 10px;
  background: radial-gradient(circle at 50% 40%, rgba(41,141,255,0.25), transparent 70%);
  display: grid; place-items: center; overflow: hidden;
}
.tl-anim img, .tl-anim svg { width: 60%; max-height: 90%; opacity: 0.9; }
.tl-brand { display: flex; align-items: center; gap: 12px; color: var(--gray-300); }
.tl-brand .name { font-size: 18px; }
.tl-brand svg { color: var(--gray-300); height: 22px; width: auto; }

/* ============================================================
   Big Sui logo mask reveal
   ============================================================ */
.logo-section { padding: clamp(80px,16vh,200px) 0; background: var(--black); display: grid; place-items: center; }
.logo-mask { width: min(70vw, 760px); }
.logo-mask img { width: 100%; height: auto; }

/* ============================================================
   Benefits
   ============================================================ */
.benefits { background: #fff; color: #000; padding: clamp(60px,9vw,110px) 0; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px dashed #c2c6cd; }
.benefit-col { padding: clamp(36px,5vw,64px); }
.benefit-col + .benefit-col { border-left: 1px dashed #c2c6cd; }
.benefit-col h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px,5vw,60px); text-align: center; margin: 0 0 40px; line-height: 1.05; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px dashed #d8dbe0; }
.benefit-item:first-of-type { border-top: none; }
.benefit-item .dot { width: 12px; height: 12px; background: var(--blue); flex: 0 0 12px; margin-top: 5px; }
.benefit-item p { font-size: 18px; color: #000; }
.benefits-cta { display: flex; justify-content: center; margin-top: 48px; }
.cta-blue {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff; padding: 16px 28px; border-radius: 999px;
  font-size: 16px; font-weight: 500;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.cta-blue:hover { background: #1d7af0; }
.cta-blue svg { width: 14px; height: auto; }

/* ============================================================
   Industry
   ============================================================ */
.industry { background: var(--black); padding: clamp(90px,14vh,180px) 0; }
.industry-head { text-align: center; margin-bottom: 70px; }
.industry-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px,8vw,90px); margin: 0 0 28px; line-height: 1; }
.industry-head .tagline { display: inline-flex; gap: 10px; align-items: center; color: var(--gray-300); font-size: 18px; }
.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px dashed var(--gray-500); }
.industry-card {
  border-bottom: 1px dashed var(--gray-500); border-right: 1px dashed var(--gray-500);
  padding: clamp(28px,3vw,40px);
  display: flex; flex-direction: column; gap: 24px;
  transition: background 0.3s ease;
}
.industry-card:nth-child(2n) { border-right: none; }
.industry-card:hover { background: rgba(41,141,255,0.05); }
.industry-card .card-top { display: flex; align-items: center; gap: 10px; }
.industry-card .card-top .lico { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; }
.industry-card h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px,2.4vw,28px); margin: 0; }
.industry-list { display: flex; flex-direction: column; gap: 10px; }
.industry-list li { display: flex; gap: 12px; align-items: center; color: var(--gray-200); font-size: 18px; }
.industry-list li svg { color: var(--gray-500); width: 24px; flex: 0 0 24px; }
.industry-cardcta { display: inline-flex; gap: 10px; align-items: center; color: #fff; font-size: 14px; margin-top: auto; }
.industry-cardcta svg { width: 14px; color: var(--blue); }

/* Get started */
.getstarted-h2 { text-align: center; font-family: var(--font-display); font-weight: 400; font-size: clamp(44px,8vw,90px); margin: 90px 0 0; color: #fff; }
.start-grid { margin-top: 50px; }
.start-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  padding: 40px 0; border-top: 1px dashed var(--gray-500);
}
.start-row .left { display: flex; align-items: center; gap: 22px; }
.start-row .left svg { width: 36px; color: var(--blue); flex: 0 0 36px; }
.start-row h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px,5vw,60px); margin: 0; color: #fff; }
.start-row .right { display: flex; flex-direction: column; gap: 22px; }
.start-row .right p { color: var(--gray-300); font-size: 18px; max-width: 40ch; }
.start-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 18px; }
.start-link svg { width: 14px; color: var(--blue); }
.start-link:hover { color: var(--blue-soft); }

/* ============================================================
   Stay in the loop
   ============================================================ */
.loop { background: var(--black); padding: clamp(90px,14vh,180px) 0; }
.loop-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; margin-bottom: 70px; }
.loop-head .title { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px,8vw,90px); display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.loop-head .title svg { width: 0.7em; color: var(--blue); }
.loop-head .tagline { display: inline-flex; gap: 10px; align-items: center; color: var(--gray-300); font-size: 18px; }
.loop-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: minmax(120px, auto); gap: 16px; }
.loop-card { background: var(--gray-900); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; position: relative; }
.featured { grid-row: span 2; padding: 22px; display: flex; flex-direction: column; }
.featured .label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 18px; }
.sf-item { display: flex; gap: 12px; align-items: center; justify-content: space-between; padding: 16px 0; border-top: 1px dashed var(--gray-600); }
.sf-item:first-of-type { border-top: none; }
.sf-item .thumb { width: 70px; height: 50px; border-radius: 8px; overflow: hidden; flex: 0 0 70px; background: #1a2330; }
.sf-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.sf-item h3 { font-size: 15px; font-weight: 500; margin: 0; line-height: 1.3; }
.sf-arrow { width: 30px; height: 30px; border-radius: 50%; background: var(--gray-600); display: grid; place-items: center; flex: 0 0 30px; transition: background 0.3s ease; }
.sf-item:hover .sf-arrow { background: var(--blue); }
.sf-arrow svg { width: 13px; color: #fff; }
.media-card { min-height: 220px; display: grid; place-items: center; background: linear-gradient(135deg, #0b1622, #102a45); }
.media-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-card .play {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  padding: 10px 18px; border-radius: 999px; font-size: 14px;
  transition: background 0.3s ease;
}
.media-card:hover .play { background: var(--blue); }
.tvl-card { padding: 22px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.tvl-card .lbl { color: var(--gray-400); font-size: 14px; }
.tvl-card .lbl span { color: #fff; }
.tvl-card .val { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); }
.social-card { display: grid; place-items: center; gap: 10px; padding: 22px; }
.social-card.discord { background: #5865f2; }
.social-card.x { background: #16191d; }
.social-card span { font-size: 15px; }
.social-card svg { width: 44px; height: auto; color: #fff; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--black); border-top: 1px dashed var(--gray-500); padding: 70px 0 40px; }
.footer-drop { color: var(--blue); margin-bottom: 36px; }
.footer-drop svg { height: 34px; width: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
.footer-col h3 { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; color: #fff; margin: 0 0 18px; letter-spacing: 0.04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--gray-300); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 28px; border-top: 1px dashed var(--gray-600); flex-wrap: wrap; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: var(--gray-700); display: grid; place-items: center; color: #fff; transition: background 0.2s ease; }
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 18px; height: auto; }
.copyright { color: var(--gray-400); font-size: 13px; }

/* ============================================================
   Scroll reveal helper
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: grid; place-items: center; width: 40px; height: 40px; cursor: pointer; }
  .hamburger span { display: block; width: 20px; height: 2px; background: #fff; position: relative; }
  .hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; }
  .hamburger span::before { top: -6px; } .hamburger span::after { top: 6px; }
  .loop-grid { grid-template-columns: 1fr 1fr; }
  .featured { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-col + .benefit-col { border-left: none; border-top: 1px dashed #c2c6cd; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { border-right: none; }
  .start-row { grid-template-columns: 1fr; gap: 24px; }
  .tl-grid { grid-template-columns: 1fr; }
  .tl-line, .tl-col.left { display: none; }
  .loop-grid { grid-template-columns: 1fr; }
  .featured { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .tab-row { grid-template-columns: 50px 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 999999px) {
  .ball { animation: none; }
  * { scroll-behavior: auto; }
}
