:root {
  --primary: #8a5cf5;
  --accent: #a284f6;
  --bg: #f5f5f7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --shadow: #000000;
  --secondary: #ffff00;
  --accent-cyan: #26e1fa;
  --accent-pink: #ff4b8b;
  --muted: #4d4d56;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Lexend", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(138, 92, 245, 0.14) 0%, transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(38, 225, 250, 0.16) 0%, transparent 34%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: repeating-radial-gradient(
    circle at 0 0,
    transparent 0,
    transparent 6px,
    rgba(0, 0, 0, 0.02) 7px
  );
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.bg-shape-a {
  width: 260px;
  height: 260px;
  right: -100px;
  top: 300px;
  background: rgba(255, 214, 0, 0.16);
}

.bg-shape-b {
  width: 200px;
  height: 200px;
  left: -80px;
  top: 560px;
  background: rgba(38, 225, 250, 0.14);
}

.page-shell {
  max-width: none;
  margin: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.topbar {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-bottom: 3px solid var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--primary);
  border: 2px solid var(--shadow);
}

.brand-icon {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border: 2px solid var(--shadow);
  border-radius: 8px;
  box-shadow: 2px 2px 0 var(--shadow);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.topbar-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.topbar-nav a:hover {
  border-bottom-color: var(--primary);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  border: 2px solid var(--shadow);
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 10px;
  min-width: 46px;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--shadow);
}

.lang-toggle:hover {
  transform: translate(-1px, -1px);
}

main {
  max-width: 1260px;
  margin: 0 auto;
  padding: 16px 24px 80px;
  position: relative;
  z-index: 2;
}

.main-layout {
  padding-top: 20px;
}

.btn {
  border: 2px solid var(--shadow);
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  border-radius: 0;
  padding: 12px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  color: white;
  background: var(--primary);
  box-shadow: 4px 4px 0 var(--shadow);
}

.btn-outline {
  color: var(--text);
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--shadow);
}

.btn-ghost {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 3px 3px 0 var(--shadow);
  font-size: 0.84rem;
  letter-spacing: 0.6px;
}

.hero {
  padding: 24px 0 16px;
}

.hero-structured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.hero-copy {
  background: transparent;
  border: 0;
  padding: 20px 8px 14px 8px;
}

.tag,
.kicker {
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
}

.tag {
  display: inline-block;
  background: var(--secondary);
  border: 2px solid var(--shadow);
  border-radius: 999px;
  padding: 4px 10px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5.2vw, 5.1rem);
  line-height: 0.95;
  margin: 0 0 14px;
  max-width: 760px;
}

.hero-accent {
  color: var(--primary);
  font-style: italic;
}

.lead {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--muted);
  line-height: 1.45;
  max-width: 700px;
  font-weight: 700;
}

.hero-cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-media-card {
  background: #ffffff;
  border: 3px solid var(--shadow);
  box-shadow: 6px 6px 0 var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  animation: heroFloat 5.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) brightness(1.03) contrast(1.04);
  animation: heroImagePulse 7s ease-in-out infinite;
  transform-origin: center;
  will-change: filter, transform;
}

.hero-media-card::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 240, 185, 0.42) 0%, rgba(255, 255, 255, 0) 46%),
    radial-gradient(circle at 80% 70%, rgba(255, 214, 120, 0.22) 0%, rgba(255, 255, 255, 0) 56%);
  mix-blend-mode: soft-light;
  opacity: 0.6;
  pointer-events: none;
  animation: heroLightSweep 9s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-quote {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: #ffffff;
  border: 2px solid var(--shadow);
  padding: 10px 12px;
  max-width: 62%;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 700;
  z-index: 2;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px);
    box-shadow: 6px 6px 0 var(--shadow);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 10px 14px 0 var(--shadow);
  }
}

@keyframes heroImagePulse {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1.05) brightness(1.02) contrast(1.03);
  }
  50% {
    transform: scale(1.03);
    filter: saturate(1.15) brightness(1.08) contrast(1.08);
  }
}

@keyframes heroLightSweep {
  0% {
    transform: translate(-10%, -6%) rotate(0deg);
    opacity: 0.38;
  }
  50% {
    transform: translate(6%, 5%) rotate(6deg);
    opacity: 0.64;
  }
  100% {
    transform: translate(-8%, -4%) rotate(0deg);
    opacity: 0.4;
  }
}

