:root {
      --bg-void: #0B0E14;
      /* Color matched from user image */
      --bg-surface: #0E1015;
      --accent-optic: #CCFF00;
      --text-hero: #FFFFFF;
      --text-editorial: #717680;
      --font-display: "DM Sans", "Helvetica Now", ui-sans-serif, system-ui, -apple-system, sans-serif;
      --font-body: "DM Sans", "Roboto", ui-sans-serif, system-ui, -apple-system, sans-serif;

      --glow-accent: rgba(204, 255, 0, 0.15);
      --glass-panel: blur(16px);
      --border-soft: rgba(255, 255, 255, 0.05);
      --border-kitchen: rgba(255, 255, 255, 0.08);

      --radius: 12px;
      --content-max: 1200px;
      --gutter: 24px;
    }

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

    body {
      font-family: var(--font-body);
      background: var(--bg-void);
      color: var(--text-hero);
      line-height: 1.6;
      letter-spacing: -0.01em;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      min-height: 100vh;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-display);
      letter-spacing: -0.04em;
      line-height: 0.95;
      color: var(--text-hero);
    }

    p {
      color: var(--text-editorial);
    }

    .container {
      width: 100%;
      max-width: var(--content-max);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    /* Utilities */
    .bg-surface {
      background: var(--bg-surface);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .bg-perforated {
      /* Fallback CSS pattern simulating offset hollow circles */
      background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 20px 20px;
      background-position: 0 0, 10px 10px;
    }

    .kinetic-pop {
      transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    }

    .kinetic-pop:hover {
      transform: scale(1.02);
      box-shadow: 0 0 15px 5px rgba(204, 255, 0, 0.2);
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(11, 14, 20, 0.85);
      /* Matching new bg-void */
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-soft);
    }

    .trial-banner {
      background: linear-gradient(90deg, rgba(204, 255, 0, 0.14), rgba(11, 14, 20, 0.94));
      border-bottom: 1px solid rgba(204, 255, 0, 0.22);
    }

    .trial-banner-row {
      min-height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--text-hero);
      font-size: 13px;
      font-weight: 700;
      text-align: center;
      padding: 6px 0;
    }

    .promo-countdown {
      font-size: 11px;
      font-weight: 400;
      opacity: 0.8;
    }

    .trial-banner-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 20px;
      padding: 0 14px;
      border-radius: 999px;
      background: var(--accent-optic);
      color: #05070a;
      text-decoration: none;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .header-row {
      min-height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand-logo {
      height: 34px;
      display: block;
      filter: brightness(1.2);
    }

    .nav {
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .nav a {
      color: var(--text-editorial);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.2s ease;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--text-hero);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 20px;
      border-radius: 8px;
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      white-space: nowrap;
      cursor: pointer;
    }

    .btn-outline {
      background: transparent;
      color: var(--text-hero);
      border: 1px solid var(--border-kitchen);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .btn-primary {
      background: var(--accent-optic);
      color: #000000;
      border: none;
    }

    /* Hero */
    #hero-cinematic {
      position: relative;
      min-height: 40vh;
      display: flex;
      align-items: flex-start;
      padding: 100px 0 40px;
      overflow: hidden;
      background: var(--bg-void);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .hero-copy h1 {
      font-size: clamp(3.5rem, 5.5vw, 5rem);
      margin-bottom: 24px;
      text-wrap: balance;
    }

    .hero-copy p {
      font-size: clamp(1.1rem, 1.5vw, 1.25rem);
      max-width: 54ch;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .hero-drawing-img {
      position: absolute;
      top: 0;
      right: 0;
      width: 250%;
      max-width: none;
      height: auto;
      display: block;
      transform: translate(60%, -15%);
      pointer-events: none;
    }

    /* Trust Bar */
    #raw-proof {
      padding: 40px 0;
      background: var(--bg-void);
      position: relative;
      z-index: 2;
    }

    .trust-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 60px;
    }

    .trust-logo {
      height: 37px;
      filter: grayscale(100%);
      opacity: 0.45;
      transition: opacity 0.3s ease;
    }

    .trust-logo:hover {
      opacity: 1;
    }

    /* Strategic Value Prop */
    #strategic-value {
      padding: 80px 0;
      background: var(--bg-void);
    }

    .section-header {
      margin-bottom: 60px;
      max-width: 600px;
    }

    .section-header h2 {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      margin-bottom: 16px;
    }

    .section-header p {
      font-size: 1.125rem;
    }

    .grid-12 {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 24px;
    }

    .card {
      border-radius: 16px;
      padding: 40px;
      display: flex;
      flex-direction: column;
    }

    .card h3 {
      font-size: 1.75rem;
      margin-bottom: 16px;
      margin-top: 24px;
    }

    .card p {
      font-size: 1.05rem;
    }

    .col-span-7 {
      grid-column: span 7;
    }

    .col-span-5 {
      grid-column: span 5;
    }

    /* Schematic Animation */
    .schematic-container {
      margin-top: auto;
      padding-top: 40px;
      position: relative;
      height: 300px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logic-grid-animation {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 12px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-kitchen);
      border-radius: var(--radius);
    }

    .logic-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 8px;
      border: 1px solid var(--border-kitchen);
      background: var(--bg-void);
      color: var(--text-editorial);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      transition: all 0.5s ease;
      text-transform: uppercase;
    }

    .logic-node svg {
      opacity: 0.5;
      transition: inherit;
    }

    @keyframes pulse-node-1 {

      0%,
      20% {
        border-color: var(--accent-optic);
        color: var(--accent-optic);
        box-shadow: 0 0 12px var(--glow-accent);
        opacity: 1;
      }

      25%,
      100% {
        border-color: var(--border-kitchen);
        color: var(--text-editorial);
        box-shadow: none;
        opacity: 0.5;
      }
    }

    @keyframes pulse-node-2 {

      0%,
      20% {
        border-color: var(--border-kitchen);
        color: var(--text-editorial);
        box-shadow: none;
        opacity: 0.5;
      }

      25%,
      45% {
        border-color: var(--accent-optic);
        color: var(--accent-optic);
        box-shadow: 0 0 12px var(--glow-accent);
        opacity: 1;
      }

      50%,
      100% {
        border-color: var(--border-kitchen);
        color: var(--text-editorial);
        box-shadow: none;
        opacity: 0.5;
      }
    }

    @keyframes pulse-node-3 {

      0%,
      45% {
        border-color: var(--border-kitchen);
        color: var(--text-editorial);
        box-shadow: none;
        opacity: 0.5;
      }

      50%,
      70% {
        border-color: var(--accent-optic);
        color: var(--accent-optic);
        box-shadow: 0 0 12px var(--glow-accent);
        opacity: 1;
      }

      75%,
      100% {
        border-color: var(--border-kitchen);
        color: var(--text-editorial);
        box-shadow: none;
        opacity: 0.5;
      }
    }

    @keyframes pulse-node-4 {

      0%,
      70% {
        border-color: var(--border-kitchen);
        color: var(--text-editorial);
        box-shadow: none;
        opacity: 0.5;
      }

      75%,
      95% {
        border-color: var(--accent-optic);
        color: var(--accent-optic);
        box-shadow: 0 0 12px var(--glow-accent);
        opacity: 1;
      }

      100% {
        border-color: var(--border-kitchen);
        color: var(--text-editorial);
        box-shadow: none;
        opacity: 0.5;
      }
    }

    .node-rotate {
      animation: pulse-node-1 6s infinite;
    }

    .node-rotate svg {
      animation: pulse-node-1 6s infinite;
    }

    .node-skill {
      animation: pulse-node-2 6s infinite;
    }

    .node-skill svg {
      animation: pulse-node-2 6s infinite;
    }

    .node-winner {
      animation: pulse-node-3 6s infinite;
    }

    .node-winner svg {
      animation: pulse-node-3 6s infinite;
    }

    .node-split {
      animation: pulse-node-4 6s infinite;
    }

    .node-split svg {
      animation: pulse-node-4 6s infinite;
    }

    .stacked-cards {
      display: flex;
      flex-direction: column;
      gap: 24px;
      height: 100%;
    }

    .stacked-cards .card {
      padding: 32px;
      flex: 1;
    }

    .icon-svg {
      width: 32px;
      height: 32px;
      color: var(--text-hero);
    }

    .icon-svg path,
    .icon-svg rect,
    .icon-svg polyline,
    .icon-svg circle,
    .icon-svg line {
      stroke-width: 2.5px;
      /* Thicker, architectural */
    }

    /* Editorial Social Proof */
    #editorial-testimonials {
      padding: 80px 0;
      background: var(--bg-void);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .testimonial-quote {
      font-size: 1.125rem;
      color: var(--text-editorial);
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .testimonial-quote strong {
      color: var(--text-hero);
      font-weight: 600;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.2);
    }

    .author-info h4 {
      font-size: 1rem;
      margin-bottom: 4px;
      color: var(--text-hero);
    }

    .author-info p {
      font-size: 0.875rem;
    }

    /* Conversion Anchor */
    #conversion-anchor {
      padding: 80px 0;
      text-align: center;
      background: var(--bg-void);
    }

    #conversion-anchor h2 {
      font-size: clamp(3.5rem, 5.5vw, 5rem);
      margin-bottom: 48px;
    }

    /* System Footer */
    #system-footer {
      background: var(--bg-void);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 60px 0 30px;
      font-size: 12px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    .footer-col {
      text-align: left;
    }

    .footer-col h4 {
      font-size: 12px;
      color: var(--text-hero);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .footer-col a {
      display: block;
      color: var(--text-editorial);
      text-decoration: none;
      margin-bottom: 12px;
    }

    .footer-col a:hover {
      color: var(--text-hero);
    }

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

    .social-links {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 22px;
    }

    .social-icon {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      margin: 0 !important;
      padding: 0 !important;
      color: var(--text-editorial);
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    .social-icon:hover {
      color: var(--accent-optic);
    }

    .social-icon svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    .footer-bottom {
      border-top: 1px solid var(--border-soft);
      padding-top: 24px;
      color: var(--text-editorial);
      display: flex;
      justify-content: space-between;
    }

    .install-pwa-btn {
      display: none !important;
    }

    /* Responsive */
    @media (max-width: 980px) {
      #hero-cinematic {
        padding-top: 20px;
        padding-bottom: 10px;
      }

      #raw-proof {
        padding: 10px 0;
      }

      .hero-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
      }

      #feature-carousel {
        margin-top: 1rem;
      }

      #strategic-value {
        padding: 40px 0;
      }

      .hero-visual {
        justify-content: center;
        align-items: center;
        overflow: visible;
        margin-top: 0px;
        height: auto;
        width: 100%;
        border-radius: var(--radius);
      }

      .hero-drawing-img {
        position: relative;
        width: 130%;
        max-width: none;
        transform: translate(calc(5% + 15px), 0);
        top: auto;
        right: auto;
        display: block;
      }

      .grid-12 {
        display: flex;
        flex-direction: column;
      }

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

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 32px;
      }

      #system-footer {
        padding: 36px 0 20px;
      }

      .nav {
        display: none;
      }

      .actions .btn-outline {
        font-size: 12px;
        padding: 8px 14px;
      }

      .trial-banner-row {
        min-height: 30px;
        gap: 10px;
        font-size: 11px;
        justify-content: center;
        flex-wrap: nowrap;
      }

      .trial-banner-cta {
        min-height: 22px;
        padding: 0 12px;
        font-size: 10px;
      }

      .install-pwa-btn {
        display: flex !important;
      }

      .mobile-toggle {
        display: inline-flex;
      }
    }

    @media (max-width: 600px) {
      #system-footer {
        padding: 24px 0 16px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
      }

      .footer-col h4 {
        margin-bottom: 12px;
      }

      .footer-col a {
        margin-bottom: 8px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding-top: 16px;
      }

      .social-links {
        gap: 16px;
        margin-top: 16px;
      }

      .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-cta-group .btn {
        width: 100%;
      }

      .carousel-slide {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
      }

      .carousel-video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
      }
    }

    /* Cinematic Slot Headline Animation */
    .hero-headline {
      margin: 0 0 0.5rem 0;
    }

    .animated-text-container {
      display: inline-block;
      position: relative;
      overflow: hidden;
      min-height: 2.9em;
      /* Tightly support 3 lines */
      vertical-align: top;
      width: 100%;
    }

    .text-slide {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      opacity: 0;
      transform: translateY(calc(-50% + 20px));
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .text-slide.current {
      opacity: 1;
      transform: translateY(-50%);
      pointer-events: auto;
    }

    .text-slide.exit {
      opacity: 0;
      transform: translateY(calc(-50% - 20px));
    }

    /* Scroll Reveal Animations */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    .reveal-scale {
      opacity: 0;
      transform: scale(0.85) translateY(30px);
      transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    .delay-100 {
      transition-delay: 0.1s;
    }

    .delay-300 {
      transition-delay: 0.3s;
    }

    .delay-500 {
      transition-delay: 0.5s;
    }

    /* Marquee Styles */
    .marquee-container {
      overflow: hidden;
      width: 100%;
      position: relative;
      padding: 1rem 0;
    }

    .marquee-container::before,
    .marquee-container::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 15%;
      z-index: 2;
      pointer-events: none;
    }

    .marquee-container::before {
      left: 0;
      background: linear-gradient(to right, var(--bg-void), transparent);
    }

    .marquee-container::after {
      right: 0;
      background: linear-gradient(to left, var(--bg-void), transparent);
    }

    .marquee-track {
      display: flex;
      gap: 6rem;
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-50% - 3rem));
      }
    }

    /* Video Carousel Styles */
    #feature-carousel {
      margin-top: 4rem;
    }
    .carousel-wrapper {
      position: relative;
      margin-top: 3rem;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-soft);
      background: var(--bg-surface);
    }

    .carousel-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .carousel-track::-webkit-scrollbar {
      display: none;
    }

    .carousel-slide {
      flex: 0 0 100%;
      scroll-snap-align: center;
      position: relative;
      aspect-ratio: 16/9;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }

    .carousel-slide:hover .carousel-video {
      opacity: 1;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border-soft);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: all 0.2s ease;
    }

    .carousel-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-50%) scale(1.05);
    }

    .carousel-prev {
      left: 1rem;
    }

    .carousel-next {
      right: 1rem;
    }

    /* ─── Pricing Cards ─────────────────────────────────────────────────────── */
    #conversion-anchor h2 {
      text-align: center;
      margin-bottom: 0.5rem;
      font-size: 2.25rem;
      font-weight: 800;
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .pricing-card {
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      padding: 1.5rem;
      background: var(--bg-surface);
      position: relative;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .pricing-card:hover {
      border-color: var(--accent-optic);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(204, 255, 0, 0.08);
    }

    .pricing-card.featured {
      border-color: var(--accent-optic);
      box-shadow: 0 4px 20px rgba(204, 255, 0, 0.12);
      transform: scale(1.02);
    }

    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 20px;
      background: var(--accent-optic);
      color: #05070a;
      padding: 2px 9px;
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pricing-header {
      margin-bottom: 1rem;
    }

    .pricing-header h3 {
      font-size: 1.3rem;
      margin-bottom: 0.25rem;
    }

    .pricing-desc {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .pricing-amount {
      display: flex;
      align-items: baseline;
      gap: 0.4rem;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border-soft);
    }

    .currency {
      font-size: 2.2rem;
      font-weight: 800;
    }

    .period {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.25rem;
      flex-grow: 1;
    }

    .pricing-features li {
      padding: 0.45rem 0;
      border-bottom: 1px solid var(--border-soft);
      color: var(--text-secondary);
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .pricing-features li:before {
      content: '✓';
      color: var(--accent-optic);
      font-weight: 800;
      flex-shrink: 0;
      font-size: 0.85rem;
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .pricing-features li.feat-locked {
      opacity: 0.35;
    }

    .pricing-features li.feat-locked:before {
      content: '-';
      color: var(--text-secondary);
    }

    .pricing-note {
      text-align: center;
      color: var(--text-secondary);
      font-size: 0.85rem;
      margin-top: 1.5rem;
    }

    /* ─── Review Carousel ─────────────────────────────────────────────────────── */
    .auth-testimonial-carousel {
      display: flex;
      gap: 1rem;
      max-height: 280px;
      margin-bottom: 1.5rem;
    }

    .auth-testimonial-carousel .auth-testimonial-card {
      flex: 1;
      min-height: 240px;
    }

    @media (max-width: 768px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .pricing-card.featured {
        transform: scale(1);
      }

      #conversion-anchor h2 {
        font-size: 1.75rem;
      }

      .auth-testimonial-carousel {
        flex-direction: column;
        max-height: none;
      }

      .auth-testimonial-carousel .auth-testimonial-card {
        min-height: auto;
      }
    }

/* ── Contact Page ────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.contact-card {
  position: relative;
  background: var(--bg-surface, #0e1015);
  border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}

.contact-card:hover {
  border-color: rgba(214,254,81,0.3);
  transform: translateY(-2px);
}

.contact-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d6fe51 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s;
}

.contact-card:hover .contact-card-accent { opacity: 1; }

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(214,254,81,0.1);
  border: 1px solid rgba(214,254,81,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6fe51;
  flex-shrink: 0;
}

.contact-content { display: flex; flex-direction: column; gap: 6px; }

.contact-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d6fe51;
}

.contact-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.contact-content p {
  font-size: 0.88rem;
  color: var(--text-editorial, #717680);
  margin: 0;
  line-height: 1.5;
}

.contact-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d6fe51;
  text-decoration: none;
  transition: opacity 0.15s;
}

.contact-cta:hover { opacity: 0.75; }

/* FAQ */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.faq-header p {
  color: var(--text-editorial, #717680);
  font-size: 0.95rem;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-surface, #0e1015);
  border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  list-style: none;
  user-select: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  background: #d6fe51;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.faq-plus::before { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq-plus::after  { width: 14px; height: 2px; top: 9px; left: 3px; }

.faq-item[open] .faq-plus::before { transform: rotate(90deg); opacity: 0; }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-editorial, #717680);
  line-height: 1.6;
  margin: 0;
}

.logic-details {
  flex: 1;
}

.logic-details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logic-details summary::-webkit-details-marker {
  display: none;
}

.logic-details summary::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 8px;
  opacity: 0.6;
}

.logic-details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

/* ── Marketing Pop-up Modal ────────────────────────────────────────────────── */
.marketing-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 10, 0.85); /* Dark tint overlay */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: var(--gutter);
}

