@font-face {
  font-family: 'LINE Seed JP';
  src: url('assets/fonts/LINESeedJP_OTF_Th.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('assets/fonts/LINESeedJP_OTF_Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('assets/fonts/LINESeedJP_OTF_Bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('assets/fonts/LINESeedJP_OTF_Eb.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

:root {
  --primary-color: #ff5c84;
  --primary-glow: rgba(255, 92, 132, 0.4);
  --secondary-color: #ff85a2;
  --dark-bg: #070b14;
  --deep-dark: #03050a;
  --text-main: #f8fafc;
  --text-primary: #ffffff;
  --text-muted: #94a3b8;
  --accent-blue: #38bdf8;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  /* Gradient Bg Vars */
  --color-bg1: rgb(8, 10, 15);
  --color-bg2: rgb(0, 17, 32);
  --color1: 255, 92, 132;
  /* Pink */
  --color2: 255, 133, 162;
  /* Light Pink */
  --color3: 56, 189, 248;
  /* Blue */
  --color4: 168, 85, 247;
  /* Purple */
  --color5: 180, 20, 50;
  /* Dark Red */
  --color-interactive: 100, 100, 255;
  --circle-size: 80%;
  --blending: hard-light;

  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-mid: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shiny CTA Vars */
  --shiny-cta-bg: var(--deep-dark);
  --shiny-cta-bg-subtle: #1a1818;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: var(--primary-color);
  --shiny-cta-highlight-subtle: #ff85a2;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes bgPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

body {
  font-family: 'LINE Seed JP', sans-serif;
  background-color: var(--dark-bg);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 51, 102, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 40%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  width: 150vw;
  height: 150vh;
  top: -25vh;
  left: -25vw;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: bgPulse 20s infinite linear;
  will-change: opacity;
  /* GPU optimization */
}

/* Base Elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Nav - Bespoke Design */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 11, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  transition: var(--transition-mid);
  will-change: transform;
  /* Protect navigation during scroll */
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  height: 48px;
  display: flex;
  align-items: center;
}

.nav__logo-link {
  display: flex;
  align-items: center;
  height: 48px;
  line-height: 0;
  transition: var(--transition-mid);
  text-decoration: none;
}

.nav__logo-link:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nav__logo-img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-mid);
  position: relative;
  white-space: nowrap;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-mid);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a.nav__link--highlight {
  background: rgba(255, 92, 132, 0.1);
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: var(--primary-color);
  transition: var(--transition-mid);
}

.nav__links a.nav__link--highlight::after {
  display: none;
}

.nav__links a.nav__link--highlight:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Section Header styling */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--primary-color);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 3rem;
  letter-spacing: -0.03em;
}

/* Glass Card - Enhanced */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(255, 51, 102, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Hero - Centered Visual Composition */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background: transparent;
}

.hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(7, 11, 20, 0.8) 0%,
      rgba(7, 11, 20, 0.4) 50%,
      rgba(7, 11, 20, 0.9) 100%);
  z-index: 1;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero__content {
  max-width: 900px;
  z-index: 10;
  padding: 0;
  margin-bottom: 4rem;
}

.hero__visual {
  width: 90%;
  max-width: 1000px;
  z-index: 5;
  padding: 0;
  perspective: none;
  position: relative;
}

.hero__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(80px);
  opacity: 0.4;
}

.hero__visual img {
  width: 100%;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  transform: none;
  /* Reset rotation for centered look */
}

.hero:hover .hero__visual img {
  transform: translateY(-10px);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.9);
}

.hero__tagline {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero__tagline::before,
.hero__tagline::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--primary-color);
  opacity: 0.5;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title-line {
  display: block;
}

