
    :root {
      --dwolla-purple: #292948;
      --dwolla-purple-deep: #1e1e3a;
      --dwolla-gray: #64748B;
      --dwolla-pink: #BB546E;
      --dwolla-orange: #BF582F;
      --dwolla-gradient-start: #BE5928;
      --dwolla-gradient-end: #B45277;
      --dwolla-teal: #2D8283;
      --dwolla-amber: #D4802A;
      --dwolla-deep-orange: #C7492C;
      --dwolla-link: #C7492C;
      --light-bg: #F7F9FC;
      --card-bg: rgba(255,255,255,0.6);
      --glass-border: rgba(255,255,255,0.18);
      --glass-bg: rgba(255,255,255,0.07);
      --glass-border-dark: rgba(255,255,255,0.08);
      --shadow-sm: 0 2px 8px rgba(41,41,72,0.06);
      --shadow-md: 0 8px 32px rgba(41,41,72,0.08);
      --shadow-lg: 0 20px 60px rgba(41,41,72,0.1);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
    }

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

    body {
      font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--dwolla-purple);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ===== ANNOUNCEMENT BAR ===== */
    .announcement-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 48px;
      background: linear-gradient(135deg, #292948 0%, #3d2a4a 50%, #292948 100%);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.01em;
      position: relative;
      z-index: 101;
      min-height: 40px;
      line-height: 1.4;
    }

    .announcement-bar a {
      color: #fff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .announcement-bar a:hover {
      text-decoration: underline;
    }

    .announcement-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--dwolla-gradient-start), var(--dwolla-gradient-end));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
      margin-right: 4px;
      flex-shrink: 0;
    }

    .announcement-arrow {
      display: inline-flex;
      transition: transform 0.2s;
    }

    .announcement-bar a:hover .announcement-arrow {
      transform: translateX(3px);
    }

    .announcement-dismiss {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255,255,255,0.5);
      cursor: pointer;
      padding: 4px;
      line-height: 1;
      font-size: 18px;
      border-radius: 4px;
      transition: color 0.15s, background 0.15s;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
    }

    .announcement-dismiss:hover {
      color: rgba(255,255,255,0.9);
      background: rgba(255,255,255,0.1);
    }

    .announcement-dismiss:focus-visible {
      outline: 2px solid rgba(255,255,255,0.8);
      outline-offset: 2px;
    }

    .announcement-bar {
      /* Start hidden to prevent flash; JS shows it if not dismissed */
      display: none;
    }

    .announcement-bar.visible {
      display: flex;
    }

    .announcement-bar.dismissed {
      display: none !important;
    }

    @media (max-width: 768px) {
      .announcement-bar {
        padding: 10px 44px 10px 16px;
        font-size: 13px;
        gap: 6px;
      }
      .announcement-badge {
        font-size: 10px;
        padding: 2px 8px;
      }
      .announcement-dismiss {
        right: 10px;
      }
    }

    @media (max-width: 480px) {
      .announcement-bar {
        font-size: 12px;
        padding: 8px 40px 8px 12px;
      }
      .announcement-badge {
        display: none;
      }
    }

    /* ===== NAVIGATION (with mega dropdowns) ===== */
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 72px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(131,147,170,0.1);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--dwolla-purple);
    }

    .nav-logo svg { height: 28px; width: auto; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-links > li {
      position: relative;
    }

    .nav-links > li > a,
    .nav-links > li > .nav-trigger {
      text-decoration: none;
      color: var(--dwolla-gray);
      font-size: 14px;
      font-weight: 500;
      transition: color 0.15s;
      letter-spacing: 0.01em;
      padding: 8px 16px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      font-family: inherit;
    }

    .nav-links > li > a:hover,
    .nav-links > li > .nav-trigger:hover,
    .nav-links > li:hover > .nav-trigger {
      color: var(--dwolla-purple);
      background: rgba(41,41,72,0.04);
    }

    .nav-trigger .chevron {
      width: 10px;
      height: 10px;
      transition: transform 0.2s;
    }

    .nav-links > li:hover .chevron {
      transform: rotate(180deg);
    }

    /* Mega dropdown panel */
    .mega-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(41,41,72,0.12), 0 0 0 1px rgba(41,41,72,0.06);
      padding: 28px 32px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
      transform: translateX(-50%) translateY(8px);
      z-index: 200;
    }

    .nav-links > li:hover .mega-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    /* Bridge element to prevent hover gap */
    .mega-dropdown::before {
      content: '';
      position: absolute;
      top: -16px;
      left: 0;
      right: 0;
      height: 16px;
    }

    .mega-dropdown.wide { min-width: 680px; }
    .mega-dropdown.medium { min-width: 480px; }
    .mega-dropdown.narrow { min-width: 280px; }

    .mega-columns {
      display: flex;
      gap: 32px;
    }

    .mega-col {
      min-width: 180px;
    }

    .mega-col-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--dwolla-gray);
      margin-bottom: 12px;
      padding: 0 12px;
    }

    .mega-col a {
      display: block;
      padding: 8px 12px;
      text-decoration: none;
      color: var(--dwolla-purple);
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .mega-col a:hover {
      background: var(--light-bg);
      color: var(--dwolla-deep-orange);
    }

    .mega-col a .mega-desc {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: var(--dwolla-gray);
      margin-top: 2px;
      white-space: normal;
    }

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

/* Nav login styles moved to accessibility section */

    /* ===== BUTTONS (refined, Stripe-style) ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--dwolla-purple);
      color: #fff;
      padding: 14px 28px;
      border-radius: var(--radius-xl);
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      letter-spacing: 0.01em;
    }

    .btn-primary:hover {
      background: var(--dwolla-purple-deep);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(41,41,72,0.2);
    }

    .btn-primary .arrow {
      transition: transform 0.2s;
      font-size: 16px;
    }

    .btn-primary:hover .arrow { transform: translateX(3px); }

    .btn-gradient {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--dwolla-gradient-start), var(--dwolla-gradient-end));
      color: #fff;
      padding: 16px 32px;
      border-radius: var(--radius-xl);
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
    }

    .btn-gradient:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(233,132,83,0.3);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--dwolla-purple);
      padding: 14px 28px;
      border-radius: var(--radius-xl);
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      border: 1.5px solid rgba(41,41,72,0.15);
      transition: all 0.2s;
    }

    .btn-ghost:hover {
      border-color: var(--dwolla-purple);
      background: rgba(41,41,72,0.03);
    }

    .btn-ghost-light {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.9);
      padding: 16px 32px;
      border-radius: var(--radius-xl);
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;
      border: 1.5px solid rgba(255,255,255,0.15);
      transition: all 0.2s;
    }

    .btn-ghost-light:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.3);
    }


    /* ===== HERO: Full-width centered, gradient-forward ===== */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 48px 120px;
      overflow: hidden;
      text-align: center;
    }

    /* Animated mesh gradient background — the hero visual IS the gradient */
    .hero-gradient-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    /* Layer 1: Large warm gradient blobs with breathing */
    .hero-gradient-bg::before {
      content: '';
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(ellipse 50% 50% at 25% 35%, rgba(233,132,83,0.32) 0%, transparent 60%),
        radial-gradient(ellipse 45% 55% at 75% 30%, rgba(180,82,119,0.26) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 50% 75%, rgba(79,164,166,0.16) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 15% 65%, rgba(247,157,82,0.14) 0%, transparent 50%);
      animation: gradientShift 14s ease-in-out infinite alternate, gradientBreathe 8s ease-in-out infinite;
    }

    /* Layer 2: Deeper accent blobs that move counter to layer 1 */
    .hero-gradient-bg::after {
      content: '';
      position: absolute;
      inset: -15%;
      background:
        radial-gradient(ellipse 40% 50% at 65% 60%, rgba(190,87,113,0.2) 0%, transparent 55%),
        radial-gradient(ellipse 55% 35% at 35% 25%, rgba(233,132,83,0.16) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 80% 70%, rgba(79,164,166,0.1) 0%, transparent 50%);
      animation: gradientShift2 18s ease-in-out infinite alternate, gradientBreathe2 10s ease-in-out infinite;
    }

    /* Layer 3: Extra animated orb for depth (uses a pseudo on the hero itself) */
    .hero-glow-orb {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(233,132,83,0.18) 0%, rgba(180,82,119,0.08) 50%, transparent 70%);
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
      animation: orbDrift 20s ease-in-out infinite, orbBreathe 6s ease-in-out infinite;
      pointer-events: none;
    }

    .hero-glow-orb-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(79,164,166,0.12) 0%, rgba(79,164,166,0.05) 50%, transparent 70%);
      top: 55%;
      left: 35%;
      transform: translate(-50%, -50%);
      z-index: 0;
      animation: orbDrift2 16s ease-in-out infinite, orbBreathe 8s ease-in-out infinite 2s;
      pointer-events: none;
    }

    @keyframes gradientShift {
      0% { transform: translate(0, 0) scale(1) rotate(0deg); }
      33% { transform: translate(40px, -30px) scale(1.06) rotate(1deg); }
      66% { transform: translate(-30px, 20px) scale(1.03) rotate(-0.5deg); }
      100% { transform: translate(20px, -15px) scale(1.04) rotate(0.5deg); }
    }

    @keyframes gradientShift2 {
      0% { transform: translate(0, 0) scale(1.02) rotate(0deg); }
      33% { transform: translate(-35px, 25px) scale(1) rotate(-1deg); }
      66% { transform: translate(25px, -20px) scale(1.05) rotate(0.5deg); }
      100% { transform: translate(-15px, 10px) scale(1.03) rotate(-0.5deg); }
    }

    @keyframes orbDrift {
      0%, 100% { transform: translate(-50%, -50%) scale(1); }
      25% { transform: translate(-45%, -55%) scale(1.08); }
      50% { transform: translate(-55%, -48%) scale(0.95); }
      75% { transform: translate(-48%, -52%) scale(1.04); }
    }

    @keyframes orbDrift2 {
      0%, 100% { transform: translate(-50%, -50%) scale(1); }
      33% { transform: translate(-55%, -45%) scale(1.1); }
      66% { transform: translate(-45%, -55%) scale(0.92); }
    }

    /* Breathing: subtle opacity pulse that makes the gradient feel alive */
    @keyframes gradientBreathe {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    @keyframes gradientBreathe2 {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }

    @keyframes orbBreathe {
      0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.15); }
    }

    /* Subtle noise texture overlay */
    .hero-noise {
      position: absolute;
      inset: 0;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 128px;
      z-index: 1;
      pointer-events: none;
    }

    /* Centered single-column layout */
    .hero-inner {
      max-width: 800px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--dwolla-amber);
      margin-bottom: 28px;
      padding: 6px 16px 6px 12px;
      background: rgba(212,128,42,0.12);
      border: 1px solid rgba(212,128,42,0.18);
      border-radius: var(--radius-xl);
    }

    .hero-label-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--dwolla-amber);
      animation: labelPulse 2s ease-in-out infinite;
    }

    @keyframes labelPulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 68px;
      font-weight: 600;
      line-height: 1.06;
      margin-bottom: 28px;
      letter-spacing: -2px;
      color: #fff;
      max-width: 780px;
    }

    .hero h1 .gradient-text {
      background: linear-gradient(135deg, var(--dwolla-gradient-start), var(--dwolla-gradient-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 21px;
      line-height: 1.7;
      color: rgba(255,255,255,0.55);
      margin-bottom: 44px;
      max-width: 600px;
      font-weight: 300;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero .btn-gradient .arrow {
      transition: transform 0.2s;
    }

    .hero .btn-gradient:hover .arrow {
      transform: translateX(3px);
    }


    /* ===== SECTION UTILITY ===== */
    section { padding: 120px 48px; }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--dwolla-deep-orange);
      margin-bottom: 16px;
    }

    .section-headline {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 600;
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: -0.8px;
      color: var(--dwolla-purple);
    }

    .section-sub {
      font-size: 20px;
      color: var(--dwolla-gray);
      max-width: 600px;
      line-height: 1.65;
      font-weight: 300;
    }

    .bg-light { background: var(--light-bg); }

    .bg-dark {
      background: var(--dwolla-purple);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .bg-dark .section-label { color: var(--dwolla-orange); }
    .bg-dark .section-headline { color: #fff; }
    .bg-dark .section-sub { color: rgba(255,255,255,0.55); }

    /* Ambient glow for dark sections (Stripe-style) */
    .ambient-glow {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }

    .ambient-glow.orange {
      background: rgba(233,132,83,0.08);
    }

    .ambient-glow.pink {
      background: rgba(190,87,113,0.06);
    }

    .ambient-glow.teal {
      background: rgba(79,164,166,0.05);
    }


    /* ===== LOGOS BAR (Stripe-style: muted, clean row) ===== */
    /* Hero-proof wrapper: continuous gradient from hero through logos+stats */
    .hero-proof-wrapper {
      position: relative;
      background: var(--dwolla-purple);
      overflow: hidden;
    }

    .hero-proof-wrapper .hero-gradient-bg,
    .hero-proof-wrapper .hero-glow-orb,
    .hero-proof-wrapper .hero-glow-orb-2,
    .hero-proof-wrapper .hero-noise {
      /* These extend through the entire wrapper now */
    }

    .proof-section {
      padding: 0 48px 64px;
      position: relative;
      z-index: 1;
    }

    .proof-inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    /* CTA-footer wrapper: gradient picks back up at bottom */
    .cta-footer-wrapper {
      background: linear-gradient(180deg, var(--dwolla-purple) 0%, var(--dwolla-purple-deep) 60%);
      position: relative;
      overflow: hidden;
    }

    .cta-footer-wrapper .final-cta {
      background: none;
    }

    .cta-footer-wrapper .footer {
      background: none;
    }

    .logos-label {
      font-size: 16px;
      color: rgba(255,255,255,0.45);
      font-weight: 400;
      margin-bottom: 32px;
      letter-spacing: 0.03em;
    }

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

    .logo-img {
      height: 100px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      opacity: 0.6;
      filter: brightness(0) invert(1);
      transition: opacity 0.2s;
    }

    .logo-img:hover {
      opacity: 0.9;
    }

    .proof-divider {
      width: 80px;
      height: 1px;
      background: rgba(255,255,255,0.12);
      margin: 48px auto;
    }


    /* ===== VALUE PROPS (Stripe-style cards with subtle left border accent) ===== */
    .value-props-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .value-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(41,41,72,0.05);
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }

    .value-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      border-radius: 3px 0 0 3px;
      opacity: 0;
      transition: opacity 0.25s;
    }

    .value-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

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

    .value-card:nth-child(1)::before { background: var(--dwolla-orange); }
    .value-card:nth-child(2)::before { background: var(--dwolla-teal); }
    .value-card:nth-child(3)::before { background: var(--dwolla-purple); }
    .value-card:nth-child(4)::before { background: var(--dwolla-pink); }

    .value-card-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 16px;
    }

    .value-card-icon.orange { background: rgba(233,132,83,0.08); color: var(--dwolla-orange); }
    .value-card-icon.teal { background: rgba(79,164,166,0.08); color: var(--dwolla-teal); }
    .value-card-icon.purple { background: rgba(41,41,72,0.06); color: var(--dwolla-purple); }
    .value-card-icon.pink { background: rgba(190,87,113,0.08); color: var(--dwolla-pink); }

    .value-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.3;
      letter-spacing: -0.2px;
    }

    .value-card p {
      font-size: 16px;
      color: var(--dwolla-gray);
      line-height: 1.65;
      font-weight: 400;
    }


    /* ===== HOW IT WORKS (Stripe-style: clean steps with connecting line) ===== */
    .how-it-works {
      margin-top: 64px;
      position: relative;
    }

    .flow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    /* Connecting line */
    .flow-steps::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg,
        var(--dwolla-orange),
        var(--dwolla-gradient-end),
        var(--dwolla-teal));
      opacity: 0.25;
    }

    .flow-step {
      text-align: center;
      position: relative;
      padding: 0 20px;
    }

    .flow-num {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .flow-num.n1 { background: var(--dwolla-orange); box-shadow: 0 4px 16px rgba(233,132,83,0.25); }
    .flow-num.n2 { background: linear-gradient(135deg, var(--dwolla-gradient-start), var(--dwolla-gradient-end)); box-shadow: 0 4px 16px rgba(233,132,83,0.2); }
    .flow-num.n3 { background: var(--dwolla-pink); box-shadow: 0 4px 16px rgba(190,87,113,0.2); }
    .flow-num.n4 { background: var(--dwolla-teal); box-shadow: 0 4px 16px rgba(79,164,166,0.2); }

    .flow-step h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing: -0.1px;
    }

    .flow-step p {
      font-size: 16px;
      color: var(--dwolla-gray);
      line-height: 1.6;
      font-weight: 400;
    }


    /* ===== INDUSTRY CARDS (Stripe-style glass cards on dark bg) ===== */
    .industry-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 56px;
      position: relative;
      z-index: 1;
    }

    .industry-card {
      border-radius: var(--radius-md);
      padding: 32px 24px;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: all 0.25s;
    }

    .industry-card:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.12);
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    }

    .industry-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: var(--radius-xl);
      margin-bottom: 20px;
    }

    .industry-tag.re { background: rgba(79,164,166,0.15); color: var(--dwolla-teal); }
    .industry-tag.fintech { background: rgba(233,132,83,0.15); color: var(--dwolla-orange); }
    .industry-tag.b2b { background: rgba(190,87,113,0.15); color: var(--dwolla-pink); }

    .industry-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #fff;
      line-height: 1.3;
      letter-spacing: -0.2px;
    }

    .industry-card p {
      font-size: 16px;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
      margin-bottom: 24px;
      font-weight: 400;
    }

    .industry-card a {
      color: var(--dwolla-orange);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: all 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .industry-card a:hover { color: var(--dwolla-amber); gap: 10px; }


    /* ===== STATS STRIP (Stripe-style: subtle, integrated) ===== */
    .stats-strip {
      padding: 0;
    }

    .stats-grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      position: relative;
      z-index: 1;
    }

    .stat-item { text-align: center; }

    .stat-number {
      font-family: 'Poppins', sans-serif;
      font-size: 40px;
      font-weight: 600;
      background: linear-gradient(135deg, var(--dwolla-gradient-start), var(--dwolla-gradient-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      letter-spacing: -1px;
    }

    .stat-label {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      margin-top: 8px;
      font-weight: 400;
    }


    /* ===== CUSTOMER STORIES (clean, tagged cards) ===== */
    .stories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .story-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 28px 24px;
      border: 1px solid rgba(41,41,72,0.06);
      transition: all 0.25s;
      box-shadow: var(--shadow-sm);
    }

    .story-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .story-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: var(--radius-xl);
      margin-bottom: 20px;
    }

    .story-tag.re { background: rgba(79,164,166,0.1); color: var(--dwolla-teal); }
    .story-tag.fintech { background: rgba(233,132,83,0.1); color: var(--dwolla-deep-orange); }
    .story-tag.b2b { background: rgba(190,87,113,0.08); color: var(--dwolla-pink); }

    .story-metric {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--dwolla-purple);
      line-height: 1;
      margin-bottom: 12px;
      letter-spacing: -1px;
    }

    .story-desc {
      font-size: 16px;
      color: var(--dwolla-gray);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .story-card a {
      color: var(--dwolla-link);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.15s;
    }

    .story-card a:hover { gap: 10px; }


    /* ===== TESTIMONIAL (Stripe-style: large, centered, minimal) ===== */
    .testimonial-section {
      padding: 100px 48px;
      background: var(--light-bg);
    }

    .testimonial-hero {
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }

    .quote-mark {
      font-size: 56px;
      line-height: 1;
      background: linear-gradient(135deg, var(--dwolla-gradient-start), var(--dwolla-gradient-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-family: Georgia, serif;
      margin-bottom: 16px;
    }

    .testimonial-quote {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--dwolla-purple);
      margin-bottom: 24px;
      letter-spacing: -0.3px;
    }

    .testimonial-attr {
      font-size: 16px;
      color: var(--dwolla-gray);
    }

    .testimonial-attr strong {
      color: var(--dwolla-purple);
      font-weight: 500;
    }

    .more-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 32px;
      color: var(--dwolla-link);
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: gap 0.15s;
    }

    .more-link:hover { gap: 10px; }


    /* ===== DEVELOPER SECTION ===== */
    .dev-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      margin-top: 56px;
      align-items: center;
    }

    .dev-content h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .dev-content p {
      font-size: 16px;
      color: var(--dwolla-gray);
      line-height: 1.65;
      margin-bottom: 28px;
      font-weight: 400;
    }

    .dev-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Code block (Stripe-style: dark, clean, syntax highlighting) */
    .code-panel {
      background: var(--dwolla-purple-deep);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,0.05);
    }

    .code-header {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .code-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .code-dot.r { background: #ff5f57; }
    .code-dot.y { background: #febc2e; }
    .code-dot.g { background: #28c840; }

    .code-tab {
      margin-left: 12px;
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
      padding: 4px 10px;
      background: rgba(255,255,255,0.05);
      border-radius: 6px;
    }

    .code-body {
      padding: 20px;
      font-family: 'Roboto Mono', monospace;
      font-size: 12.5px;
      line-height: 1.9;
      color: rgba(255,255,255,0.7);
      overflow-x: auto;
    }

    .c-comment { color: rgba(131,147,170,0.5); }
    .c-key { color: var(--dwolla-teal); }
    .c-string { color: var(--dwolla-orange); }
    .c-method { color: var(--dwolla-pink); font-weight: 500; }
    .c-punct { color: rgba(255,255,255,0.5); }


    /* ===== FINAL CTA (Stripe-style: dark with ambient glow) ===== */
    .final-cta {
      background: var(--dwolla-purple);
      color: #fff;
      text-align: center;
      padding: 120px 48px;
      position: relative;
      overflow: hidden;
    }

    .final-cta .section-inner { position: relative; z-index: 2; }

    .final-cta .section-headline {
      color: #fff;
      max-width: 520px;
      margin: 0 auto 16px;
      font-size: 38px;
    }

    .final-cta .section-sub {
      color: rgba(255,255,255,0.55);
      margin: 0 auto 40px;
      text-align: center;
    }


    /* ===== FOOTER (clean, minimal) ===== */
    .footer {
      background: var(--dwolla-purple-deep);
      color: rgba(255,255,255,0.5);
      padding: 64px 48px 32px;
    }

    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(5, 1fr);
      gap: 32px;
      margin-bottom: 32px;
    }

    .footer-brand p {
      font-size: 16px;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
      color: rgba(255,255,255,0.5);
    }

    .footer-col h4 {
      color: rgba(255,255,255,0.8);
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 16px;
      margin-bottom: 10px;
      transition: color 0.15s;
    }

    .footer-col a:hover { color: rgba(255,255,255,0.8); }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }

    .footer-legal a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      margin-left: 20px;
      transition: color 0.15s;
    }

    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    .footer-social {
      display: flex;
      gap: 16px;
      margin-top: 20px;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.5);
      transition: background 0.15s, color 0.15s;
    }

    .footer-social a:hover {
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.9);
    }

    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }

    .footer-disclaimer {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 0 0;
      margin-bottom: 24px;
      font-size: 11px;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
    }

    .footer-disclaimer a {
      color: rgba(255,255,255,0.5);
      text-decoration: underline;
      transition: color 0.15s;
    }

    .footer-disclaimer a:hover { color: rgba(255,255,255,0.6); }


    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero h1 { font-size: 48px; letter-spacing: -1.2px; }
      .hero { min-height: auto; padding: 80px 48px; }
      .value-props-grid { grid-template-columns: 1fr; }
      .industry-cards { grid-template-columns: 1fr; }
      .stories-grid { grid-template-columns: 1fr; }
      .dev-grid { grid-template-columns: 1fr; }
      .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .flow-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .float-card { display: none; }
    }

