@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap";
/* [project]/src/modules/landing/styles/landing.css [app-client] (css) */
.om-landing {
  --accent-lime: #b4f372;
  --accent-yellow: #eefb63;
  --accent-purple: #bc9aff;
  --gradient: linear-gradient(135deg, #b4f372, #eefb63, #bc9aff);
  --dark-bg: #0c0c0c;
  --dark-surface: #141414;
  --dark-border: #2a2a2a;
  --light-bg: #fff;
  --light-alt: #fafafa;
  --light-border: #e7e7e7;
  --text-primary: #434343;
  --text-secondary: #888;
  --text-on-dark: #fff;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-display: "Inter", sans-serif;
  --container: 1200px;
  --transition: .2s ease;
  --radius-pill: 9999px;
  --radius-card: 12px;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.om-landing *, .om-landing :before, .om-landing :after {
  box-sizing: border-box;
}

.om-landing ::selection {
  background: var(--accent-lime);
  color: var(--dark-bg);
}

.om-landing a {
  color: var(--accent-purple);
  transition: color var(--transition);
  text-decoration: none;
}

.om-landing a:hover {
  color: var(--text-primary);
}

.om-landing h1, .om-landing h2, .om-landing h3, .om-landing h4 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.05;
}

.om-landing p {
  margin: 0;
}

.om-landing .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 900px) {
  .om-landing .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 580px) {
  .om-landing .container {
    padding: 0 1rem;
  }
}

.om-landing .section-label {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-purple);
  font-size: .7rem;
  font-family: var(--font-mono);
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  display: flex;
}

.om-landing .om-dark .section-label {
  color: var(--accent-lime);
}

.om-landing-nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
  background: #0c0c0ce6;
  border-bottom: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.om-landing-nav .nav-logo {
  color: var(--text-on-dark);
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  display: inline-flex;
}

.om-landing-nav .nav-logo img {
  width: auto;
  height: 24px;
}