.hero__title span.highlight {
  display: block;
  background: linear-gradient(90deg, #fff 20%, var(--primary-color) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px var(--primary-glow));
}

.strategy-card--blue .strategy-card__tag {
  color: var(--accent-blue);
  background: rgba(56, 189, 248, 0.1);
}

.strategy-card--pink .strategy-card__tag {
  color: var(--secondary-color);
  background: rgba(255, 133, 162, 0.1);
}

.hero__desc {
  color: var(--text-muted);
  border-left: 2px solid var(--primary-color);
  padding-left: 2rem;
}

/* Custom Grid Adjustments */
.grid-stack {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.feature-content {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-content p {
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

.feature-viz {
  margin: 3rem 0;
}

.feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.stat-box {
  background: var(--glass);
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
  border: 1px solid var(--glass-border);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

/* Typewriter Effect Styles - Zero Layout Shift Guaranteed */
[data-typewriter] {
  display: block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}

[data-typewriter].is-typing {
  opacity: 1;
  animation: revealTextClip 2s linear forwards;
}

@keyframes revealTextClip {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0% 0 0);
  }
}

[data-typewriter].is-completed {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
}

/* Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px) translate3d(0, 0, 0);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Checklist Styling - More "App-like" */
.checklist-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: var(--transition-mid);
  border: 1px solid transparent;
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-border);
  transform: translateX(10px);
}

.checklist-item.checked {
  opacity: 0.5;
}

.checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkbox.checked {
  background: var(--primary-color);
}

/* Immersive Image Containers - High Impact */
.immersive-img {
  width: 100%;
  margin: 4rem 0;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
  position: relative;
  background: var(--deep-dark);
}

.immersive-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s var(--transition-slow);
}

.immersive-img:hover img {
  transform: scale(1.05);
}

/* Showcase Content - Large Image Focus */
.showcase {
  margin: 6rem 0;
}

.showcase__img {
  margin-top: 2rem;
}

.showcase__text {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.showcase__text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.grid-content {
  padding: 2rem;
}

.logic-intro {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-primary);
  font-weight: 700;
}

.grid-content h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.grid-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .grid-content h3 {
    font-size: 1.25rem;
  }

  .grid-content p {
    font-size: 0.95rem;
  }

  .logic-intro {
    font-size: 1rem;
  }
}

.img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
}

.img-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Stats & Plan Comparison */
.feature-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  background: rgba(56, 189, 248, 0.08);
  transform: translateY(-8px);
  border-color: var(--accent-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-card:first-child:hover {
  background: rgba(255, 51, 102, 0.08);
  border-color: var(--primary-color);
}

.plan-card .plan-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.plan-card .plan-count {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.plan-card .plan-count span {
  font-size: 0.9rem;
  opacity: 0.4;
  margin-right: 0.5rem;
  font-weight: 400;
}

/* Logic Flow & Box */
.logic-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
}

.logic-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 30px;
  text-align: center;
}

.logic-box--highlight {
  border-color: var(--primary-color);
  background: rgba(255, 51, 102, 0.05);
  box-shadow: 0 0 40px rgba(255, 51, 102, 0.1);
}

.logic-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.5;
}

