@import "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap";
@import "_aos.css";
  /* ──────────────────────────────────────────────────────────────────
     RESET & BASE
     ────────────────────────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "DM Sans", sans-serif;
    background: #0B0D12;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ──────────────────────────────────────────────────────────────────
     TOKENS
     ────────────────────────────────────────────────────────────────── */
  :root {
    --bg:           #0B0D12;
    --bg-elev:      #11141C;
    --bg-elev-2:    #161A24;
    --border:       rgba(255, 255, 255, 0.06);
    --border-2:     rgba(255, 255, 255, 0.10);
    --border-accent:rgba(77, 124, 255, 0.35);

    --text:         #FFFFFF;
    --text-2:       #B8C0CF;
    --text-3:       #6B7383;
    --text-4:       #4A5060;

    --accent:       #caf9a5;
    --accent-bright:#caf9a5;
    --accent-violet:#caf9a5;
    --gradient:     linear-gradient(135deg, #4D7CFF 0%, #7C5CFF 100%);
    --green:        #caf9a5;
    --green-bright: #caf9a5;

    --success:      #10B981;
    --warn:         #F59E0B;

    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --section-padding: 80px;
  }

  /* ──────────────────────────────────────────────────────────────────
     TYPOGRAPHY
     ────────────────────────────────────────────────────────────────── */
  h1, h2, h3, h4, h5 {
    letter-spacing: -0.025em;
    color: var(--text);
    font-weight: 600;
  }
  h1 { font-size: clamp(3rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
  h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.08; letter-spacing: -0.03em; }
  h3 { font-size: 1.25rem; line-height: 1.3; }
  h4 { font-size: 1.05rem; line-height: 1.4; }
  p  { font-size: 1.0625rem; color: var(--text-2); line-height: 1.6; }
  a  { color: inherit; text-decoration: none; }
  ::selection { background: var(--accent); color: #fff; }

  /* ──────────────────────────────────────────────────────────────────
     UTILITY
     ────────────────────────────────────────────────────────────────── */
  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .section { padding: 140px 0; }
  @media (max-width: 768px) { .section { padding: 96px 0; } }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem; font-weight: 500;
    color: var(--text-2);
    padding: 6px 14px;
    border: 1px solid var(--border-2);
    border-radius: 100px;
    background: rgba(255,255,255,0.02);
    font-family: var(--mono);
    letter-spacing: 0.02em;
    width: fit-content;
    margin: 0 auto;
  }
  .eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
  }

  .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ──────────────────────────────────────────────────────────────────
     BUTTONS
     ────────────────────────────────────────────────────────────────── */
  .btn,
  .mktoButton {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 8px;
    font-size: 0.95rem; font-weight: 500;
    cursor: pointer; border: none;
    transition: all 0.18s ease;
    white-space: nowrap;
  }
  .btn-accent,
  .mktoButton {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(77,124,255,0.6), 0 8px 24px rgba(77,124,255,0.25);
  }
  .btn-accent:hover,
  .mktoButton {
    background: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(77,124,255,0.8), 0 12px 32px rgba(77,124,255,0.4);
  }
  .btn-ghost {
    background: transparent;
    border: 1px solid var(--border-2);
    color: var(--text);
  }
  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); #
  }
  .btn-link {
    background: transparent; padding: 0;
    color: var(--accent-bright); font-weight: 500;
  }

  .btn-green{
    background: var(--green);
    border: 1px solid var(--border-2);
    color: #11141c;
    box-shadow: 0 0 0 1px rgba(56,232,148,0.6), 0 8px 24px rgba(56,232,148,0.25);
  }

  .btn-green:hover{
    background: var(--green-bright);
    box-shadow: 0 0 0 1px rgba(56,232,148,0.8), 0 12px 32px rgba(56,232,148,0.4);
    transform: translateY(-1px);
  }

  .btn-link:hover { color: var(--accent-violet); }
  .btn svg { width: 18px; height: 18px; }

  /* ──────────────────────────────────────────────────────────────────
     S LOGO
     ────────────────────────────────────────────────────────────────── */
  .nav-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 1.2rem; font-weight: 700; letter-spacing: -0.035em;
    color: var(--text);
  }
  .nav-logo .wordmark { color: var(--text); }
  .nav-logo .wordmark .dot-ai { color: var(--accent-bright); }
  .s-logo { width: 26px; height: 26px; flex-shrink: 0; display: block; transition: transform 0.35s ease, filter 0.35s ease; }
  .s-logo .seg { fill: url(#sLogoGradient); opacity: 0; transform-origin: center; animation: segIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  .s-logo .seg-1 { animation-delay: 0.05s; }
  .s-logo .seg-2 { animation-delay: 0.16s; }
  .s-logo .seg-3 { animation-delay: 0.27s; }
  .s-logo .seg-4 { animation-delay: 0.38s; }
  .s-logo .seg-5 { animation-delay: 0.49s; }
  @keyframes segIn { from { opacity: 0; transform: translateY(-5px) scale(0.92); } to { opacity: 1; transform: translateY(0) scale(1); } }
  .nav-logo:hover .s-logo { filter: drop-shadow(0 0 12px rgba(77, 124, 255, 0.5)); transform: rotate(-3deg); }

  /* ──────────────────────────────────────────────────────────────────
     NAV
     ────────────────────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(11, 13, 18, 0.7);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 68px;
    gap: 32px;
  }
  .nav-links {
    display: flex; justify-content: center;
    gap: 36px;
  }
  .nav-links a {
    font-size: 0.92rem; color: var(--text-2);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta { display: flex; align-items: center; gap: 20px; }
  .nav-cta .signin {
    font-size: 0.9rem; color: var(--text-2);
    transition: color 0.2s;
  }
  .nav-cta .signin:hover { color: var(--text); }
  @media (max-width: 920px) { .nav-links { display: none; } .nav-cta .signin { display: none; } }

  /* ──────────────────────────────────────────────────────────────────
     HERO
     ────────────────────────────────────────────────────────────────── */
  .hero {
    padding: 160px 0 120px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 15%, rgba(77, 124, 255, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 40% 35% at 20% 70%, rgba(124, 92, 255, 0.10) 0%, transparent 65%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0; opacity: 0.025;
    background-image:
      linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 80%);
  }
  .hero-content {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
  }
  @media (max-width: 1020px) {
    .hero-content { grid-template-columns: 1fr; gap: 56px; }
  }
  .hero-left .eyebrow { margin-bottom: 32px; }
  .hero-left h1 span{
    color:#CAF9A5;
  }
  .hero-left h1 { margin-bottom: 28px; }
  .hero-sub {
    font-size: 1.2rem; color: var(--text-2);
    max-width: 580px; margin-bottom: 40px; line-height: 1.55;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .hero-ctas .btn-accent { padding: 15px 28px; font-size: 1rem; }
  .hero-ctas .btn-ghost { padding: 15px 22px; font-size: 1rem; }
  .hero-ctas .btn-green { padding: 15px 22px; font-size: 1rem; }
  .play-icon { width: 16px; height: 16px; fill: currentColor; }

  /* ─── Hero Pitch (video + danger headline) ─────────────────────────────── */
  .hero-pitch {
    position: relative; z-index: 1;
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .hero-pitch-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-2);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,38,38,0.15);
    aspect-ratio: 16 / 9;
  }
  .hero-pitch-video video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-pitch-headline span{
    color: #CAF9A5;
  }
  .hero-pitch-headline {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #FFFFFF;
  }
  .hero-pitch-headline .danger {
    color: #FF2626;
    text-shadow: 0 0 24px rgba(255, 38, 38, 0.45);
    font-weight: 800;
  }
  .hero-pitch-headline .brand {
    color: #10E981;
    text-shadow: 0 0 24px rgba(16, 233, 129, 0.45);
    font-weight: 800;
  }
  .hero-pitch-subhead {
    margin-top: 18px;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: #8A93A4;
  }
  .hero-pitch-subhead .trial {
    display: inline-block;
    margin-top: 6px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.01em;
  }
  @media (max-width: 1020px) {
    .hero-pitch { grid-template-columns: 1fr; gap: 32px; margin-top: 48px; }
    .hero-pitch-headline { text-align: center; }
    .hero-pitch-subhead { text-align: center; }
  }

  /* ─── Voice Transcript Panel ─────────────────────────────── */
  .voice-panel {
    background: var(--bg-elev);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(77,124,255,0.08);
    position: relative;
  }
  .voice-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.2);
  }
  .voice-panel-status {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: var(--text-2);
    font-family: var(--mono);
  }
  .live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    animation: livePulse 1.8s ease-out infinite;
  }
  @keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    80%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  }
  .voice-panel-meta {
    font-family: var(--mono); font-size: 0.78rem; color: var(--text-3);
  }

  /* ─── Waveform ─────────────────────────────── */
  .waveform {
    padding: 18px 20px;
    display: flex; align-items: center; justify-content: center; gap: 3px;
    height: 64px;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.15);
  }
  .wave-bar {
    width: 3px;
    background: linear-gradient(180deg, var(--accent-bright), var(--accent-violet));
    border-radius: 2px;
    animation: wave 1.3s ease-in-out infinite;
    opacity: 0.85;
  }
  @keyframes wave {
    0%, 100% { height: 6px; opacity: 0.4; }
    50%      { height: var(--h, 30px); opacity: 1; }
  }

  /* ─── Transcript ─────────────────────────────── */
  .transcript {
    padding: 24px 24px 22px;
    min-height: 320px;
    max-height: 360px;
    overflow: hidden;
    display: flex; flex-direction: column; gap: 14px;
    font-size: 0.95rem;
    position: relative;
  }
  .transcript-line { display: flex; gap: 12px; align-items: flex-start; opacity: 0; }
  .transcript-line.show { opacity: 1; transition: opacity 0.3s ease; }
  .transcript-speaker {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 2px;
    width: 70px;
    text-align: center;
  }
  .transcript-speaker.caller {
    background: rgba(255,255,255,0.06);
    color: var(--text-2);
  }
  .transcript-speaker.agent {
    background: rgba(77,124,255,0.12);
    color: var(--accent-bright);
    border: 1px solid rgba(77,124,255,0.25);
  }
  .transcript-text { color: var(--text); line-height: 1.5; }
  .cursor {
    display: inline-block; width: 7px; height: 1em;
    background: var(--accent);
    margin-left: 2px;
    animation: blink 0.9s steps(1) infinite;
    vertical-align: text-bottom;
  }
  @keyframes blink { 50% { opacity: 0; } }
  .transcript-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--border-2);
    display: flex; justify-content: space-between;
    font-family: var(--mono); font-size: 0.78rem; color: var(--text-3);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .transcript-footer.show { opacity: 1; }
  .transcript-footer .resolved { color: var(--success); }

  /* ──────────────────────────────────────────────────────────────────
     TRUST STRIP
     ────────────────────────────────────────────────────────────────── */
  .trust-strip {
    padding: var(--section-padding) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    /*background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);*/
    background: var(--bg-elev);
  }
  .trust-label {
    text-align: center;
    font-size: 0.82rem; color: var(--text-3);
    letter-spacing: 0.04em;
    margin-bottom: 36px;
    font-weight: 500;
  }
  .trust-label strong { color: var(--text-2); font-weight: 500; }
  .trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
  }
  .trust-logo {
    font-size: 1.1rem; font-weight: 700; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.45);
    transition: color 0.25s ease;
  }
  .trust-logo:hover { color: rgba(255,255,255,0.85); }

  /* ──────────────────────────────────────────────────────────────────
     ROI BAND
     ────────────────────────────────────────────────────────────────── */
  .roi-band { padding: var(--section-padding) 0; }
  .roi-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
  .roi-header .eyebrow { margin-bottom: 22px; }
  .roi-header h2 { margin-bottom: 16px; }
  .roi-header p { font-size: 1.1rem; }
  .roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
  }
  .roi-cell {
    background: var(--bg);
    padding: 44px 32px;
    transition: background 0.25s ease;
  }
  .roi-cell:hover { background: var(--bg-elev); }
  .roi-value {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 600; letter-spacing: -0.04em;
    /*background: var(--gradient);*/
    /*-webkit-background-clip: text; -webkit-text-fill-color: transparent;*/
    background-clip: text;
    line-height: 1; margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
  }
  .roi-headline {
    font-size: 0.98rem; color: var(--text); font-weight: 500;
    margin-bottom: 6px; line-height: 1.4;
  }
  .roi-proof {
    font-size: 0.82rem; color: var(--text-3);
    line-height: 1.45;
  }
  @media (max-width: 880px) {
    .roi-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  /* ──────────────────────────────────────────────────────────────────
     OUTCOME MODEL (the risk reversal)
     ────────────────────────────────────────────────────────────────── */
  .outcome { padding: var(--section-padding) 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
  }

  .outcome-header { text-align: center; max-width: 760px; margin: 0 auto 72px; position: relative; }
  .outcome-header .eyebrow { margin-bottom: 22px; }
  .outcome-header h2 { margin-bottom: 18px; }
  .outcome-header p { font-size: 1.1rem; }
  .outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
  }
  .outcome-step {
    background: var(--bg-elev-2);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    transition: all 0.25s ease;
  }
  .outcome-step:hover { border-color: var(--border-accent); transform: translateY(-3px); }
  .outcome-step-num {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(77,124,255,0.12);
    border: 1px solid var(--border-accent);
    color: var(--accent-bright);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-weight: 600; font-size: 0.95rem;
    margin-bottom: 22px;
  }
  .outcome-step h3 { margin-bottom: 12px; }
  .outcome-step p { font-size: 0.98rem; line-height: 1.55; }
  .outcome-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
  }
  .outcome-tagline {
    margin-top: 48px;
    text-align: center;
    font-size: 1.5rem; font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text);
    position: relative;
  }



  .outcome-tagline em { font-style: normal; color: var(--accent-bright); }
  @media (max-width: 880px) {
    .outcome-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ──────────────────────────────────────────────────────────────────
     CAPABILITIES
     ────────────────────────────────────────────────────────────────── */
  .caps {
    padding: var(--section-padding) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .caps-header { text-align: center; max-width: 760px; margin: 0 auto 72px; position: relative; }
  .caps-header .eyebrow { margin-bottom: 22px; }
  .caps-header h2 span{ color: #CAF9A5; }
  .caps-header h2 { margin-bottom: 16px; }
  .caps-header p { font-size: 1.1rem; }
  .caps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cap-tile {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.25s ease;
    position: relative; overflow: hidden;
  }
  .cap-tile:hover { border-color: var(--border-2); transform: translateY(-2px); }
  .cap-tile-num {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--text-3);
    letter-spacing: 0.06em;
    margin-bottom: 22px;
  }
  .cap-tile h3 { margin-bottom: 12px; font-size: 1.5rem; letter-spacing: -0.025em; }
  .cap-tile p { font-size: 1rem; margin-bottom: 24px; }
  .cap-mini {
    display: flex; flex-direction: column; gap: 8px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--mono); font-size: 0.82rem;
  }
  .cap-mini-row { display: flex; justify-content: space-between; align-items: center; }
  .cap-mini-key { color: var(--text-3); }
  .cap-mini-val { color: var(--text); font-weight: 500; }
  .cap-mini-val.success { color: var(--success); }
  .cap-mini-val.accent { color: var(--accent-bright); }
  .cap-chips { display: flex; gap: 6px; flex-wrap: wrap; }
  .cap-chip {
    font-family: var(--mono); font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(77,124,255,0.08);
    border: 1px solid rgba(77,124,255,0.2);
    color: var(--accent-bright);
  }
  @media (max-width: 880px) { .caps-grid { grid-template-columns: 1fr; } }

  .specs-container{
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-basis: 100%;
    flex: 1;
    background: var(--bg-elev-2);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 0px;
    position: relative;
    transition: all 0.25s ease;
    margin: 50px 0 0 0;
  }

  .specs-container-item{
    width: 50%;
    padding: 10px 20px 20px 20px;
  }

  .border-right{
    border-right: 1px solid var(--border);
  }

  @media (max-width: 880px) {
    .specs-container {
      flex-direction: column;
    }
    .specs-container-item{
      width:auto;
    }

  }

  /* ──────────────────────────────────────────────────────────────────
     USE CASES
     ────────────────────────────────────────────────────────────────── */
  .usecases { padding: var(--section-padding) 0; }
  .usecases-header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
  .usecases-header .eyebrow { margin-bottom: 22px; }
  .usecases-header h2 { margin-bottom: 16px; }
  .usecases-header p { font-size: 1.1rem; }

  .industry-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 44px;
  }
  .industry-tab {
    background: var(--bg-elev);
    border: 1px solid var(--border-2);
    color: var(--text-2);
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 0.86rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .industry-tab:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
  .industry-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(77,124,255,0.3);
  }
  .industry-tab .count {
    font-family: var(--mono);
    font-size: 0.74rem;
    opacity: 0.7;
    padding: 1px 6px;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
  }
  .industry-tab.active .count { background: rgba(255,255,255,0.18); opacity: 1; }

  .usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
  }
  .usecase-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.2s ease;
    display: flex; flex-direction: column;
  }
  .usecase-card:hover { border-color: var(--border-2); transform: translateY(-1px); }
  .usecase-industry {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .usecase-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.35;
    min-height: 2.7em;
  }
  .usecase-bar {
    height: 5px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .usecase-bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .usecase-card.high .usecase-bar-fill { background: linear-gradient(90deg, #10B981, #4D7CFF); }
  .usecase-card.mid .usecase-bar-fill { background: var(--gradient); }
  .usecase-card.low .usecase-bar-fill { background: linear-gradient(90deg, #F59E0B, #7C5CFF); }
  .usecase-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono);
    font-size: 0.76rem;
    margin-top: auto;
  }
  .usecase-meta .key { color: var(--text-3); }
  .usecase-meta .val { color: var(--text); font-weight: 600; font-size: 0.9rem; }

  .usecases-footer-note {
    text-align: center;
    margin-top: 48px;
    font-size: 1rem;
    color: var(--text-3);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

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

  /* ──────────────────────────────────────────────────────────────────
     TIMELINE
     ────────────────────────────────────────────────────────────────── */
  .speed {
    padding: var(--section-padding) 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .speed-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px; }
  .speed-header .eyebrow { margin-bottom: 22px; }
  .speed-header h2 { margin-bottom: 16px; }
  .speed-header p { font-size: 1.1rem; }
  .speed-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
  }
  .speed-track::before {
    content: '';
    position: absolute;
    top: 24px; left: 5%; right: 5%; height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-violet));
    opacity: 0.4;
    z-index: 0;
  }
  .speed-step {
    background: var(--bg-elev-2);
    border: 1px solid var(--border-2);
    border-radius: 14px;
    padding: 28px 26px;
    position: relative;
    z-index: 1;
  }
  .speed-marker {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--bg-elev), 0 0 12px rgba(77,124,255,0.6);
    position: absolute; top: -7px; left: 28px;
  }
  .speed-week {
    font-family: var(--mono); font-size: 0.78rem;
    color: var(--accent-bright); letter-spacing: 0.06em;
    margin: 12px 0 14px;
    text-transform: uppercase;
  }
  .speed-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
  .speed-step p { font-size: 0.92rem; line-height: 1.55; }
  .speed-tagline {
    text-align: center;
    margin-top: 56px;
    font-size: 1.15rem; color: var(--text-2);
  }

  .speed-diagram{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-2);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,38,38,0.15);
    aspect-ratio: 16 / 9;
    width:49%;
    margin: 0 auto 50px auto;
  }

  .speed-tagline strong { color: var(--text); font-weight: 600; }
  @media (max-width: 880px) {
    .speed-track { grid-template-columns: 1fr; }
    .speed-track::before { display: none; }
    .speed-diagram{
      width:100%;
    }
  }

  /* ──────────────────────────────────────────────────────────────────
     CUSTOMER STORIES
     ────────────────────────────────────────────────────────────────── */
  .stories { padding: var(--section-padding) 0; }
  .stories-header { text-align: center;
  max-width: 760px;
  margin: 0 auto 50px; }
  .stories-header .eyebrow { margin-bottom: 22px; }
  .stories-header h2 { margin-bottom: 16px; }
  .stories-header p { font-size: 1.1rem; }
  .stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .story-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px;
    display: flex; flex-direction: column;
    transition: all 0.25s ease;
    position: relative;
  }
  .story-card:hover { border-color: var(--border-2); transform: translateY(-2px); }
  .story-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 28px; gap: 16px;
  }
  .story-brand {
    font-size: 1.15rem; font-weight: 700;
    color: var(--text); letter-spacing: 0.01em;
  }
  .story-industry {
    font-family: var(--mono); font-size: 0.72rem;
    color: var(--text-3); letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
  }
  .story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: var(--border);
    border-radius: 12px; overflow: hidden;
    margin-bottom: 24px;
  }
  .story-stat {
    background: var(--bg);
    padding: 20px;
  }
  .story-stat-value {
    font-size: 1.7rem; font-weight: 600; letter-spacing: -0.025em;
    /*background: var(--gradient);*/
    /*-webkit-background-clip: text; -webkit-text-fill-color: transparent;*/
    /*background-clip: text;*/
    margin-bottom: 4px; line-height: 1;
  }
  .story-stat-label { font-size: 0.8rem; color: var(--text-3); line-height: 1.4; }
  .story-summary {
    font-size: 0.98rem; color: var(--text-2);
    line-height: 1.6; flex: 1;
    margin-bottom: 24px;
  }
  .story-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.9rem; color: var(--accent-bright);
    font-weight: 500;
    transition: gap 0.2s;
  }
  .story-link:hover { gap: 10px; color: var(--accent-violet); }
  @media (max-width: 880px) { .stories-grid { grid-template-columns: 1fr; } }

  /* ──────────────────────────────────────────────────────────────────
     SECURITY BAND
     ────────────────────────────────────────────────────────────────── */
  .security {
    padding: var(--section-padding) 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .security-col h2 { margin-bottom: 20px; font-size: 2rem; }
  .security-col p { margin-bottom: 28px; }
  .security-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
  }
  .badge {
    font-family: var(--mono); font-size: 0.82rem;
    padding: 8px 14px;
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: 8px;
    color: var(--text-2);
  }
  .heritage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
  }
  .heritage-stat {
    padding: 22px 18px;
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: 12px;
  }
  .heritage-stat-value {
    font-size: 1.7rem; font-weight: 600; letter-spacing: -0.025em;
    /*background: var(--gradient);*/
    /*-webkit-background-clip: text; -webkit-text-fill-color: transparent;*/
    /*background-clip: text;*/
    margin-bottom: 6px; line-height: 1;
  }
  .heritage-stat-label { font-size: 0.82rem; color: var(--text-3); }
  @media (max-width: 880px) {
    .security-grid { grid-template-columns: 1fr; gap: 48px; }
    .heritage-stats { grid-template-columns: 1fr; }
  }

  /* ──────────────────────────────────────────────────────────────────
     FINAL CTA
     ────────────────────────────────────────────────────────────────── */
  .final-cta {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
  }
