/* =============================================
       SCROLL-REVEAL SYSTEM
    ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }.nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .btn-nav-secondary {
      padding: 7px 16px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      background: transparent;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: color var(--transition);
    }

    .btn-nav-secondary:hover {
      color: var(--text-primary);
    }/* =============================================
       HERO SECTION
    ============================================= */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 100px 24px 80px;
      position: relative;
      overflow: hidden;
    }

    /* Grid pattern overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* Radial glow behind hero content */
    .hero::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(239,68,68,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 540px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 6px 12px;
      background: rgba(239,68,68,0.08);
      border: 1px solid rgba(239,68,68,0.2);
      border-radius: 100px;
      margin-bottom: 28px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 6px var(--red);
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--red); }
      50% { opacity: 0.5; box-shadow: 0 0 12px var(--red); }
    }

    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      margin-bottom: 20px;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--red-bright);
    }

    .hero-sub {
      font-size: 17px;
      font-weight: 400;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 420px;
    }

    .hero-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }/* =============================================
       PHISHING EMAIL DISSECTION
    ============================================= */
    .hero-email-panel {
      position: relative;
    }

    .email-dissect-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      overflow: hidden;
      opacity: 0;
      animation: fade-in-up 0.8s ease 0.2s forwards;
    }

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

    .email-toolbar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      background: rgba(255,255,255,0.03);
      border-bottom: 1px solid var(--border-subtle);
    }

    .email-toolbar-dots {
      display: flex;
      gap: 6px;
    }

    .toolbar-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .toolbar-dot:nth-child(1) { background: #ff5f57; }
    .toolbar-dot:nth-child(2) { background: #febc2e; }
    .toolbar-dot:nth-child(3) { background: #28c840; }

    .email-toolbar-label {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-muted);
      flex: 1;
      text-align: center;
      padding-right: 24px;
    }

    .email-body-wrap {
      padding: 20px;
    }

    .email-field {
      padding: 8px 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }

    .email-field:last-of-type {
      border-bottom: none;
    }

    .email-field-label {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 3px;
    }

    .email-field-value {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--text-primary);
      line-height: 1.5;
    }

    .email-field-value .flagged {
      color: var(--red-bright);
      background: rgba(255,59,48,0.1);
      border-radius: 3px;
      padding: 1px 4px;
      position: relative;
    }

    /* Scoped to the card, not to .email-field-value — the bait link lives in
       .email-message-text, so the old selector never matched it and the most
       suspicious element on the card rendered as plain body copy. */
    .email-dissect-card .suspicious-link {
      color: var(--amber-bright);
      text-decoration: underline;
      text-underline-offset: 3px;
      word-break: break-all;
    }

    .email-message-text {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-top: 8px;
    }

    /* Annotation pills
       These used to be absolutely positioned at right:-180px, outside the card.
       On a 1200px container that put them past the viewport edge on anything
       narrower than ~1700px, where body{overflow-x:hidden} clipped them away,
       and below 1025px they were hidden outright — so the callouts that carry
       the entire lesson were invisible to almost everyone. They now sit in
       normal flow underneath the field they annotate, which works at every
       width, mobile included. */
    .annotation {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 8px;
      opacity: 0;
      animation: slide-in-annotation 0.5s ease forwards;
    }

    .annotation-line {
      width: 16px;
      height: 1px;
      margin-top: 9px;
      background: var(--red);
      flex-shrink: 0;
    }

    .annotation-pill {
      background: rgba(239,68,68,0.12);
      border: 1px solid rgba(239,68,68,0.35);
      border-radius: 6px;
      padding: 5px 10px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--red-bright);
      line-height: 1.5;
    }

    /* Staggered so the four callouts land in reading order after the card
       itself has faded in. */
    .annotation-1 { animation-delay: 1.0s; }
    .annotation-2 { animation-delay: 1.4s; }
    .annotation-3 { animation-delay: 1.8s; }
    .annotation-4 { animation-delay: 2.2s; }

    @keyframes slide-in-annotation {
      from { opacity: 0; transform: translateX(-10px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* =============================================
       SECTION SHARED STYLES
    ============================================= */
    section {
      padding: 100px 24px;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }    .section-sub {
      /* theme.css sets the rest; the homepage runs a narrower measure. */
      max-width: 520px;
    }

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

    .section-header .section-sub {
      margin: 0 auto;
    }

    /* =============================================
       MODULES GRID
    ============================================= */
    .modules-section {
      background: var(--bg-deep);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

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

    .module-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 28px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      overflow: hidden;
      transition: all var(--transition);
      cursor: pointer;
    }

    .module-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--card-accent, var(--cyan));
      opacity: 0.6;
      transition: opacity var(--transition);
    }

    .module-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--card-accent, var(--cyan));
      box-shadow: 0 0 0 1px var(--card-accent, var(--cyan)), 0 8px 32px rgba(0,0,0,0.4);
      transform: translateY(-3px);
    }

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

    .module-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .module-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      flex-shrink: 0;
    }

    .module-icon-wrap svg {
      width: 22px;
      height: 22px;
    }

    .module-badges {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .badge {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 3px 8px;
      border-radius: 4px;
    }

    /* .badge-platform is gone with the "Desktop" badges — every module works on
       a phone, and the badge contradicted the Platform section two blocks down. */

    .badge-difficulty {
      color: var(--amber-bright);
      background: rgba(245,158,11,0.08);
      border: 1px solid rgba(245,158,11,0.18);
    }

    .badge-difficulty.easy {
      color: var(--green-bright);
      background: rgba(34,197,94,0.08);
      border-color: rgba(34,197,94,0.18);
    }

    .badge-difficulty.hard {
      color: var(--red-bright);
      background: rgba(239,68,68,0.08);
      border-color: rgba(239,68,68,0.18);
    }

    .module-name {
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.01em;
    }

    .module-desc {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
      flex: 1;
    }

    .module-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--border-subtle);
    }

    .module-duration {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-muted);
    }

    .module-arrow {
      display: flex;
      align-items: center;
      color: var(--card-accent, var(--cyan));
      opacity: 0;
      transform: translateX(-6px);
      transition: all var(--transition);
    }

    .module-card:hover .module-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* =============================================
       HOW IT WORKS
    ============================================= */
    .how-section {
      background: var(--bg-void);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      gap: 0;
      align-items: start;
      margin-top: 64px;
    }

    .step-connector {
      padding-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
    }

    .step-connector-line {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .connector-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--border-mid);
    }

    .step {
      text-align: center;
      padding: 0 24px;
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      margin-bottom: 20px;
      position: relative;
    }

    .step-number-text {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      color: var(--text-muted);
      position: absolute;
      top: -8px;
      right: -8px;
      background: var(--bg-base);
      padding: 2px 6px;
      border-radius: 4px;
      border: 1px solid var(--border-subtle);
    }

    .step-icon {
      color: var(--cyan-bright);
    }

    .step-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      letter-spacing: -0.01em;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

    .step-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* =============================================
       PLATFORM SECTION
    ============================================= */
    .platform-section {
      background: var(--bg-base);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .platform-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    /* Desktop mockup */
    .desktop-mockup {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      overflow: hidden;
    }

    .mockup-titlebar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      background: rgba(255,255,255,0.02);
      border-bottom: 1px solid var(--border-subtle);
    }

    .mockup-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }
    .mockup-dot:nth-child(1) { background: #ff5f57; }
    .mockup-dot:nth-child(2) { background: #febc2e; }
    .mockup-dot:nth-child(3) { background: #28c840; }

    .mockup-url {
      flex: 1;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-muted);
      text-align: center;
    }

    .mockup-body {
      padding: 16px;
    }

    .mockup-email-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px;
      border-radius: 6px;
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--border-subtle);
      margin-bottom: 8px;
    }

    .mockup-sender-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .mockup-email-info {
      flex: 1;
      min-width: 0;
    }

    .mockup-email-from {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-secondary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mockup-email-subj {
      font-size: 10px;
      color: var(--text-muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mockup-flag {
      font-family: var(--font-mono);
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 3px;
      flex-shrink: 0;
    }

    .mockup-flag.red {
      background: rgba(239,68,68,0.15);
      color: var(--red-bright);
      border: 1px solid rgba(239,68,68,0.3);
    }

    .mockup-flag.green {
      background: rgba(34,197,94,0.1);
      color: var(--green-bright);
      border: 1px solid rgba(34,197,94,0.25);
    }

    .mockup-flag.amber {
      background: rgba(245,158,11,0.1);
      color: var(--amber-bright);
      border: 1px solid rgba(245,158,11,0.25);
    }

    /* Platform center text */
    .platform-center {
      text-align: center;
    }

    .platform-center .section-heading {
      font-size: clamp(26px, 3vw, 40px);
      margin-bottom: 14px;
    }

    .platform-center .section-sub {
      font-size: 14px;
      max-width: 280px;
      margin: 0 auto 24px;
    }

    /* =============================================
       STATS BAR
    ============================================= */
    .stats-section {
      padding: 60px 24px;
      background: var(--bg-deep);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border-subtle);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      overflow: hidden;
    }

    .stat-item {
      background: var(--bg-card);
      padding: 36px 24px;
      text-align: center;
    }

    .stat-number {
      font-family: var(--font-mono);
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 700;
      color: var(--cyan-bright);
      text-shadow: 0 0 24px rgba(34,211,238,0.4);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 13px;
      color: var(--text-secondary);
      font-weight: 500;
    }

    /* =============================================
       ENTERPRISE SECTION
    ============================================= */
    .enterprise-section {
      background: var(--bg-void);
    }

    .enterprise-card {
      background: var(--bg-card);
      border-radius: 16px;
      padding: 56px;
      position: relative;
      overflow: hidden;
    }

    /* Gradient border effect via box-shadow */
    .enterprise-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(239,68,68,0.4), rgba(168,85,247,0.3), rgba(6,182,212,0.3));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .enterprise-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .enterprise-content .section-heading {
      margin-bottom: 20px;
      text-align: left;
    }

    .enterprise-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .enterprise-bullets li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--text-secondary);
    }

    .enterprise-bullets li::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-bright);
      flex-shrink: 0;
      box-shadow: 0 0 6px var(--green);
    }

    .enterprise-stats {
      display: flex;
      gap: 32px;
    }

    .ent-stat-num {
      font-family: var(--font-mono);
      font-size: 28px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1;
      margin-bottom: 4px;
    }

    .ent-stat-label {
      font-size: 12px;
      color: var(--text-muted);
    }

    .enterprise-visual {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ent-chart-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ent-chart-label {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-secondary);
      width: 148px;
      flex-shrink: 0;
    }

    .ent-chart-track {
      flex: 1;
      height: 8px;
      background: rgba(255,255,255,0.04);
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--border-subtle);
    }

    .ent-chart-fill {
      height: 100%;
      border-radius: 4px;
    }

    .ent-chart-pct {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-secondary);
      width: 46px;
      flex-shrink: 0;
      text-align: right;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
    }

    /* =============================================
       EMAIL SIGNUP
    ============================================= */
    .signup-section {
      padding: 80px 24px;
      background: var(--bg-base);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .signup-card {
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
    }

    .signup-card .section-heading {
      font-size: clamp(28px, 3.5vw, 44px);
      margin-bottom: 12px;
    }

    .signup-card .section-sub {
      max-width: 380px;
      margin: 0 auto 32px;
      font-size: 15px;
    }

    .signup-form {
      display: flex;
      gap: 10px;
      max-width: 440px;
      margin: 0 auto 14px;
    }

    .signup-input {
      flex: 1;
      padding: 13px 18px;
      background: var(--bg-card);
      border: 1px solid var(--border-mid);
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-primary);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .signup-input::placeholder {
      color: var(--text-muted);
    }

    .signup-input:focus {
      border-color: rgba(34,211,238,0.4);
      box-shadow: 0 0 0 3px rgba(34,211,238,0.08);
    }

    .btn-signup {
      padding: 13px 24px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: var(--red);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      white-space: nowrap;
      transition: all var(--transition);
    }

    .btn-signup:hover {
      background: #dc2626;
      box-shadow: 0 4px 20px rgba(239,68,68,0.35);
    }

    .signup-fine {
      font-size: 12px;
      color: var(--text-muted);
    }

    .signup-status {
      font-size: 13px;
      min-height: 20px;
      margin-top: 4px;
      transition: color var(--transition);
    }/* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-content {
        max-width: 100%;
        text-align: center;
      }

      .hero-sub {
        max-width: 100%;
      }

      .hero-ctas {
        justify-content: center;
      }

      .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
      }

      /* The annotations sit in flow inside the card now, so they no longer
         need hiding at narrow widths — this is where the lesson matters most. */

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

      .step-connector {
        display: none;
      }

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

      .platform-center {
        order: -1;
      }

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

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

    @media (max-width: 768px) {
      section { padding: 72px 20px; }

      .nav-links,
      .nav-right {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

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

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .signup-form {
        flex-direction: column;
      }

      .enterprise-card {
        padding: 32px 24px;
      }

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

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (min-width: 769px) and (max-width: 1023px) {
      .modules-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }/* Honour reduced-motion preference. The reveal system is opacity-based, so
       it needs its resting state restored explicitly — collapsing the
       transition alone would leave the content at opacity 0. */
    @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;
      }

      .reveal,
      .annotation,
      .email-dissect-card {
        opacity: 1 !important;
        transform: none !important;
      }
    }@media (max-width: 560px) {
      .consent-actions { width: 100%; }
      .consent-btn { flex: 1; }
    }