.trust-strip {
  margin-top: 10px;
  border: 3px solid var(--shadow);
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-strip div {
  padding: 12px 10px;
  border-right: 2px solid var(--shadow);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-strip div:last-child {
  border-right: 0;
}

.section {
  margin-top: 54px;
}

.bento {
  background: #ffffff;
  border: 3px solid var(--shadow);
  padding: 24px;
  box-shadow: 8px 8px 0 var(--shadow);
}

.bento .kicker {
  display: none;
}

.bento-title {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  margin: 2px 0 18px;
  line-height: 1;
}

.bento-title .hl {
  background: var(--secondary);
  border: 2px solid var(--shadow);
  padding: 0 10px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.bento-card {
  border: 2px solid var(--shadow);
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 3px 3px 0 var(--shadow);
}

.bento-main {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 14px;
  align-items: center;
}

.bento-main-copy h3,
.bento-purple h3,
.bento-yellow h3,
.bento-media h3 {
  margin: 10px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.bento-main-copy p,
.bento-purple p,
.bento-yellow p,
.bento-media p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #2d2d2d;
  font-weight: 700;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.bento-main-visual {
  border: 2px solid var(--shadow);
  border-radius: 10px;
  min-height: 130px;
  background: #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.visual-progress {
  width: 100%;
  height: 8px;
  border: 2px solid var(--shadow);
  border-radius: 999px;
  background: #3a3a3a;
  overflow: hidden;
}

.visual-progress span {
  display: block;
  width: 84%;
  height: 100%;
  background: linear-gradient(90deg, #00b6cc, #8a5cf5);
}

.bento-purple {
  background: linear-gradient(135deg, #6b3cd8, #5b30bf);
  color: #ffffff;
}

.bento-purple p {
  color: #ece8ff;
}

.bento-yellow {
  background: var(--secondary);
}

.bento-media {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: center;
}

.bento-media-thumb {
  border: 2px solid var(--shadow);
  border-radius: 10px;
  min-height: 150px;
  background: #151515;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.interface-section {
  background: #ffffff;
  border: 3px solid var(--shadow);
  padding: 24px;
  box-shadow: 8px 8px 0 var(--shadow);
}

.invest-section {
  background: #ffffff;
  border: 3px solid var(--shadow);
  padding: 24px;
  box-shadow: 8px 8px 0 var(--shadow);
}

.invest-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.invest-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.invest-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.invest-card {
  border: 2px solid var(--shadow);
  background: var(--surface);
  padding: 14px;
}

.invest-grid-dynamic .invest-card {
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.invest-card-dynamic {
  --card-accent: var(--primary);
  --card-tint: rgba(138, 92, 245, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #fdfdff 100%);
  box-shadow: 3px 3px 0 var(--shadow);
}

.invest-card-dynamic::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  height: 9px;
  background: var(--card-accent);
  border-bottom: 2px solid var(--shadow);
}

.invest-card-dynamic::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -42px;
  top: -44px;
  background: var(--card-tint);
  border: 2px solid var(--shadow);
  border-radius: 50%;
  opacity: 0.8;
}

.invest-card-dynamic:hover {
  transform: translate(-3px, -4px) rotate(0deg);
  box-shadow: 8px 8px 0 var(--shadow);
}

.business-grid .invest-card:nth-child(1) {
  transform: rotate(-0.7deg);
}

.business-grid .invest-card:nth-child(2) {
  transform: rotate(0.7deg);
}

.gtm-grid .invest-card:nth-child(1) {
  transform: rotate(-0.5deg);
}

.gtm-grid .invest-card:nth-child(2) {
  transform: rotate(0.9deg);
}

.team-grid .invest-card:nth-child(1) {
  transform: rotate(-0.8deg);
}

.team-grid .invest-card:nth-child(2) {
  transform: translateY(-4px);
}

.team-grid .invest-card:nth-child(3) {
  transform: rotate(0.8deg);
}

.team-grid .invest-card-dynamic {
  border-width: 3px;
  padding: 16px;
  box-shadow: 6px 6px 0 var(--shadow);
}

.team-grid .invest-card-dynamic::before {
  height: 12px;
  border-bottom: 3px solid var(--shadow);
}

.team-grid .invest-card-dynamic::after {
  display: none;
}

.team-grid .invest-card:nth-child(1) {
  background: #f2e9ff;
}

.team-grid .invest-card:nth-child(2) {
  background: #e5fbff;
}

.team-grid .invest-card:nth-child(3) {
  background: #ffe8f1;
}

.team-grid .invest-card:hover {
  transform: translate(-4px, -5px) rotate(-0.25deg);
  box-shadow: 10px 10px 0 var(--shadow);
}

.team-grid .invest-chip {
  background: #111111;
  color: #ffffff;
  border-width: 3px;
}

.tone-primary {
  --card-accent: var(--primary);
  --card-tint: rgba(138, 92, 245, 0.18);
}

.tone-cyan {
  --card-accent: var(--accent-cyan);
  --card-tint: rgba(38, 225, 250, 0.2);
}

.tone-yellow {
  --card-accent: #ffe45a;
  --card-tint: rgba(255, 214, 0, 0.2);
}

.tone-pink {
  --card-accent: var(--accent-pink);
  --card-tint: rgba(255, 75, 139, 0.2);
}

.invest-chip,
.invest-step {
  display: inline-block;
  margin: 8px 0 10px;
  padding: 4px 8px;
  border: 2px solid var(--shadow);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

.invest-chip {
  color: var(--text);
}

.invest-step {
  min-width: 36px;
  text-align: center;
  color: #ffffff;
  background: var(--card-accent);
}

.invest-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.invest-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.invest-card .metric {
  margin: 2px 0 6px;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
}

.interface-title {
  margin: 2px 0 20px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1;
}

.interface-title span {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.interface-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
}

.interface-row.reverse {
  direction: rtl;
}

.interface-row.reverse > * {
  direction: ltr;
}

.interface-copy {
  padding: 10px 6px;
}

.interface-kicker {
  display: inline-block;
  border: 2px solid var(--shadow);
  padding: 4px 8px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.interface-kicker.cyan {
  background: var(--accent-cyan);
}

.interface-kicker.pink {
  background: #ff5d87;
  color: #2d050f;
}

.interface-copy h3 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.7rem;
  line-height: 0.95;
}

.interface-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: #3a3a3a;
  max-width: 500px;
}

.interface-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.interface-list li {
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.interface-media {
  border: 3px solid var(--shadow);
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 4px 4px 0 var(--shadow);
  position: relative;
}

.interface-media.frame-yellow::before,
.interface-media.frame-purple::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  z-index: -1;
  border: 2px solid var(--shadow);
}

.interface-media.frame-yellow::before {
  background: var(--secondary);
  transform: rotate(-1.1deg);
}

.interface-media.frame-purple::before {
  background: #b18eff;
  transform: rotate(1.2deg);
}

.media-placeholder {
  min-height: 260px;
  border: 2px dashed #3f3f3f;
  background: linear-gradient(135deg, rgba(38, 225, 250, 0.2), rgba(138, 92, 245, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  padding: 10px;
}

.video-slot {
  font-size: 0.9rem;
  line-height: 1.35;
}

.capabilities,
.tech,
.cta {
  background: #ffffff;
  border: 3px solid var(--shadow);
  padding: 24px;
  box-shadow: 8px 8px 0 var(--shadow);
}

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

.cap-item {
  border: 2px solid var(--shadow);
  background: var(--surface);
  padding: 14px;
}

.cap-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cap-item p {
  margin: 0;
  font-size: 0.92rem;
}

.impact {
  background: #2f2f32;
  color: #ffffff;
  border: 3px solid var(--shadow);
  padding: 30px;
  box-shadow: 8px 8px 0 var(--shadow);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.impact-copy {
  padding: 2px 4px;
}

.impact-title {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.impact-title span {
  display: block;
}

.impact-highlight {
  color: var(--secondary);
}

.impact-copy > p {
  margin: 0;
  color: #ececec;
  max-width: 540px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.impact-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.impact-stats h3 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  color: var(--secondary);
  font-family: "Space Grotesk", sans-serif;
}

.impact-stats p {
  margin: 4px 0 0;
  font-size: 0.86rem;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: #cecece;
}

.impact-right {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: center;
}

.impact-right::before {
  content: "";
  position: absolute;
  right: 22px;
  top: -10px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.impact-panel {
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
}

.impact-panel h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.impact-panel p {
  margin: 0;
  color: #e5e5e5;
  font-weight: 700;
  line-height: 1.4;
}

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

.tech-item {
  border: 2px solid var(--shadow);
  background: #fff;
  padding: 14px;
  min-height: 130px;
}

.tech-item-dynamic {
  --card-accent: var(--primary);
  --card-tint: rgba(138, 92, 245, 0.15);
  position: relative;
  overflow: hidden;
  padding-top: 32px;
  transition: transform 240ms ease, box-shadow 240ms ease;
  box-shadow: 3px 3px 0 var(--shadow);
}

.tech-grid-dynamic .tech-item-dynamic {
  border-width: 3px;
  min-height: 150px;
  padding: 34px 14px 16px;
  box-shadow: 6px 6px 0 var(--shadow);
}

.tech-item-dynamic::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  height: 12px;
  background: var(--card-accent);
  border-bottom: 3px solid var(--shadow);
}

.tech-item-dynamic::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--shadow);
  border-radius: 6px;
  background: var(--card-tint);
  opacity: 1;
}

.tech-item-dynamic:hover {
  transform: translate(-4px, -5px) rotate(-0.35deg);
  box-shadow: 10px 10px 0 var(--shadow);
}

.tech-grid-dynamic .tech-item:nth-child(even):hover {
  transform: translate(-4px, -5px) rotate(0.35deg);
}

.tech-grid-dynamic .tech-item:nth-child(1) {
  background: #efe6ff;
}

.tech-grid-dynamic .tech-item:nth-child(2) {
  background: #dcfbff;
}

.tech-grid-dynamic .tech-item:nth-child(3) {
  background: #fff9c9;
}

.tech-grid-dynamic .tech-item:nth-child(4) {
  background: #ffe2ee;
}

.tech-pill {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 8px;
  border: 3px solid var(--shadow);
  background: var(--card-accent);
  color: #151515;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  position: relative;
  z-index: 1;
}

.tech-item h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.tech-item p {
  margin: 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.cta {
  text-align: center;
}

.cta .btn {
  display: inline-block;
  margin-top: 10px;
}

.footer {
  padding: 24px 20px 35px;
  color: var(--text);
  font-size: 0.9rem;
  background: #ffffff;
  border-top: 3px solid var(--shadow);
}

.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-inner h3 {
  margin: 0;
  font-size: 1rem;
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.hover-press {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hover-press:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 #1a1a1a;
}

.hover-press:active {
  transform: translate(6px, 6px);
  box-shadow: none;
}

.feature-card-hover {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.feature-card-hover:hover {
  box-shadow: 10px 10px 0 #1a1a1a;
  transform: scale(1.01);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse-subtle {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 2px 2px 0 #1a1a1a;
  }
  50% {
    transform: scale(1.03);
    box-shadow: 8px 8px 0 #1a1a1a;
  }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.animate-pulse-subtle {
  animation: pulse-subtle 3s infinite ease-in-out;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease-out forwards;
}

@media (max-width: 980px) {
  .topbar-nav {
    display: none;
  }

  .hero-structured,
  .interface-row,
  .impact-grid,
  .tech-grid,
  .invest-grid.two,
  .invest-grid.three {
    grid-template-columns: 1fr;
  }

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

  .bento-main,
  .bento-media {
    grid-column: span 2;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 2px solid var(--shadow);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .business-grid .invest-card,
  .team-grid .invest-card,
  .gtm-grid .invest-card,
  .invest-grid-dynamic .invest-card:hover,
  .tech-item-dynamic:hover {
    transform: none;
  }
}

@media (max-width: 700px) {
  main {
    padding: 12px 14px 60px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero-quote {
    max-width: 86%;
    left: 10px;
    bottom: 10px;
    font-size: 0.74rem;
  }

  .bento,
  .interface-section,
  .capabilities,
  .impact,
  .tech,
  .cta {
    padding: 16px;
    box-shadow: 5px 5px 0 var(--shadow);
  }

  .bento-grid,
  .cap-grid,
  .impact-stats,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .bento-main,
  .bento-media {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .interface-copy h3 {
    font-size: 2rem;
  }

  .media-placeholder {
    min-height: 190px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-card,
  .hero-media-card img,
  .hero-media-card::before {
    animation: none;
  }
}