/* Strategy Grid - Full Width */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 1024px) {
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Strategy Image Overrides */
.strategy-visual {
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto 0;
}

/* Responsive & Desktop Polish */
@media (max-width: 1024px) {
  .hero {
    padding-top: 140px;
  }

  .feature-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .logic-flow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .logic-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .strategy-composition {
    flex-direction: column;
    gap: 3rem;
  }

  .strategy-visual-wrapper {
    position: static;
    order: -1;
  }

  .img-grid--reverse .grid-content {
    order: 2;
  }

  .img-grid--reverse .img-card {
    order: 1;
  }
}

.highlight-title {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.logic-desc {
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.footer-viz {
  margin-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
}

.footer-viz img {
  max-width: 1000px;
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  .highlight-title {
    font-size: 1.5rem;
  }

  .logic-desc {
    font-size: 0.95rem;
  }

  .footer-action__title {
    font-size: 1.5rem;
  }
}

.section--light {
  background: rgba(255, 255, 255, 0.02);
}

.text-left {
  text-align: left !important;
  margin-left: 0 !important;
}

.large-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.text-block {
  border-left: 3px solid var(--primary-color);
  padding-left: 2rem;
  color: var(--text-muted);
}

.faq-section {
  padding: 8rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--glass);
  padding: 2.5rem;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .large-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .nav__inner {
    padding: 0 1.5rem;
  }

  .nav__links {
    display: none;
  }

  .container {
    padding: 0 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .glass-card {
    padding: 2.5rem 1.5rem;
  }

  .immersive-img {
    border-radius: 20px;
    margin: 2rem 0;
  }

  .showcase {
    margin: 4rem 0;
  }

  .showcase__text h3 {
    font-size: 1.5rem;
  }

  .grid-content h3 {
    font-size: 1.25rem;
  }

  .grid-content p {
    font-size: 0.95rem;
  }

  .logic-intro {
    font-size: 1rem;
  }
}

.footer-action {
  margin-top: 5rem;
  text-align: center;
  padding-top: 5rem;
  border-top: 1px solid var(--glass-border);
}

.footer-action__title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.4;
}

.footer-action__desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.site-footer {
  padding: 6rem 0 0 0;
  border-top: 1px solid var(--glass-border);
  background: var(--deep-dark);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition-mid);
}

.footer__logo-img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 15px var(--primary-glow));
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}

.footer__banner {
  width: 100%;
  overflow: hidden;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
}

.footer__banner-img {
  width: 80%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  opacity: 0.08;
  filter: grayscale(1) brightness(1.5);
  pointer-events: none;
  transition: var(--transition-slow);
}

.footer__banner:hover .footer__banner-img {
  opacity: 0.15;
  transform: scale(1.05);
  filter: grayscale(0) brightness(1.1) drop-shadow(0 0 50px var(--primary-glow));
}

/* Strategic Depth - Desktop Only Background Elements */
@media (min-width: 1025px) {
  #strategy {
    position: relative;
  }

  #strategy::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    top: 50%;
    z-index: -1;
  }
}

html {
  scroll-behavior: smooth;
}

.footer__banner-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer__banner-link:hover .footer__banner-img {
  opacity: 1 !important;
  filter: grayscale(0) brightness(1) !important;
  transform: scale(1.02);
}

/* Tools Section */
.tools-section {
  position: relative;
  padding: 100px 0;
}

.section-subtitle-small {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -2rem;
  margin-bottom: 4rem;
  opacity: 0.8;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tool-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-mid);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.tool-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tool-card__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 51, 102, 0.1);
  color: var(--primary-color);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  letter-spacing: 0.05em;
}

.tool-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tool-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tool-card__features {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.feature-label {
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tool-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-mid);
  text-align: center;
}

.tool-card__link:hover {
  background: #ff3366;
  transform: scale(1.02);
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Extra Tool Section */
.tool-extra {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.05) 0%, rgba(56, 189, 248, 0.05) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 3rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.tool-extra__preview {
  flex-shrink: 0;
  width: 240px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  background: #000;
  position: relative;
}

.tool-extra__video-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-control {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-mid);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.video-control:hover {
  transform: translateX(-50%) scale(1.05);
  background: #ff3366;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.tool-video {
  width: 100%;
  height: auto;
  display: block;
}

.tool-extra__content {
  flex-grow: 1;
}


.tool-extra__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.tool-extra__name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
}

.tool-extra__desc {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.tool-extra__features {
  list-style: none;
  margin-bottom: 2rem;
}

.tool-extra__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tool-extra__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 900;
}

.tool-extra__link {
  display: inline-flex;
  padding: 1rem 3rem;
  background: #fff;
  color: var(--deep-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: var(--transition-mid);
}

.tool-extra__link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .tool-extra {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    text-align: center;
  }

  .tool-extra__header {
    flex-direction: column;
    gap: 1rem;
  }

  .tool-extra__name {
    font-size: 1.5rem;
  }

  .tool-extra__features li {
    padding-left: 0;
  }

  .tool-extra__features li::before {
    display: none;
  }
}

