@charset "utf-8";
:root {
  /* Rush Automated Brand Colors */
  /* Primary Colors */
  --rush-black: #000000;
  --rush-green: #51af2f;

  /* Neutral System */
  --dark-grey: #1a1a1a;
  --mid-grey: #7a7a7a;
  --off-white: #f2f4f3;
  --pure-white: #ffffff;

  /* Green Variations */
  --rush-green-light: #6fd94a;
  --rush-green-dark: #3e8f24;

  /* System Colors */
  --system-red: #e5484d;

  /* Application Colors */
  --bg-dark: #000000;
  --bg-card: #1a1a1a;
  --bg-glass: rgba(26, 26, 26, 0.6);
  --border-glass: rgba(242, 244, 243, 0.08);
  --border-glow: rgba(81, 175, 47, 0.3);
  --text-primary: #f2f4f3;
  --text-secondary: #7a7a7a;
  --text-dim: rgba(122, 122, 122, 0.6);
  --accent-primary: #51af2f;
  --accent-light: #6fd94a;
  --accent-dark: #3e8f24;
  --glow-green: rgba(81, 175, 47, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.45;
  overflow-x: hidden;
}

/* Grid Background */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.grid-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 50% 0%,
      rgba(104, 184, 84, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(104, 184, 84, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(78, 143, 66, 0.06) 0%,
      transparent 45%
    );
}

/* Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle linear infinite;
}

.particle:nth-child(odd) {
  background: var(--accent-dark);
}

.particle:nth-child(3n) {
  background: var(--accent-light);
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-20px) rotate(360deg);
    opacity: 0;
  }
}

/* Glass Card */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
}

.glass-strong {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--border-glow);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    var(--bg-dark) 0%,
    var(--bg-dark) 50%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
}

header.scrolled {
  padding: 10px 40px;
}

header.scrolled .header-inner {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

header.scrolled .header-glow {
  opacity: 1;
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px;
  border-radius: 18px;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 105px;
  height: 36px;
  object-fit: contain;
}

.logo-icon {
  display: none;
}

.logo-text {
  display: none;
}

/* Nav Capsule */
.nav-capsule {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.nav-links a {
  font-family: "Manrope", sans-serif;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 9px 18px;
  border-radius: 10px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a.nav-active,
.nav-links a.nav-page-active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.nav-active::after,
.nav-links a.nav-page-active::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--accent-primary);
}

/* Divider between nav and actions */
.nav-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0 10px;
  flex-shrink: 0;
}

/* Header Actions Group */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CTA Button */
.nav-cta {
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none;
  background: var(--accent-primary) !important;
  color: var(--bg-dark) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.nav-cta:hover::before {
  transform: translateX(100%);
}

.nav-cta:hover {
  box-shadow: 0 6px 24px var(--glow-green);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 13px;
  height: 13px;
  stroke: var(--bg-dark);
  transition: transform 0.3s ease;
}

.nav-cta:hover svg {
  transform: translate(2px, -2px);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
}

.lang-switcher button {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.lang-switcher button.active {
  background: var(--accent-primary);
  color: var(--bg-dark);
  box-shadow: 0 2px 8px rgba(81, 175, 47, 0.3);
}

.lang-switcher button:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

/* Nav Toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Section Common */
section {
  position: relative;
  z-index: 2;
  padding: 60px 60px;
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 12px auto 0;
}

/* Common Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Buttons */
.btn-primary {
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-dark)
  );
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px var(--glow-green);
}

.btn-templatemo {
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-dark)
  );
  border-radius: 12px;
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-templatemo:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--glow-green);
}

.btn-templatemo svg {
  width: 18px;
  height: 18px;
  stroke: var(--bg-dark);
}

.btn-outline {
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(104, 184, 84, 0.12);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-primary);
  transition: transform 0.3s ease;
}

.btn-outline:hover svg {
  transform: translateX(4px);
}

/* Footer */
footer {
  position: relative;
  z-index: 2;
  padding: 80px 60px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-glass);
  scroll-snap-align: start;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-column h4 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.footer-social a {
  min-height: 44px;
  padding: 10px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--accent-primary);
  background: rgba(104, 184, 84, 0.12);
  color: var(--accent-primary);
  transform: translateY(-4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--accent-primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Page Transitions */
.page-content {
  animation: pageIn 0.5s ease forwards;
}

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

body.page-transitioning .page-content {
  animation: pageOut 0.3s ease forwards;
}

@keyframes pageOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

/* Page Hero (for sub-pages) */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 160px 20px 80px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(104, 184, 84, 0.14),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(104, 184, 84, 0.08) 0%, transparent 65%);
  z-index: -1;
}

.page-hero .section-tag {
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
}

.page-hero h1 .gradient {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-light),
    var(--accent-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

/* Common Grid Layouts */
.content-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.split-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-layout.reversed {
  direction: rtl;
}

.split-layout.reversed > * {
  direction: ltr;
}

/* Placeholder Image Styling */
.placeholder-area {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form Common */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  color: var(--text-primary);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

/* Responsive - Shared */
@media (max-width: 1024px) {
  section {
    padding: 50px 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .split-layout {
    gap: 50px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-snap-type: none;
  }

  section {
    min-height: auto;
    scroll-snap-align: none;
    display: block;
  }

  header {
    padding: 10px 16px;
  }

  header.scrolled {
    padding: 8px 16px;
  }

  .header-inner {
    padding: 10px 20px;
    border-radius: 14px;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-img {
    width: 120px;
  }

  .nav-toggle {
    position: relative;
    z-index: 1001;
  }

  .nav-capsule {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 16px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-glass);
  }

  .nav-capsule.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .nav-links a {
    width: 100%;
    font-size: 1.05rem;
    padding: 14px 18px;
  }

  .nav-links a::after {
    bottom: 8px;
    left: 18px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .nav-links a:hover::after,
  .nav-links a.nav-active::after,
  .nav-links a.nav-page-active::after {
    transform: scaleX(1);
  }

  .nav-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .lang-switcher {
    align-self: flex-start;
  }

  .nav-toggle {
    display: flex;
  }

  .header-glow {
    display: none;
  }

  section {
    padding: 60px 24px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-layout.reversed {
    direction: ltr;
  }

  .page-hero {
    padding: 120px 20px 60px;
  }

  footer {
    padding: 60px 24px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 100px;
  }
}