.om-landing-nav .nav-links {
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.om-landing-nav .nav-links a {
  color: var(--text-secondary);
  letter-spacing: .02em;
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}

.om-landing-nav .nav-links a:hover {
  color: var(--text-on-dark);
}

.om-landing-nav .nav-cta {
  background: var(--gradient);
  color: var(--dark-bg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  padding: .5rem 1.25rem;
  transition: opacity .2s, transform .15s;
}

.om-landing-nav .nav-cta:hover {
  opacity: .9;
  color: var(--dark-bg);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .om-landing-nav {
    border-bottom: none;
    padding: 1rem 1.25rem;
  }

  .om-landing-nav .nav-links {
    display: none;
  }

  .om-landing-nav .nav-logo img {
    height: 22px;
  }

  .om-landing-nav .nav-cta {
    padding: .5rem 1rem;
    font-size: .75rem;
  }
}

.om-landing-hero {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
  min-height: 100vh;
  padding: 8rem max(2.5rem, 50vw - 600px + 2.5rem) 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.om-landing-hero .hero-header {
  max-width: 64rem;
  margin: 0 0 3rem;
}

.om-landing-hero .hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 3rem;
  display: grid;
}

@media (max-width: 1100px) {
  .om-landing-hero {
    padding: 7rem 1.25rem 3rem;
  }

  .om-landing-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .om-landing-hero .hero-header {
    margin-bottom: 2rem;
  }

  .om-landing-hero .hero-right {
    order: -1;
  }
}

@media (max-width: 900px) {
  .om-landing-hero .hero-cta-row .btn-secondary {
    display: none;
  }

  .om-landing-hero .hero-cta-row {
    justify-content: center;
  }

  .om-landing-hero .hero-cta-row .btn-primary {
    text-align: center;
    width: 100%;
    max-width: 22rem;
  }
}

.om-landing-hero .hero-eyebrow {
  font-family: var(--font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 1.25rem;
  font-size: .8rem;
}

.om-landing-hero h1 {
  color: var(--text-on-dark);
  letter-spacing: -.03em;
  overflow-wrap: break-word;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}

.om-landing-hero .hero-left {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.om-landing-hero .hero-right {
  width: 100%;
}

.om-landing-hero h1 .outline {
  -webkit-text-stroke: 1px #ffffff40;
  color: #0000;
}

.om-landing-hero h1 .accent {
  background: var(--gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.om-landing-hero .hero-subtitle {
  color: var(--text-secondary);
  max-width: 36rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.om-landing-hero .hero-bullets {
  gap: .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.om-landing-hero .hero-bullets li {
  color: var(--text-secondary);
  padding-left: 1.5rem;
  font-size: .9rem;
  line-height: 1.55;
  position: relative;
}

.om-landing-hero .hero-bullets li:before {
  content: "+";
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}

.om-landing-hero .hero-cta-row {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.om-landing-hero .hero-meta {
  border-top: 1px solid var(--dark-border);
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: .5rem;
  padding-top: .5rem;
  display: flex;
}

.om-landing-hero .hero-meta-label {
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-size: .7rem;
  font-family: var(--font-mono);
  margin-bottom: .25rem;
}

.om-landing-hero .hero-meta-value {
  color: var(--text-on-dark);
  font-size: 1rem;
  font-weight: 700;
}

.om-landing-hero .hero-meta-item:first-child .hero-meta-value {
  color: var(--accent-lime);
}

@media (max-width: 580px) {
  .om-landing-hero .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    display: grid;
  }

  .om-landing-hero .hero-meta-item:first-child {
    grid-column: 1 / -1;
  }
}

.om-landing .btn-primary {
  background: var(--gradient);
  color: var(--dark-bg);
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: var(--radius-pill);
  border: none;
  padding: .875rem 2.5rem;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  display: inline-block;
}

.om-landing .btn-primary:hover {
  opacity: .9;
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.om-landing .btn-primary:disabled, .om-landing .btn-primary[aria-disabled="true"] {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

.om-landing .btn-secondary {
  color: var(--text-secondary);
  border: 1px solid var(--dark-border);
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: var(--radius-pill);
  background: none;
  padding: .875rem 2.5rem;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.om-landing .btn-secondary:hover {
  color: var(--text-on-dark);
  border-color: #fff6;
}

.om-landing .btn-secondary--light {
  border-color: var(--light-border);
  color: var(--text-secondary);
}

.om-landing .btn-secondary--light:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.om-landing-hero .hero-video {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-card);
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px #00000080, 0 0 0 1px #b4f3720d;
}

.om-landing-hero .hero-video iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.om-landing-hero-scroll {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  letter-spacing: .15em;
  text-transform: uppercase;
  background: #14141499;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.5rem;
  font-size: .7rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s, border-color .2s, transform .2s;
  animation: .8s .4s both om-fade-up, 2.4s ease-in-out 1.2s infinite om-scroll-bounce;
  display: inline-flex;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.om-landing-hero-scroll:hover {
  color: var(--text-on-dark);
  border-color: #b4f37280;
  transform: translateX(-50%)translateY(-2px);
}

.om-landing-hero-scroll-chevron {
  font-family: var(--font-body);
  letter-spacing: 0;
  color: var(--accent-lime);
  font-size: .95rem;
  line-height: 1;
}

@keyframes om-scroll-bounce {
  0%, 100% {
    transform: translateX(-50%)translateY(0);
  }

  50% {
    transform: translateX(-50%)translateY(6px);
  }
}

@media (max-width: 900px) {
  .om-landing-hero-scroll {
    margin: 2rem auto 0;
    animation: .8s .4s both om-fade-up;
    position: static;
    transform: none;
  }

  .om-landing-hero-scroll:hover {
    transform: translateY(-2px);
  }
}

.om-video-overlay-fs {
  z-index: 1000;
  background: #000;
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0;
}

.om-video-overlay-fs iframe {
  background: #000;
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.om-video-overlay-fs:fullscreen {
  background: #000;
  width: 100vw;
  height: 100vh;
}

.om-video-overlay-fs-close {
  z-index: 1;
  color: #fff;
  cursor: pointer;
  background: #0000008c;
  border: 1px solid #ffffff40;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  transition: background .2s, border-color .2s, transform .2s;
  display: inline-flex;
  position: absolute;
  top: 16px;
  right: 16px;
}

.om-video-overlay-fs-close:hover, .om-video-overlay-fs-close:focus-visible {
  border-color: var(--accent-lime);
  background: #000000bf;
  outline: none;
  transform: scale(1.05);
}

.om-landing-section {
  background: var(--light-bg);
  border-top: 1px solid var(--light-border);
  max-width: 100%;
}

.om-landing-section--alt {
  background: var(--light-alt);
}

.om-landing-section--dark {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  border-top: none;
}

.om-landing-section .section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

@media (max-width: 900px) {
  .om-landing-section .section-inner {
    padding: 4rem 1.25rem;
  }
}

@media (max-width: 580px) {
  .om-landing-section .section-inner {
    padding: 3rem 1rem;
  }
}

.om-landing-section h2 {
  letter-spacing: -.02em;
  white-space: pre-line;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
}

.om-landing .om-section-lead {
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.om-carousel-wrap {
  margin-top: 2.5rem;
}

.om-carousel {
  border-radius: var(--radius-card);
  border: 1px solid var(--light-border);
  background: var(--light-alt);
  outline: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px #00000014;
}

.om-carousel:focus-visible {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px #bc9aff40;
}

.om-carousel-stage {
  aspect-ratio: 16 / 10;
  width: 100%;
  position: relative;
}

@media (max-width: 580px) {
  .om-carousel-stage {
    aspect-ratio: 4 / 3;
  }
}

.om-carousel-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s, transform .6s;
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.om-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.om-carousel-slide--link {
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.om-carousel-slide--link:focus-visible {
  outline: 3px solid var(--accent-purple);
  outline-offset: -3px;
}

.om-carousel-play {
  color: #fff;
  pointer-events: none;
  z-index: 1;
  background: #ff0000eb;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  transition: transform .2s, background .2s;
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 30px #00000059;
}

.om-carousel-play svg {
  margin-left: 4px;
}

.om-carousel-slide--link:hover .om-carousel-play {
  background: #dc0000;
  transform: translate(-50%, -50%)scale(1.08);
}

@media (max-width: 580px) {
  .om-carousel-play {
    width: 56px;
    height: 56px;
  }

  .om-carousel-play svg {
    width: 22px;
    height: 22px;
  }
}

.om-carousel-nav {
  width: 44px;
  height: 44px;
  color: var(--text-on-dark);
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  background: #0c0c0c8c;
  border: 1px solid #ffffff2e;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1;
  transition: background .2s, border-color .2s, transform .2s;
  display: inline-flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.om-carousel-nav:hover {
  border-color: var(--accent-lime);
  background: #0c0c0ccc;
  transform: translateY(-50%)scale(1.05);
}

.om-carousel-nav--prev {
  left: 12px;
}

.om-carousel-nav--next {
  right: 12px;
}

.om-carousel-dots {
  -webkit-backdrop-filter: blur(6px);
  background: #0c0c0c8c;
  border-radius: 9999px;
  gap: .5rem;
  padding: .4rem .7rem;
  display: flex;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.om-carousel-dot {
  cursor: pointer;
  background: #fff6;
  border: 0;
  border-radius: 9999px;
  width: 8px;
  height: 8px;
  padding: 0;
  transition: background .2s, transform .2s, width .2s;
}

.om-carousel-dot:hover {
  background: #ffffffb3;
}

.om-carousel-dot.is-active {
  background: var(--accent-lime);
  width: 24px;
}

@media (max-width: 580px) {
  .om-carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .om-carousel-nav--prev {
    left: 8px;
  }

  .om-carousel-nav--next {
    right: 8px;
  }
}

.om-features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  display: grid;
}

@media (max-width: 900px) {
  .om-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .om-features-grid {
    grid-template-columns: 1fr;
  }
}

.om-feature-card {
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  background: var(--light-bg);
  padding: 2rem 1.75rem;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.om-feature-card:hover {
  background: var(--light-alt);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px #00000014;
}

.om-feature-card .feature-icon {
  color: #6a9a30;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.om-feature-card h3 {
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.om-feature-card p {
  color: var(--text-secondary);
  font-size: .85rem;
  line-height: 1.7;
}

.om-stack-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  display: flex;
}

.om-stack-item {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-pill);
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 700;
}

.om-form-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3rem;
  margin-top: 3rem;
  display: grid;
}

@media (max-width: 900px) {
  .om-form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.om-form-success-wrap {
  max-width: 56rem;
  margin: 0 auto;
}

.om-form-card {
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  background: var(--light-bg);
  padding: 2.25rem;
}

.om-form-field {
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.om-form-field label {
  font-family: var(--font-mono);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-size: .7rem;
  font-weight: 600;
}

.om-form-field input, .om-form-field textarea {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  resize: vertical;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}

.om-form-field input:focus, .om-form-field textarea:focus {
  border-color: var(--accent-purple);
  outline: none;
  box-shadow: 0 0 0 3px #bc9aff33;
}

.om-form-field--error input, .om-form-field--error textarea {
  border-color: #dc2626;
}

.om-form-field .field-help {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: .75rem;
}

.om-form-field .field-error {
  font-family: var(--font-body);
  color: #dc2626;
  font-size: .75rem;
}

.om-form-honeypot {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  overflow: hidden;
}

.om-form-consent {
  color: var(--text-secondary);
  align-items: flex-start;
  gap: .65rem;
  margin: 1.25rem 0 1.5rem;
  font-size: .85rem;
  line-height: 1.55;
  display: flex;
}

.om-form-consent input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent-purple);
  flex-shrink: 0;
  margin-top: .15rem;
}

.om-form-alert {
  color: #dc2626;
  border-radius: var(--radius-card);
  background: #dc262614;
  border: 1px solid #dc262666;
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  font-size: .85rem;
}

.om-form-alert--info {
  color: #7b5ec9;
  background: #bc9aff14;
  border-color: #bc9aff66;
}

.om-form-submit {
  width: 100%;
}

.om-success {
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  background: var(--light-bg);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
}

.om-success-flash {
  border-radius: var(--radius-card);
  color: #3d6a17;
  background: #b4f3722e;
  border: 1px solid #6a9a3066;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding: .9rem 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
}

.om-success-flash-check {
  color: #fff;
  background: #6a9a30;
  border-radius: 9999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  font-size: .95rem;
  font-weight: 800;
  display: inline-flex;
}

.om-success:before {
  content: "";
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: var(--gradient);
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.om-success h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.om-success-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  display: grid;
}

@media (max-width: 800px) {
  .om-success-cards {
    grid-template-columns: 1fr;
  }
}

.om-success-card {
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  background: var(--light-alt);
  padding: 1.5rem 1.25rem;
  transition: transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.om-success-card:before {
  content: "";
  background: var(--gradient);
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.om-success-card:hover {
  border-color: #bc9aff80;
  transform: translateY(-3px);
}

.om-success-card h3 {
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 700;
}

.om-success-card p {
  color: var(--text-secondary);
  margin-bottom: .75rem;
  font-size: .8rem;
  line-height: 1.65;
}

.om-success-card a {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-purple);
  font-size: .7rem;
  font-weight: 700;
}

.om-footer {
  background: var(--dark-bg);
  color: var(--text-secondary);
  padding: 4rem 2.5rem 2rem;
}

.om-footer-grid {
  max-width: var(--container);
  border-bottom: 1px solid var(--dark-border);
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin: 0 auto;
  padding-bottom: 3rem;
  display: grid;
}

@media (max-width: 800px) {
  .om-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.om-footer-brand img {
  width: auto;
  height: 22px;
  margin-bottom: 1rem;
}

.om-footer-brand p {
  color: var(--text-secondary);
  max-width: 24rem;
  font-size: .8rem;
  line-height: 1.7;
}

.om-footer h4 {
  font-family: var(--font-mono);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: .7rem;
  font-weight: 400;
}

.om-footer ul {
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.om-footer ul a {
  color: var(--accent-lime);
  font-size: .85rem;
}

.om-footer ul a:hover {
  color: var(--text-on-dark);
}

.om-footer-bottom {
  max-width: var(--container);
  color: var(--text-secondary);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding-top: 1.5rem;
  font-size: .75rem;
  display: flex;
}

.om-footer .lang-switch {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-pill);
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.om-footer .lang-switch button {
  font-family: var(--font-mono);
  letter-spacing: .05em;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 36px;
  padding: .5rem .9rem;
  font-size: .75rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.om-footer .lang-switch button[aria-pressed="true"] {
  background: var(--accent-lime);
  color: var(--dark-bg);
}

.om-footer .lang-switch button:hover:not([aria-pressed="true"]) {
  color: var(--text-on-dark);
}

.om-footer-contact {
  font-size: .85rem;
}

.om-footer-contact a {
  color: var(--accent-lime);
}

@keyframes om-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.om-landing-hero .hero-eyebrow, .om-landing-hero h1, .om-landing-hero .hero-subtitle, .om-landing-hero .hero-bullets, .om-landing-hero .hero-cta-row, .om-landing-hero .hero-meta, .om-landing-hero .hero-video {
  animation: .8s both om-fade-up;
}

.om-landing-hero h1 {
  animation-delay: 50ms;
}

.om-landing-hero .hero-subtitle {
  animation-delay: .12s;
}

.om-landing-hero .hero-bullets {
  animation-delay: .18s;
}

.om-landing-hero .hero-cta-row {
  animation-delay: .24s;
}

.om-landing-hero .hero-meta {
  animation-delay: .3s;
}

.om-landing-hero .hero-video {
  animation-delay: .12s;
}