/* CTA Buttons & Wrappers */
.hero__cta {
  margin-top: 2.5rem;
}

.action-cta,
.footer-cta {
  margin-top: 4rem;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition-mid);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

.btn--large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.btn--primary:hover {
  transform: translateY(-3px);
  background: #ff3366;
  box-shadow: 0 15px 40px var(--primary-glow);
}

/* Shine Animation */
.btn--shine {
  position: relative;
  overflow: hidden;
  padding: 1rem 2.5rem;
}

.btn--shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Glow Animation */
.btn--glow {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 51, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
  }
}

@media (max-width: 768px) {
  .btn--large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Progress Bar */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
}

.progress-bar {
  height: 4px;
  background: var(--primary-gradient);
  width: 0%;
  box-shadow: 0 0 10px var(--primary-glow);
}

/* TL;DR Section */
.tldr-section {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--glass-border);
}

.tldr-container {
  max-width: 900px !important;
  background: rgba(255, 51, 102, 0.05);
  border: 1px solid rgba(255, 51, 102, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
}

.tldr-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tldr-icon {
  font-size: 1.5rem;
}

.tldr-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--text-primary);
}

.tldr-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

.tldr-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
}

.tldr-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.8rem;
  top: 0.2rem;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-mid);
}

.comparison-card--highlight {
  background: rgba(255, 51, 102, 0.05);
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 51, 102, 0.1);
}

.comparison-tag {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.comparison-tag--video {
  color: var(--primary-color);
}

.comparison-visual {
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--glass-border);
  position: relative;
}

.comparison-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 51, 102, 0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.comparison-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}

.comparison-visual--video:hover .comparison-video-controls {
  opacity: 1;
}

.video-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

.video-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.comparison-vs {
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--primary-color);
  opacity: 0.5;
}

.comparison-desc {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ROI Section */
.roi-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.roi-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-mid);
}

.roi-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
}

.roi-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.roi-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.roi-value span {
  font-size: 1rem;
  margin-left: 0.5rem;
  color: var(--primary-color);
}

.roi-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.roi-note {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .comparison-vs {
    display: none;
  }

  .comparison-card--highlight {
    transform: none;
  }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
  opacity: 1;
  pointer-events: auto;
}

.floating-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-block;
}

.btn--secondary:hover {
  background: var(--primary-color);
  color: white;
}

.floating-cta .btn {
  padding: 1rem 2rem;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 50%;
    transform: translate(50%, 150%);
    width: 90%;
  }

  .floating-cta.is-visible {
    transform: translate(50%, 0);
  }

  .floating-cta.is-visible {
    transform: translate(50%, 0);
  }
}

/* Shiny CTA Style */
.shiny-cta {
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.25rem 2.5rem;
  font-family: inherit;
  font-size: 1.125rem;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
    conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-cta-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta span::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.shiny-cta:active {
  translate: 0 1px;
}

/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg),
      black,
      transparent 10% 90%,
      black);
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg,
      transparent,
      var(--shiny-cta-highlight),
      transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta span {
  z-index: 1;
  position: relative;
  display: block;
}

.shiny-cta span::before {
  --size: calc(100% + 1rem);
  width: var(--size);
  height: var(--size);
  box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
  opacity: 0;
}

/* Animate */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent,
    --gradient-shine;
}

.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
  animation: var(--animation) var(--duration),
    var(--animation) calc(var(--duration) / 0.4) reverse paused;
  animation-composition: add;
}

.shiny-cta span::before {
  transition: opacity var(--transition);
  animation: calc(var(--duration) * 1.5) breathe linear infinite;
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
  color: white;
  /* Ensure text remains white */
}

.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}