/*  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(77,124,255,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 30% 50% at 30% 30%, rgba(124,92,255,0.12) 0%, transparent 60%);
    z-index: 0;
  }*/
  .final-inner {
    position: relative; z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }
  .final-inner .eyebrow { margin-bottom: 28px; }
  .final-inner h2 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 24px;
  }
  .final-inner > p {
    font-size: 1.2rem; margin-bottom: 48px;
    max-width: 620px; margin-left: auto; margin-right: auto;
  }
  /* Old Form Style
  .final-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--bg-elev);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    width:auto!important;
  }*/

  .final-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: var(--bg-elev);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    width:auto!important;
  }

  .confirmation-text {
    color: var(--text-2);
    text-align: center;
    justify-content: center;
    display: none;
  }

input[type="hidden"]{
  display: none;
  height: 0;
  width: 0;
}

.mktoFormRow{
  width:48%;
  margin: 0 1%;
}

.mktoFormRow:has(#Email){
  width:100%!important;
}

.mktoFormRow:has(p){
  width:100%!important;
}

.mktoButtonRow{
  width: 98%;
  margin: 0 1%;
}

.mktoHasWidth{
  width:auto!important;
}

  .form-field,
  .mktoFieldWrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .form-field label,
  .mktoFieldWrap label {
    font-family: var(--mono); font-size: 0.74rem;
    color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.08em;
    width:auto!important;
  }
  .form-field input,
  .form-field select,
  .mktoFieldWrap input,
  .mktoFieldWrap select {
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    width:auto!important;
  }

  .mktoFieldWrap select{
    appearance: none; /* Disable the default arrow */
    -webkit-appearance: none; /* For WebKit-based browsers */
    -moz-appearance: none; /* For Firefox */
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="white"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    cursor: pointer;
  }


  .form-field input:focus,
  .form-field select:focus,
  .mktoFieldWrap input:focus,
  .mktoFieldWrap select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(77,124,255,0.15);
  }
  .form-submit,
  .mktoButtonWrap  {
    grid-column: 1 / -1;
    margin-top: 8px;
  }
  .form-submit .btn-accent,
  .mktoButton {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    justify-content: center;
  }