.marketing-modal-overlay.show {
  opacity: 1;
}

.marketing-modal-container {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid rgba(204, 255, 0, 0.2); /* Subtle optic-yellow border glow */
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 40px rgba(204, 255, 0, 0.05);
  border-radius: 20px;
  width: 100%;
  max-width: 820px;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
}

.marketing-modal-overlay.show .marketing-modal-container {
  transform: translateY(0) scale(1);
}

.marketing-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  color: var(--text-hero);
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.marketing-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-optic);
  border-color: rgba(204, 255, 0, 0.3);
  transform: scale(1.05);
}

.marketing-modal-content {
  display: flex;
  width: 100%;
}

.marketing-modal-left {
  flex: 1.1;
  position: relative;
  overflow: hidden;
  background: #0b0e14; /* Match void dark color */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-right: 1px solid var(--border-soft);
}

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

.marketing-modal-img.logo-mode {
  width: 90%;
  height: auto;
  max-height: 80%;
  object-fit: contain;
}

.marketing-modal-right {
  flex: 1.2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.marketing-modal-badge {
  align-self: flex-start;
  background: rgba(204, 255, 0, 0.1);
  color: var(--accent-optic);
  border: 1px solid rgba(204, 255, 0, 0.3);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.marketing-modal-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-hero);
}

.marketing-modal-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-editorial);
  margin-bottom: 24px;
}

.marketing-modal-description strong {
  color: var(--text-hero);
  font-weight: 600;
}

.marketing-modal-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.marketing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-editorial);
}

.marketing-feature-icon {
  color: var(--accent-optic);
  font-weight: 800;
}

.marketing-modal-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 15px;
  padding: 14px 24px;
  min-height: 48px;
  box-shadow: 0 4px 14px rgba(204, 255, 0, 0.2);
}

.marketing-modal-cta:hover {
  box-shadow: 0 6px 20px rgba(204, 255, 0, 0.4);
}

/* Responsive Modal styling */
@media (max-width: 768px) {
  .marketing-modal-overlay {
    padding: 16px;
  }
  
  .marketing-modal-container {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .marketing-modal-content {
    flex-direction: column;
  }
  
  .marketing-modal-left {
    height: 200px;
    flex: none;
  }
  
  .marketing-modal-right {
    padding: 24px;
    flex: none;
  }
  
  .marketing-modal-title {
    font-size: 1.8rem;
  }
  
  .marketing-modal-description {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .marketing-modal-features {
    margin-bottom: 20px;
  }
}