/* Mobile styles moved to consolidated responsive section */

    /* ===== SKIP LINK (WCAG 2.2) ===== */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      background: var(--dwolla-purple);
      color: #fff;
      padding: 12px 24px;
      border-radius: 0 0 8px 8px;
      font-size: 14px;
      font-weight: 600;
      z-index: 10000;
      text-decoration: none;
      transition: top 0.2s;
    }
    .skip-link:focus {
      top: 0;
      outline: 3px solid var(--dwolla-amber);
      outline-offset: 2px;
    }

    /* ===== FOCUS STYLES (WCAG 2.2 AA) ===== */
    *:focus-visible {
      outline: 3px solid var(--dwolla-amber);
      outline-offset: 2px;
    }
    a:focus-visible, button:focus-visible {
      outline: 3px solid var(--dwolla-amber);
      outline-offset: 2px;
    }
    /* Remove default focus for mouse users */
    *:focus:not(:focus-visible) {
      outline: none;
    }

    /* ===== LOG IN LINK - improved visibility ===== */
    .nav-login {
      text-decoration: none;
      color: var(--dwolla-purple);
      font-size: 15px;
      font-weight: 600;
      transition: color 0.15s;
      padding: 8px 16px;
      border-radius: 8px;
      border: 1.5px solid rgba(41,41,72,0.15);
    }
    .nav-login:hover {
      color: var(--dwolla-deep-orange);
      border-color: var(--dwolla-deep-orange);
      background: rgba(202,76,47,0.04);
    }

    /* ===== HAMBURGER BUTTON ===== */
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      z-index: 1001;
      position: relative;
    }
    .nav-hamburger:hover {
      background: rgba(41,41,72,0.04);
    }
    .hamburger-line {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dwolla-purple);
      border-radius: 2px;
      transition: all 0.3s ease;
      margin: 5px 0;
    }
    .nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
      opacity: 0;
    }
    .nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ===== MOBILE DRAWER ===== */
    .mobile-drawer {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fff;
      z-index: 999;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 24px;
      transform: translateX(100%);
      transition: transform 0.3s ease;
    }
    .mobile-drawer.open {
      transform: translateX(0);
    }
    .mobile-drawer-overlay {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(41,41,72,0.3);
      z-index: 998;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .mobile-drawer-overlay.open {
      opacity: 1;
    }

    /* Mobile nav items */
    .mobile-nav-section {
      border-bottom: 1px solid rgba(41,41,72,0.08);
      padding: 0;
    }
    .mobile-nav-section:last-child {
      border-bottom: none;
    }
    .mobile-nav-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 16px 0;
      background: none;
      border: none;
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--dwolla-purple);
      cursor: pointer;
      text-align: left;
    }
    .mobile-nav-trigger svg {
      width: 12px;
      height: 12px;
      transition: transform 0.2s;
      color: var(--dwolla-gray);
      flex-shrink: 0;
    }
    .mobile-nav-trigger[aria-expanded="true"] svg {
      transform: rotate(180deg);
    }
    .mobile-nav-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .mobile-nav-panel.open {
      max-height: 600px;
    }
    .mobile-nav-group-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--dwolla-gray);
      padding: 12px 0 6px;
    }
    .mobile-nav-panel a {
      display: block;
      padding: 10px 0;
      text-decoration: none;
      color: var(--dwolla-purple);
      font-size: 15px;
      font-weight: 500;
      transition: color 0.15s;
    }
    .mobile-nav-panel a:hover,
    .mobile-nav-panel a:focus-visible {
      color: var(--dwolla-deep-orange);
    }
    .mobile-nav-direct a {
      display: block;
      padding: 16px 0;
      text-decoration: none;
      color: var(--dwolla-purple);
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 600;
      border-bottom: 1px solid rgba(41,41,72,0.08);
    }
    .mobile-nav-actions {
      padding: 24px 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .mobile-nav-actions .btn-primary {
      text-align: center;
      justify-content: center;
      width: 100%;
    }
    .mobile-nav-actions .nav-login {
      text-align: center;
      display: block;
      padding: 14px 28px;
    }

    /* ===== ACCESSIBILITY: Reduced motion ===== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .hero-gradient-bg, .hero-glow-orb, .hero-glow-orb-2,
      .interior-hero::before {
        animation: none !important;
      }
    }

    /* ===== ACCESSIBILITY: High contrast mode ===== */
    @media (forced-colors: active) {
      .btn-primary, .hero-cta, .cta-btn {
        border: 2px solid ButtonText;
      }
      .value-card, .step {
        border: 1px solid ButtonText;
      }
    }

    /* ===== MOBILE RESPONSIVE OVERRIDES ===== */
    @media (max-width: 1024px) {
      .nav-hamburger { display: block; }
      .nav-links { display: none !important; }
      .mobile-drawer { display: block; }
      .mobile-drawer-overlay { display: block; }
      .nav-actions { display: none !important; }
      .nav {
        padding: 0 20px;
      }
      .mega-dropdown { display: none !important; }
    }

    @media (max-width: 768px) {
      section { padding: 60px 20px; }
      .nav { padding: 0 16px; height: 64px; }
      .nav-logo svg { height: 24px; }
      .hero { padding: 40px 20px 60px; }
      .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
      .hero p { font-size: 16px; }
      .section-headline { font-size: 26px; }
      .section-sub { font-size: 16px; }
      .value-props-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .stat-number { font-size: 28px; }
      .flow-steps { grid-template-columns: 1fr; }
      .flow-steps::before { display: none; }
      .testimonial-quote { font-size: 18px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .logos-row { gap: 24px; flex-wrap: wrap; justify-content: center; }
      .logo-img { height: 40px; }
      .proof-section { padding: 48px 24px 40px; }
      .proof-divider { margin: 32px auto; }
      .btn-primary { padding: 12px 24px; font-size: 15px; }
      .mobile-drawer { top: 64px; }
      .mobile-drawer-overlay { top: 64px; }

      /* Interior page hero mobile */
      .interior-hero { padding: 60px 20px 50px; }
      .interior-hero h1 { font-size: 28px; }
      .interior-hero p { font-size: 16px; }
      .hero-cta { padding: 14px 28px; font-size: 15px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 24px; }
      .section-headline { font-size: 24px; }
      .stat-number { font-size: 24px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .interior-hero h1 { font-size: 24px; }
    }

    /* ===== INTERACTIVE PRODUCT DEMO ===== */
    .demo-section {
      background: var(--dwolla-purple-deep);
      padding: 100px 48px 80px;
      overflow: hidden;
    }

    .demo-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .demo-tabs {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-bottom: 48px;
      background: rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 4px;
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
    }

    .demo-tab {
      flex: 1;
      padding: 10px 20px;
      background: none;
      border: none;
      color: rgba(255,255,255,0.5);
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .demo-tab.active {
      background: rgba(255,255,255,0.12);
      color: #fff;
    }

    .demo-tab:hover:not(.active) {
      color: rgba(255,255,255,0.8);
    }

    .demo-content {
      display: flex;
      gap: 60px;
      align-items: flex-start;
      justify-content: center;
    }

    /* Phone frame */
    .demo-phone {
      flex-shrink: 0;
    }

    .phone-frame {
      width: 300px;
      height: 620px;
      background: #fff;
      border-radius: 36px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 0 0 2px rgba(255,255,255,0.1);
      overflow: hidden;
      position: relative;
      border: 6px solid #1a1a2e;
    }

    .phone-notch {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 24px;
      background: #1a1a2e;
      border-radius: 0 0 16px 16px;
      z-index: 5;
    }

    .phone-status-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 20px 4px;
      font-size: 12px;
      font-weight: 600;
      color: #292948;
      position: relative;
      z-index: 4;
    }

    .phone-icons {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    /* Screens */
    .phone-screen {
      position: absolute;
      top: 36px;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .phone-screen.active {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }

    .phone-screen.exit-left {
      opacity: 0;
      transform: translateX(-20px);
    }

    .phone-screen.no-transition {
      transition: none !important;
    }

    .screen-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 16px;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      background: #fff;
      z-index: 3;
    }

    .screen-title {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #292948;
      text-align: center;
    }

    .screen-subtitle {
      font-size: 11px;
      color: #8393aa;
      text-align: center;
    }

    .screen-body {
      padding: 16px;
    }

    /* Tenant card */
    .tenant-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      background: #f8f9fb;
      border-radius: 10px;
      margin-bottom: 16px;
    }

    .tenant-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .tenant-card strong {
      font-size: 14px;
      color: #292948;
    }

    .text-muted { color: #8393aa; font-size: 12px; }
    .text-green { color: #16a34a; font-size: 12px; }
    .text-red { color: #dc2626; }

    .info-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 16px;
      font-size: 13px;
    }

    /* Deposit box */
    .deposit-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      background: #fef2f2;
      border: 1px solid #fecaca;
      border-radius: 10px;
      margin-bottom: 16px;
    }

    .deposit-box.refund {
      background: #fff7ed;
      border-color: #fed7aa;
    }

    .deposit-box.success {
      background: #f0fdf4;
      border-color: #bbf7d0;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .deposit-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: #64748b;
    }

    .deposit-amount {
      font-size: 24px;
      font-weight: 700;
      color: #292948;
    }

    .deposit-amount.success-green {
      color: #16a34a;
    }

    /* Checklist */
    .checklist-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: #64748b;
      margin-bottom: 12px;
    }

    .checklist-room {
      margin-bottom: 12px;
    }

    .room-header {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      font-weight: 600;
      color: #292948;
      margin-bottom: 6px;
    }

    .checklist-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 12px;
      background: #f8f9fb;
      border-radius: 8px;
      margin-bottom: 4px;
      font-size: 12px;
    }

    .checklist-item.flagged {
      background: #fef2f2;
      border-left: 3px solid #dc2626;
    }

    .deduction {
      font-weight: 700;
      color: #dc2626;
      font-size: 13px;
    }

    /* Form elements */
    .form-section {
      margin-bottom: 16px;
    }

    .form-label {
      font-size: 11px;
      font-weight: 600;
      color: #64748b;
      letter-spacing: 0.03em;
      margin-bottom: 6px;
    }

    .form-value {
      font-size: 13px;
      color: #292948;
      padding: 10px 12px;
      background: #f8f9fb;
      border-radius: 8px;
      line-height: 1.5;
    }

    .form-textarea {
      font-size: 13px;
      color: #292948;
      padding: 10px 12px;
      background: #f8f9fb;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      min-height: 50px;
    }

    .speed-selector {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .speed-option {
      display: flex;
      justify-content: space-between;
      padding: 10px 12px;
      background: #f8f9fb;
      border-radius: 8px;
      font-size: 13px;
      color: #292948;
      border: 1.5px solid transparent;
      cursor: default;
    }

    .speed-option.selected {
      background: #eff6ff;
      border-color: #3b82f6;
    }

    .toggle-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #292948;
    }

    .toggle {
      width: 40px;
      height: 22px;
      border-radius: 11px;
      background: #cbd5e1;
      position: relative;
      cursor: default;
    }

    .toggle.active {
      background: #16a34a;
    }

    .toggle-knob {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #fff;
      position: absolute;
      top: 2px;
      left: 2px;
      transition: left 0.2s;
      box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }

    .toggle.active .toggle-knob {
      left: 20px;
    }

    .demo-action-btn {
      width: 100%;
      padding: 12px;
      background: #292948;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      cursor: default;
      margin-top: 8px;
    }

    /* Success screen */
    .success-check {
      margin-bottom: 12px;
    }

    .success-title {
      font-size: 18px;
      font-weight: 700;
      color: #292948;
      margin-bottom: 6px;
    }

    .success-sub {
      font-size: 13px;
      color: #64748b;
      margin-bottom: 8px;
    }

    .transaction-details {
      text-align: left;
      background: #f8f9fb;
      border-radius: 10px;
      padding: 16px;
      margin-top: 12px;
    }

    .detail-title {
      font-size: 13px;
      font-weight: 700;
      color: #292948;
      margin-bottom: 10px;
    }

    .detail-row {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #64748b;
      padding: 5px 0;
      border-bottom: 1px solid #e8ecf0;
    }

    .detail-row:last-child {
      border-bottom: none;
    }

    .detail-row.bold {
      font-weight: 600;
      color: #292948;
    }

    .status-badge {
      background: #dcfce7;
      color: #16a34a;
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 10px;
    }

    /* Timeline */
    .status-timeline {
      margin: 16px 0;
    }

    .timeline-step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      position: relative;
    }

    .timeline-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 6px;
      top: 28px;
      bottom: -8px;
      width: 2px;
      background: #e2e8f0;
    }

    .timeline-step.completed:not(:last-child)::after {
      background: #16a34a;
    }

    .timeline-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #e2e8f0;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .timeline-step.completed .timeline-dot {
      background: #16a34a;
    }

    .timeline-step.active-step .timeline-dot {
      background: #3b82f6;
    }

    .timeline-dot.pulsing {
      animation: timelinePulse 1.5s ease-in-out infinite;
    }

    @keyframes timelinePulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.3); }
      50% { box-shadow: 0 0 0 6px rgba(59,130,246,0); }
    }

    .timeline-content {
      flex: 1;
    }

    .timeline-content strong {
      display: block;
      font-size: 13px;
      color: #292948;
    }

    .timeline-check {
      flex-shrink: 0;
    }

    .timeline-spinner {
      width: 14px;
      height: 14px;
      border: 2px solid #e2e8f0;
      border-top-color: #3b82f6;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      flex-shrink: 0;
      margin-top: 3px;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .timeline-step.pending .timeline-content strong {
      color: #94a3b8;
    }

    /* Webhook card */
    .webhook-card {
      background: #1e1e3a;
      border-radius: 8px;
      padding: 12px;
      margin-top: 16px;
    }

    .webhook-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.4);
      margin-bottom: 4px;
    }

    .webhook-code {
      font-family: 'Roboto Mono', monospace;
      font-size: 13px;
      color: #4ade80;
      background: none;
      padding: 0;
    }

    /* Explanation panel */
    .demo-explain {
      max-width: 440px;
      position: relative;
      min-height: 380px;
    }

    .explain-panel {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
    }

    .explain-panel.no-transition {
      transition: none !important;
    }

    .explain-panel.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      position: relative;
    }

    .explain-panel h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.25;
    }

    .explain-panel > p {
      color: rgba(255,255,255,0.6);
      font-size: 16px;
      line-height: 1.65;
      margin-bottom: 28px;
    }

    .explain-detail {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
    }

    .explain-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .explain-icon.orange {
      background: rgba(191,88,47,0.15);
      color: var(--dwolla-amber);
    }

    .explain-icon.teal {
      background: rgba(45,130,131,0.15);
      color: var(--dwolla-teal);
    }

    .explain-detail strong {
      display: block;
      color: #fff;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .explain-detail span {
      color: rgba(255,255,255,0.5);
      font-size: 13px;
      line-height: 1.5;
    }

    /* Step dots */
    .demo-steps {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }

    .step-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      padding: 0;
    }

    .step-dot.active {
      background: var(--dwolla-amber);
      width: 28px;
      border-radius: 5px;
    }

    .step-dot:hover:not(.active) {
      background: rgba(255,255,255,0.4);
    }

    /* Demo prompt */
    .demo-prompt {
      text-align: center;
      color: rgba(255,255,255,0.4);
      font-size: 13px;
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      animation: promptFade 2s ease-in-out infinite alternate;
    }

    .demo-prompt-icon {
      display: inline-flex;
      animation: promptSlide 1.5s ease-in-out infinite;
    }

    @keyframes promptFade {
      0% { opacity: 0.4; }
      100% { opacity: 0.8; }
    }

    @keyframes promptSlide {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(4px); }
    }

    .demo-prompt.hidden {
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }

    /* Demo responsive */
    @media (max-width: 900px) {
      .demo-content {
        flex-direction: column;
        align-items: center;
      }
      .demo-explain {
        max-width: 100%;
        min-height: auto;
      }
      .explain-detail {
        text-align: left;
      }
      .demo-section {
        padding: 60px 24px 48px;
      }
      .demo-tabs {
        position: relative;
        z-index: 10;
      }
      .demo-tab {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(255,255,255,0.1);
        touch-action: manipulation;
      }
      .demo-steps {
        position: relative;
        z-index: 10;
      }
      .step-dot {
        min-width: 32px;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .step-dot.active {
        min-width: 40px;
      }
    }

    @media (max-width: 480px) {
      .phone-frame {
        width: 260px;
        height: 540px;
      }
      .demo-tabs {
        max-width: 100%;
      }
      .explain-panel h3 {
        font-size: 22px;
      }
    }

  