/*MARKETO STYLE OVERRIDE*/
.mktoAsterix{display: none;}


  .final-meta {
    margin-top: 24px;
    display: inline-flex; gap: 28px; flex-wrap: wrap; justify-content: center;
    font-size: 0.85rem; color: var(--text-3);
  }
  .final-meta span { display: inline-flex; align-items: center; gap: 6px; }
  .final-meta span::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
  }
  @media (max-width: 600px) {
    .mktoFormRow{ width:98%;
      }
  }

  /* ──────────────────────────────────────────────────────────────────
     FOOTER
     ────────────────────────────────────────────────────────────────── */
  footer {
    background: #06080C;
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
  }
  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-logo-link { display: inline-block; margin-bottom: 20px; }
  .footer-logo { height: 32px; width: auto; display: block; opacity: 0.9; transition: opacity 0.2s; }
  .footer-logo-link:hover .footer-logo { opacity: 1; }
  .footer-brand p { font-size: 0.875rem; max-width: 240px; line-height: 1.55; color: var(--text-3); }
  .footer-col h3, .footer-col h5 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 16px; font-weight: 600; }
  .footer-col a { display: block; font-size: 0.88rem; color: var(--text-3); margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--text); }
  .footer-badges {
    display: flex; gap: 8px; flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
  }
  .footer-badges .badge { font-size: 0.74rem; padding: 6px 12px; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p { font-size: 0.8rem; color: var(--text-4); }
  .footer-social { display: flex; gap: 14px; }
  .footer-social a {
    width: 32px; height: 32px;
    border: 1px solid var(--border-2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-3);
    transition: all 0.2s;
  }
  .footer-social a:hover { color: var(--text); border-color: var(--border-accent); }
  .footer-social svg { width: 14px; height: 14px; fill: currentColor; }
  @media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }

  /* ──────────────────────────────────────────────────────────────────
     ANIMATIONS
     ────────────────────────────────────────────────────────────────── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .fade-up { animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .d-1 { animation-delay: 0.05s; }
  .d-2 { animation-delay: 0.15s; }
  .d-3 { animation-delay: 0.25s; }
  .d-4 { animation-delay: 0.45s; }
  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ──────────────────────────────────────────────────────────────────
     SCROLLBAR
     ────────────────────────────────────────────────────────────────── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: rgba(77,124,255,0.25); border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: rgba(77,124,255,0.5); }

/*=== redesign ===*/