.shiny-cta:is(:hover, :focus-visible) span::before {
  opacity: 1;
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {

  from,
  to {
    scale: 1;
  }

  50% {
    scale: 1.2;
  }
}

/* Animated Grainy Gradient Background */
.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  z-index: -10;
}

.gradient-bg .svgBlur {
  display: none;
}

.gradient-bg .noise-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.gradient-bg .gradients-container {
  filter: blur(40px);
  /* Simplified from SVG goo filter for performance */
  width: 100%;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.4) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 0.6;
  will-change: transform;
}

.g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.4) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 0.6;
  will-change: transform;
}

.g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.3) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 0.5;
  will-change: transform;
}

.g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.3) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.4;
  will-change: transform;
}

.g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.3) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 0.5;
  will-change: transform;
}

.interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.6) 0, rgba(var(--color-interactive), 0) 60%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 80%;
  height: 80%;
  top: -40%;
  left: -40%;
  opacity: 0.8;
  /* Increased from 0.4 for better visibility */
  will-change: transform;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(50%);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }

  50% {
    transform: translateX(50%) translateY(10%);
  }

  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}

/* =========================================
   Mobile Menu (Restored)
   ========================================= */
.menu-trigger {
  display: none;
  /* Hidden by default, shown on mobile */
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  z-index: 1002;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.menu-trigger__line {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

.menu-trigger:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.menu-trigger.is-active .menu-trigger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-trigger.is-active .menu-trigger__line:nth-child(2) {
  opacity: 0;
}

.menu-trigger.is-active .menu-trigger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav.is-active {
  pointer-events: auto;
  opacity: 1;
}

.mobile-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 11, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}

.mobile-nav__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav__links a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav.is-active .mobile-nav__links a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays handled by nth-child if clearer, or just generic delay logic */
.mobile-nav.is-active .mobile-nav__links li:nth-child(1) a {
  transition-delay: 0.1s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(2) a {
  transition-delay: 0.15s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(3) a {
  transition-delay: 0.2s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(4) a {
  transition-delay: 0.25s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(5) a {
  transition-delay: 0.3s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(6) a {
  transition-delay: 0.35s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(7) a {
  transition-delay: 0.4s;
}

.mobile-nav__highlight {
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}

.mobile-nav__footer {
  margin-top: 4rem;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}

.mobile-nav.is-active .mobile-nav__footer {
  opacity: 0.6;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    /* Hide desktop nav */
  }

  .menu-trigger {
    display: flex;
    /* Show mobile trigger */
  }
}

/* =========================================
   Mobile Menu (Restored)
   ========================================= */
.menu-trigger {
  display: none;
  /* Hidden by default, shown on mobile */
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  z-index: 1002;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.menu-trigger__line {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

.menu-trigger:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.menu-trigger.is-active .menu-trigger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-trigger.is-active .menu-trigger__line:nth-child(2) {
  opacity: 0;
}

.menu-trigger.is-active .menu-trigger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav.is-active {
  pointer-events: auto;
  opacity: 1;
}

.mobile-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 11, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}

.mobile-nav__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav__links a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav.is-active .mobile-nav__links a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays handled by nth-child if clearer, or just generic delay logic */
.mobile-nav.is-active .mobile-nav__links li:nth-child(1) a {
  transition-delay: 0.1s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(2) a {
  transition-delay: 0.15s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(3) a {
  transition-delay: 0.2s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(4) a {
  transition-delay: 0.25s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(5) a {
  transition-delay: 0.3s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(6) a {
  transition-delay: 0.35s;
}

.mobile-nav.is-active .mobile-nav__links li:nth-child(7) a {
  transition-delay: 0.4s;
}

.mobile-nav__highlight {
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}

.mobile-nav__footer {
  margin-top: 4rem;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}

.mobile-nav.is-active .mobile-nav__footer {
  opacity: 0.6;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    /* Hide desktop nav */
  }

  .menu-trigger {
    display: flex;
    /* Show mobile trigger */
  }
}