:root {
  color-scheme: dark;
  --bg: #06080d;
  --panel: #10141d;
  --panel-2: #171c26;
  --text: #f7f9ff;
  --muted: #a8b0c4;
  --subtle: #697286;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #37e4b0;
  --accent-2: #8cf6d2;
  --max: 1360px;
  --nav-h: 76px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(55, 228, 176, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 20%), rgba(55, 228, 176, 0.1), transparent 25rem);
}

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

button {
  font: inherit;
  cursor: pointer;
}

img,
video {
  max-width: 100%;
}

::selection {
  background: rgba(55, 228, 176, 0.45);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 100%;
  height: 3px;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(55, 228, 176, 0.6);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.24s ease, border-color 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(6, 8, 13, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(55, 228, 176, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.showcase-hero {
  min-height: min(520px, 58svh);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--nav-h) + 24px) 0 66px;
  border-bottom: 1px solid var(--line);
}

.hero-reel {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-reel video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.55) contrast(1.2);
  transform: scale(1.025);
}

.hero-reel-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 13, 0.98) 0%, rgba(6, 8, 13, 0.76) 46%, rgba(6, 8, 13, 0.22) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 46%, rgba(6, 8, 13, 0.64) 100%);
}

.hero-content {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.showcase-hero h1 {
  max-width: 1240px;
  margin: 0;
  font-size: clamp(54px, 8.7vw, 126px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: uppercase;
}

.showcase-hero h1 em {
  color: var(--accent-2);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.hero-bottom {
  align-items: flex-end;
}

.round-link {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(140, 246, 210, 0.62);
  border-radius: 50%;
  background: rgba(6, 8, 13, 0.5);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.round-link b {
  margin-top: 4px;
  color: var(--accent-2);
}

.round-link:hover {
  transform: rotate(-8deg) scale(1.05);
  background: var(--accent-2);
  color: var(--bg);
}

.round-link:hover b {
  color: inherit;
}

.marquee {
  position: absolute;
  inset: auto 0 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(6, 8, 13, 0.78);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 42px;
  white-space: nowrap;
}

.marquee-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

.marquee-group {
  flex: none;
  box-sizing: border-box;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(30px, 4vw, 68px);
  padding: 0 clamp(30px, 4vw, 68px);
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: clamp(30px, 4vw, 68px);
}

.marquee-group span::after {
  content: "·";
  color: var(--accent-2);
}

@keyframes marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

.showcase {
  padding: 22px 0 72px;
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

.showcase-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

h2,
h3,
p {
  margin: 0;
}

h2 {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.showcase-controls,
.filter-tabs {
  display: flex;
  align-items: center;
}

.showcase-controls {
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 34px);
}

.filter-tabs {
  gap: clamp(14px, 2vw, 28px);
}

.filter-tab,
.motion-toggle {
  position: relative;
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-tab::after,
.motion-toggle::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.filter-tab:hover,
.filter-tab.is-active,
.motion-toggle:hover {
  color: var(--accent-2);
}

.filter-tab:hover::after,
.filter-tab.is-active::after,
.motion-toggle:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.motion-toggle {
  color: var(--subtle);
}

.project-grid {
  display: grid;
  gap: clamp(30px, 4vw, 58px) 24px;
}

.project-card {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(55, 228, 176, 0.15), transparent 42%);
  transition: opacity 0.25s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-visual {
  aspect-ratio: 16 / 10;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.project-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.3s ease;
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.06), transparent 58%, rgba(6, 8, 13, 0.46));
}

.project-card:hover .project-video {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.project-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
}

.project-info > span {
  color: var(--subtle);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-info h3 {
  font-size: clamp(21px, 2vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.project-info h3 span {
  color: var(--accent-2);
  font-size: 0.7em;
}

.footer {
  padding: 28px 0;
  color: var(--subtle);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
}

.footer-inner a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: transform 0.65s ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .mobile-nav-toggle {
    display: none;
  }

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

@media (max-width: 759px) {
  :root {
    --nav-h: 68px;
  }

  .container,
  .nav {
    width: min(100% - 24px, var(--max));
  }

  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 8, 13, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }

  .nav-links.is-open a {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open a:last-child {
    border-bottom: 0;
  }

  .showcase-hero {
    min-height: 440px;
    padding-bottom: 52px;
  }

  .hero-reel video {
    opacity: 0.28;
  }

  .hero-reel-shade {
    background: linear-gradient(0deg, var(--bg) 0%, rgba(6, 8, 13, 0.56) 52%, rgba(6, 8, 13, 0.76) 100%);
  }

  .hero-bottom {
    align-items: flex-start;
  }

  .round-link {
    width: 82px;
    height: 82px;
  }

  .showcase {
    padding: 18px 0 60px;
  }

  .showcase-bar {
    min-height: 52px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .showcase-bar::-webkit-scrollbar {
    display: none;
  }

  .showcase-controls {
    min-width: max-content;
    margin-left: auto;
  }

  .project-grid {
    gap: 48px;
  }

}

@media (max-width: 440px) {
  .showcase-hero h1 {
    font-size: clamp(46px, 14vw, 62px);
    line-height: 0.86;
  }

  .round-link {
    width: 72px;
    height: 72px;
    font-size: 10px;
  }

  .project-visual {
    aspect-ratio: 4 / 3;
  }

  .project-info {
    align-items: baseline;
  }
}

/* Case-study layer */
.showcase-hero {
  min-height: clamp(540px, 64svh, 620px);
  padding-top: calc(var(--nav-h) + 8px);
  padding-bottom: 54px;
}

.hero-content {
  align-self: center;
  gap: clamp(16px, 2vw, 24px);
  padding-top: 12px;
}

.hero-eyebrow {
  margin: 0 0 -6px;
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-bottom {
  justify-content: space-between;
}

.hero-intro {
  max-width: 700px;
}

.hero-intro > p {
  max-width: 650px;
  color: #d2d8e6;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

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

.hero-primary-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent-2);
  color: var(--bg);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(55, 228, 176, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-primary-cta:hover,
.hero-primary-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(55, 228, 176, 0.28);
}

.hero-actions .round-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(6, 8, 13, 0.42);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-facts span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(6, 8, 13, 0.58);
  color: var(--muted);
  font-size: 11px;
}

.hero-facts strong {
  color: var(--text);
  font-size: inherit;
}

.showcase {
  padding-top: 28px;
}

.showcase-bar {
  justify-content: space-between;
  gap: 24px;
}

.showcase-count {
  color: var(--subtle);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 85% 12%, rgba(140, 246, 210, 0.18), transparent 28%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-visual::before {
  opacity: 1;
}

.visual-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(6, 8, 13, 0.78);
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(6px);
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.visual-cta b {
  color: var(--accent-2);
}

.project-visual:hover .visual-cta,
.project-visual:focus-visible .visual-cta {
  opacity: 1;
  transform: translateY(0);
}

.project-info {
  display: grid;
  align-content: start;
  justify-content: stretch;
  gap: 13px;
  padding-top: 18px;
}

.project-heading {
  display: grid;
  gap: 9px;
}

.project-heading > span,
.project-notes > div > span,
.process-heading span,
.showcase-cta > div > span {
  color: var(--accent-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-info > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tags span {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--subtle);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-notes-toggle {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
}

.project-notes-toggle span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-2);
  transition: transform 0.2s ease;
}

.project-notes-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.project-notes {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--line);
}

.project-notes[hidden] {
  display: none;
}

.project-notes > div {
  padding: 15px;
  background: rgba(12, 16, 24, 0.97);
}

.project-notes p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.process-section {
  padding: clamp(70px, 9vw, 126px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 5%, rgba(55, 228, 176, 0.1), transparent 26rem),
    rgba(255, 255, 255, 0.016);
}

.process-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
}

.process-heading h2,
.showcase-cta h2 {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: none;
}

.process-heading > p {
  max-width: 520px;
  align-self: end;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #0b0f17;
}

.process-grid li > span {
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 800;
}

.process-grid strong {
  margin: auto 0 12px;
  font-size: clamp(19px, 2vw, 26px);
}

.process-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.showcase-cta {
  width: min(100%, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: clamp(52px, 7vw, 82px) auto 0;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(140, 246, 210, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(55, 228, 176, 0.11), transparent 58%),
    var(--panel);
}

.showcase-cta-kicker {
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.showcase-cta h2 {
  max-width: 700px;
  margin: 14px auto 0;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.showcase-cta p {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.6;
}

.showcase-cta-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.showcase-cta-link:hover,
.showcase-cta-link:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-2);
}

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

@media (min-width: 760px) {
  .process-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

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

@media (min-width: 1040px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .showcase-hero {
    min-height: clamp(520px, 72svh, 580px);
    padding-top: calc(var(--nav-h) + 4px);
    padding-bottom: 50px;
  }

  .hero-content {
    gap: 14px;
    padding-top: 4px;
  }

  .hero-bottom {
    align-items: flex-end;
    gap: 18px;
  }

  .hero-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-primary-cta {
    padding-inline: 18px;
    font-size: 13px;
  }

  .hero-facts span {
    min-height: 32px;
  }

  .showcase-bar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 14px;
  }

  .showcase-controls {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .visual-cta {
    opacity: 1;
    transform: none;
  }

  .project-info {
    padding-top: 16px;
  }

  .process-grid li {
    min-height: 190px;
  }

  .showcase-cta {
    width: 100%;
    margin-top: 44px;
    padding: 32px 22px;
  }
}

@media (max-width: 440px) {
  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .round-link {
    align-self: flex-end;
  }
}

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

/* --- Promo Card Redesign --- */
.promo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  background: var(--panel-2);
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: var(--radius);
  transition: border-color 0.4s;
  padding: 0 !important;
  text-align: left !important;
}

.promo-card:hover {
  border-color: rgba(55, 228, 176, 0.4) !important;
}

.promo-card-inner {
  position: relative;
  z-index: 2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(55, 228, 176, 0.1);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  align-self: flex-start;
  border: 1px solid rgba(55, 228, 176, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.promo-heading {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-bright);
}

.promo-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 440px;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.promo-features svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}

.promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(55, 228, 176, 0.2);
  background: var(--accent-2);
}

.promo-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(55, 228, 176, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-card:hover .promo-glow {
  transform: scale(1.2) translate(-5%, 5%);
}