.redesign .footer-bottom p{
  color: #fff;
  font-size: 13px;
}
.redesign .footer-badges .badge{
  background: rgba(0,0,0,0.15);
  display: inline-block;
  padding: 5px 15px;
  font-size: 13px;
}
.redesign .footer-badges{
  border: 0;
  gap: 5px;
}
.redesign .footer-col a{
  color: #fff;
}
.redesign .footer-top{
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
}
.redesign .footer-brand p{
  font-size: 16px;
  line-height: 154%;
  color: #fff;
  max-width: 396px;
}
.redesign .footer-logo-link{
  width: 136px;
}
.redesign .footer-logo{
  opacity: 1;
  height: auto;
}
.redesign footer{
  background: transparent;
  border: 0;
}

.redesign .final-cta p.small{
  font-size: 11px;
  color: #fff;
  margin-bottom: 12px;
}
.mktoForm .mktoFieldDescriptor.mktoFormCol>.mktoFieldWrap,
.mktoForm .mktoFieldDescriptor.mktoFormCol{
  width: 100%;
}

.redesign .mktoErrorMsg{
  color: red;
  font-size: 11px;
}
.redesign .mktoFieldWrap select option,
.redesign .form-field select option{
  color: #002732;

}
.redesign .form-field input:focus, 
.redesign .form-field select:focus, 
.redesign .mktoFieldWrap input:focus, 
.redesign .mktoFieldWrap select:focus{
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.10);

}
.redesign .form-field input, 
.redesign .form-field select, 
.redesign .mktoFieldWrap input, 
.redesign .mktoFieldWrap select{
  background: transparent;
  border-radius: 0;
  height: 42px!important;
  padding-left: 15px!important;
  padding-right: 15px!important;
}

.redesign .mktoFieldWrap p.small,
.redesign .mktoFieldWrap label[for="Email"],
.redesign .mktoFieldWrap input[type="email"]{
  margin-left: 11px;
  margin-right: 11px;
}
.redesign .mktoFieldWrap input[type="email"]{
  margin-bottom: 10px;
}
.redesign .mktoForm button.mktoButton{
  width: calc(100% - 16px);
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 50px;
}
.redesign .form-field label:first-letter, 
.redesign .mktoFieldWrap label:first-letter{
  text-transform: uppercase;
}
.redesign .form-field label, 
.redesign .mktoFieldWrap label{
  font-family: "DM Sans", sans-serif;
  color: #fff;
  text-transform: lowercase;
  font-size: 13px;
  margin-bottom: 8px;
}
.redesign .mktoForm .mktoOffset{
  height: 5px;
}
.redesign .mktoAsterix{
  display: none!important;
}
.mktoForm .mktoFormRow:nth-child(4),
.mktoForm .mktoFormRow:nth-child(2){
  padding-right: 9px;
}
.mktoForm .mktoFormRow:nth-child(5),
.mktoForm .mktoFormRow:nth-child(3){
  padding-left: 9px;
}
.redesign .final-form{
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.redesign .final-inner p,
.redesign .final-inner > p{
  color: #CAF9A5;
  font-weight: 400;
  font-size: 20px;
  line-height: 154%;
}
.redesign .final-inner p{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.redesign .heritage-stat-label{
  color: #fff;
  font-size: 13px;
  line-height: 19px;
}
.redesign .heritage-stat-value{
  font-size: 35px;
  color: #CAF9A5;
  margin-bottom: 10px;
}
.redesign .heritage-stat{
  border: 0;
  border-radius: 0;
  background: #002732;
  padding: 20px;
}
.redesign .heritage-stats{
  gap: 5px;
}
.redesign .badge{
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #002732;
  font-family: "DM Sans", sans-serif;
}
.redesign .security-badges{
  gap: 7px;
}
.redesign .security-col p{
  color: #fff;
  font-size: 20px;
  line-height: 154%;
}
.redesign .security-col h2{
  font-size: 32px;
  line-height: 130%;
}
.redesign .security{
  border: 0;
  border: 0;
  background: rgba(0,0,0,0.15);
}
.redesign .story-link:hover{
  background: #fff;
  color: #002732;
}
.redesign .story-link{
  border: 1px solid #fff;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  width: fit-content;
  transition: all 0.18s ease;
}
.redesign .story-summary{
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}
.redesign .story-stat-label{
  font-size: 13px;
  color: #fff;
}
.redesign .story-stat-value{
  color: #CAF9A5;
  font-size: 35px;
  margin-bottom: 10px;
}
.redesign .story-stats{
  background: transparent;
  gap: 5px;
  border-radius: 0;
}
.redesign .story-stat{
  background: #002732;
}
.redesign .story-industry{
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: "DM Sans", sans-serif;
}
.redesign .story-brand{
  font-size: 24px;
}
.redesign .story-card{
  border-radius: 0;
  border: 0;
  background: rgba(0,0,0,0.15);
}
.redesign .stories-grid{
  gap: 5px;
}
.redesign .stories-header{
  max-width: 800px;
}
.redesign .speed-step p{
  color: #fff;
}
.redesign .speed-step h3{
  font-size: 24px;
  margin-bottom: 20px;
}
.redesign .speed-step .eyebrow{
  width: 100%;
  margin-bottom: 20px;
}
.redesign .speed-step{
  border: 0;
  border-radius: 0;
  background: #002732;
  padding: 40px;
}
.redesign .speed-marker,
.redesign .speed-track::before{
  display: none;
}
.redesign .speed-track{
  gap: 5px;
}
.redesign .speed-diagram img{
  width: 100%;
  height: 100%;
}
.redesign .speed-diagram{
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.redesign .speed{
  border: 0;
  background: rgba(0,0,0,0.15);
}
.redesign .stories,
.redesign .usecases{
  padding-bottom: 100px;
}
.redesign .usecase-card.low .usecase-bar-fill,
.redesign .usecase-card.mid .usecase-bar-fill,
.redesign .usecase-card.high .usecase-bar-fill,
.redesign .usecase-bar-fill{
  background: #CAF9A5;
  border-radius: 0;
}
.redesign .usecase-bar{
  height: 4px;
  margin-bottom: 10px;
  background: rgba(255,255,255, 0.2);
  border-radius: 0;
}
.redesign .usecase-meta .val,
.redesign .usecase-meta .key{
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.redesign .usecase-name{
  font-size: 16px;
  min-height: 1px;
  margin-bottom: 10px;
}
.redesign .usecase-industry{
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 12px;
}
.redesign .usecase-card{
  border-radius: 0;
  border: 0;
  background: rgba(0,0,0,0.15);
  padding: 20px;
}
.redesign .usecase-grid{
  gap: 5px;
}
.redesign .industry-tab.active .count{
  background: rgba(0, 40, 51, 0.1);
   color: #002732;
}
.redesign .industry-tab.active{
  box-shadow: none;
  border-color: #fff;
  background: #fff;
  color: #002732;
}
.redesign .industry-tab .count{
  background: rgba(255,255,255, 0.1);
  color: #fff;
  opacity: 1;
  padding: 5px 8px;
}
.redesign .industry-tab{
  height: 40px;
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 16px;
  background: transparent;
  color: #fff;
  border-color: 1px solid rgba(255,255,255, 0.1);
}
.redesign .cap-mini-val,
.redesign .cap-mini-val.success{
  color: #CAF9A5;
}
.redesign .cap-mini-key{
    font-size: 13px;
  line-height: 19px;
  color: #fff;
}
.redesign .cap-mini{
  border-radius: 0;
  background: #002732;
  border: 0;
  font-family: "DM Sans", sans-serif;
  padding: 20px;  
}
.redesign .cap-tile p{
  font-size: 16px;
 color: #fff;
}
.redesign .cap-tile h3{
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 20px;
}
.redesign .cap-tile .cap-chips .cap-chip{
  color: #fff;
  background: #002732;
}
.redesign .cap-tile .eyebrow{
  display: block; 
  width: 100%; 
  margin-bottom: 20px;
}
.redesign .cap-tile{
  border: 0;
  border-radius: 0;
  background: rgba(0,0,0,0.15);
}
.redesign .caps-grid{
  gap: 5px;
}
.redesign .caps{
  border: 0;
}
.redesign .caps-header{
  max-width: 100%;
}
.redesign .outcome-tagline em{
  color: #CAF9A5;
}
.redesign .outcome-tagline{
  font-size: 32px;
  line-height: 154%;
}
.redesign .outcome-step p{
  color: #fff;
  font-size: 16px;
  line-height: 154%;
}
.redesign .outcome-step h3{
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 20px;
}
.redesign .outcome-step-num{
  font-size: 13px;
  border: 0;
  border-radius: 0;
  font-family: "DM Sans", sans-serif;
  color: #002732;
  background: #CAF9A5;
}
.redesign .outcome-step{
  padding: 40px;
  border: 0;
  border-radius: 0;
  background:  #002732;
}
.redesign .outcome-grid{
  gap: 5px;
}
.redesign .outcome{
  background: rgba(0,0,0,0.15);
  border: 0;
  padding-top: 100px;
}
.redesign .roi-proof{
  color: #fff;
  font-size: 13px;
}
.redesign .roi-headline{
  color: #CAF9A5;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}
.redesign .roi-value{
  font-size: 64px;
  line-height: 64px;
}
.redesign .roi-grid .roi-cell{
  background: rgba(0,0,0,0.15);
  padding: 40px 30px;
}
.redesign .roi-band{
  padding-bottom: 100px;
}
.redesign .roi-grid{
  border-radius: 0;
  background: transparent;
  border: 0;
  gap: 5px;
}
.redesign .trust-logo{
  color: #fff;
}
.redesign .trust-logos{
  padding-top: 40px;
  gap: 40px;
}
.redesign .trust-strip{
  background: transparent;
  padding-top: 100px;
  border: 0;
}
.redesign .cap-chip{
  color: #CAF9A5;
  background: rgba(0,0,0,0.15);
  border-radius: 0;
  border: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
}
.redesign .specs-container-item h2,
.redesign .specs-container-item h3{
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 20px;
}
.redesign .specs-container-item{
  padding: 40px;
}
.redesign .specs-container{
  background: rgba(0,0,0,0.15);
  border-radius: 0;
  border: 0;
}
.redesign .container{
  max-width: 1310px;
  padding: 0 15px;
}
.redesign .roi-header{
  max-width: 100%;
}
.redesign .stories-header p,
.redesign .speed-header p,
.redesign .caps-header p,
.redesign .outcome-header p,
.redesign .roi-header p{
  font-size: 20px;
  line-height: 154%;
}
.redesign .stories-header p,
.redesign .speed-header p,
.redesign .caps-header p,
.redesign .outcome-header p,
.redesign .roi-header p,
.redesign .hero-pitch-subhead{
  color: #fff;
  font-weight: 300;
}
.redesign .stories-header h2,
.redesign .caps-header h2,
.redesign .outcome-header h2,
.redesign .roi-band h2,
.redesign .hero-pitch-headline{
  font-size: 48px;
  line-height: 132%;
}
.redesign .hero-pitch{
  gap: 60px;
}
.redesign .hero-pitch-video{
  box-shadow: none;
  border-radius: 0;
}
.redesign .voice-panel {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  min-height: 547px
}
.redesign .hero-sub{
  font-size: 19px;
  line-height: 154%;
  color: #fff;
  font-weight: 300;
}

.redesign .hero {
  padding-top: 140px;
  padding-bottom: 0;
}
.redesign .hero h1{
  font-size: 60px;
  line-height: 120%;
}
.redesign .eyebrow:before{
  display: none;
}
.redesign .eyebrow{
  padding: 0;
  margin-bottom: 20px;
  border: 0;
  color: #CAF9A5;
  background: transparent;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
} 
.redesign .btn-accent:hover, 
.redesign .mktoButton:hover,
.redesign .btn-accent, 
.redesign .mktoButton{
  background: #fff;
  border-radius: 0;
  color: #002732;
  box-shadow: none;
  font-size: 16px;
}
.redesign nav .nav-links a{
  color: #fff;
  font-size: 16px;
}
.redesign nav .nav-logo img{
  max-width: 100%;
  height: auto;
}
.redesign nav .nav-logo{
  max-height: 136px;
}
.redesign nav{
  background:  #002732;
  border: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
body,
.redesign{
  background: #002732;
}

.default_page .default_page_txt{
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.default_page{
  padding-top: 100px;
}
@media only screen and (max-width : 992px) {
  .redesign .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width : 767px) {
  .redesign .hero h1{
    font-size: clamp(3rem, 6.5vw, 5rem);
    line-height: 1.02;
  }
  .redesign .stories-header h2,
  .redesign .speed-header h2,
  .redesign .usecases-header h2,
  .redesign .outcome-tagline,
  .redesign .caps-header h2, 
  .redesign .outcome-header h2, 
  .redesign .roi-band h2, 
  .redesign .hero-pitch-headline{
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
  }
  .redesign .story-brand{
    font-size: 1.15rem;
  }
  .redesign .final-form{
    padding-top: 30px;
  }
}
@media only screen and (max-width : 480px) {
  .mktoForm .mktoFormRow:nth-child(4),
  .mktoForm .mktoFormRow:nth-child(2){
    padding-right: 0px;
  }
  .mktoForm .mktoFormRow:nth-child(5),
  .mktoForm .mktoFormRow:nth-child(3){
    padding-left: 0px;
  }
  .redesign .mktoFieldWrap p.small, 
  .redesign .mktoFieldWrap label[for="Email"], 
  .redesign .mktoFieldWrap input[type="email"] {
      margin-left: 0;
      margin-right: 0;
  }
  .redesign .mktoForm button.mktoButton{
    width: 100%;
  }
}

/*==// redesign ===*/