
  :root {
    /* Brand colors Ã¢ÂÂ per 2024 Brand Guidelines, "no other colours are to be used" */
    --brand-red:    #E86262;  /* Indian Red */
    --brand-orange: #EF8C41;  /* UT Orange */
    --brand-cyan:   #19AAD1;  /* Pacific Cyan */
    --brand-mint:   #14C693;  /* Mint */
    --brand-black:  #222222;  /* Eerie Black */
    --brand-white:  #F1F1F1;  /* Anti-flash White */

    /* IM site is light-first, per brand book.
       Anti-flash White (#F1F1F1) for soft sections, pure white for primary,
       Eerie Black for text. One dark accent section at the end (closing CTA)
       mirrors the brand book's "Thank You!" page. */
    --im-bg:        #FFFFFF;
    --im-bg-soft:   #F1F1F1;        /* Anti-flash White */
    --im-bg-2:      #FAFAFA;        /* between white and Anti-flash for tonal variety */
    --im-surface:   #FFFFFF;
    --im-text:      #222222;        /* Eerie Black */
    --im-text-2:    rgba(34,34,34,0.68);
    --im-text-3:    rgba(34,34,34,0.50);
    --im-rule:      rgba(34,34,34,0.08);
    --im-rule-2:    rgba(34,34,34,0.18);

    /* Dark accent section (closing CTA, etc.) */
    --im-dark-bg:   #222222;
    --im-dark-text: #F1F1F1;
    --im-dark-text-2: rgba(241,241,241,0.66);
    --im-dark-rule: rgba(241,241,241,0.14);

    /* Rewarded Play brand tokens Ã¢ÂÂ from RP Brand Guidelines + logo color sampling */
    --rp-pink:   #E81860;   /* Primary brand color (the hand) */
    --rp-cyan:   #5BB8D2;   /* Accent (wrist stripes) */
    --rp-black:  #221F1F;   /* Logo black */
    --rp-bg:     #FFF8FB;   /* Subtle pink-tinted off-white */
    --rp-bg-2:   #FFFFFF;
    --rp-text:   #221F1F;
    --rp-text-2: #5A5252;
    --rp-text-3: #8C8585;
    --rp-rule:   rgba(34,31,31,0.08);
    --rp-rule-2: rgba(34,31,31,0.18);
    --rp-accent:   var(--rp-pink);
    --rp-accent-2: var(--rp-cyan);

    /* Placeholder bracketed-text styling */
    --placeholder-bg: rgba(239, 140, 65, 0.16);
    --placeholder-border: rgba(239, 140, 65, 0.55);
    --placeholder-text: #A35513;

    --shell-bg: #111;
    --shell-rule: rgba(255,255,255,0.10);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    background: #FFFFFF;
    color: #222222;
  }

  /* ============ Top shell + tab switcher ============ */
  .shell {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(17,17,17,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--shell-rule);
  }
  .shell-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .shell-title {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
  }
  .shell-title small {
    display: block;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    font-size: 11px;
    margin-top: 2px;
  }
  .tabs {
    display: flex;
    gap: 4px;
    margin-left: auto;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 4px;
  }
  .tab {
    appearance: none;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.65);
    padding: 8px 14px;
    border-radius: 8px;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
  }
  .tab.active {
    background: rgba(255,255,255,0.12);
    color: #fff;
  }
  .tab:hover:not(.active) { color: #fff; }

  /* Page routing Ã¢ÂÂ hash-based, only one .im-page visible at a time */
  /* Subpage hero (smaller than home hero) */
  .im-page-hero {
    padding: 100px 0 56px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    border-bottom: 1px solid var(--im-rule);
    position: relative;
    overflow: hidden;
  }
  .im-page-hero::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(25,170,209,0.08), transparent 65%);
    pointer-events: none;
  }
  .im-page-hero .container { position: relative; }
  .im-page-hero .crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: 16px;
  }
  .im-page-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 0 18px;
    max-width: 20ch;
  }
  .im-page-hero p.lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--im-text-2);
    max-width: 60ch;
    margin: 0;
    font-weight: 400;
  }

  /* Prose container Ã¢ÂÂ used for terms, privacy, FAQ body, about, team body */
  .im-prose {
    padding: 64px 0 100px;
  }
  .im-prose .container {
    max-width: 720px;
  }
  .im-prose .legal-warn {
    background: rgba(239,140,65,0.10);
    border-left: 3px solid var(--brand-orange);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 14.5px;
    color: var(--im-text-2);
  }
  .im-prose .legal-warn strong { color: var(--brand-orange); }
  .im-prose h2 {
    font-family: 'Jost', sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.018em;
    margin: 48px 0 14px;
    line-height: 1.2;
  }
  .im-prose h2:first-child { margin-top: 0; }
  .im-prose h3 {
    font-family: 'Jost', sans-serif;
    font-size: 19px;
    font-weight: 500;
    margin: 32px 0 10px;
    letter-spacing: -0.012em;
  }
  .im-prose h4 {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 8px;
  }
  .im-prose p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--im-text);
  }
  .im-prose ul, .im-prose ol {
    margin: 0 0 18px;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.7;
  }
  .im-prose li { margin-bottom: 6px; }
  .im-prose strong { font-weight: 600; }
  .im-prose a {
    color: var(--brand-cyan);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
  }
  .im-prose hr {
    border: none;
    border-top: 1px solid var(--im-rule);
    margin: 40px 0;
  }
  .im-prose .meta {
    color: var(--im-text-3);
    font-size: 14px;
    margin-bottom: 32px;
  }

  /* FAQ list styling */
  .im-faq-section { margin-bottom: 48px; }
  .im-faq-section-title {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-cyan);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .im-faq-item {
    border-top: 1px solid var(--im-rule);
    padding: 24px 0;
  }
  .im-faq-q {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
    letter-spacing: -0.012em;
  }
  .im-faq-a {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--im-text-2);
    margin: 0;
  }

  /* Team page grid */
  .im-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
  }
  .im-team-card {
    background: #FFFFFF;
    border: 1px solid var(--im-rule);
    border-radius: 14px;
    padding: 32px;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  }
  .im-team-card:hover {
    border-color: var(--im-rule-2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -16px rgba(34,34,34,0.12);
  }
  /* Team photo avatars Ã¢ÂÂ use real photo backgrounds, color ring per brand color */
  .im-team-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center 25%;        /* shift up to favor face */
    background-color: var(--im-bg-soft);
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--ring, var(--brand-cyan));
  }
  .im-team-avatar.c1 { --ring: var(--brand-orange); }
  .im-team-avatar.c2 { --ring: var(--brand-cyan); }
  .im-team-avatar.c3 { --ring: var(--brand-red); }
  .im-team-avatar.c4 { --ring: var(--brand-mint); }
  .im-team-name {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.012em;
    margin: 0 0 4px;
  }
  .im-team-title {
    font-size: 14px;
    color: var(--brand-cyan);
    margin: 0 0 14px;
    font-weight: 500;
  }
  .im-team-bio {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--im-text-2);
    margin: 0 0 14px;
  }
  .im-team-link {
    font-size: 13px;
    color: var(--im-text-3);
    text-decoration: none;
  }
  .im-team-link:hover { color: var(--brand-cyan); }

  /* Press list */
  .im-press-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .im-press-item {
    padding: 24px 0;
    border-top: 1px solid var(--im-rule);
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    align-items: baseline;
  }
  .im-press-item:last-child { border-bottom: 1px solid var(--im-rule); }
  .im-press-date {
    font-size: 13px;
    color: var(--im-text-3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .im-press-headline {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--im-text);
    text-decoration: none;
    letter-spacing: -0.01em;
  }
  .im-press-headline:hover { color: var(--brand-cyan); }
  .im-press-outlet {
    font-size: 13px;
    color: var(--im-text-2);
    font-weight: 500;
  }

  @media (max-width: 720px) {
    .im-team-grid { grid-template-columns: 1fr; }
    .im-press-item { grid-template-columns: 1fr; gap: 6px; }
  }

  /* ===== RP subpage styles (mirror IM page patterns with RP brand colors) ===== */
  .rp-page-hero {
    padding: 96px 0 56px;
    background: linear-gradient(180deg, var(--rp-bg) 0%, #FFFFFF 100%);
    border-bottom: 1px solid var(--rp-rule);
    position: relative;
    overflow: hidden;
  }
  .rp-page-hero::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,24,96,0.08), transparent 65%);
    pointer-events: none;
  }
  .rp-page-hero .container { position: relative; }
  .rp-page-hero .crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rp-pink);
    margin-bottom: 16px;
  }
  .rp-page-hero h1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.05;
    margin: 0 0 18px;
    max-width: 20ch;
  }
  .rp-page-hero p.lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--rp-text-2);
    max-width: 60ch;
    margin: 0;
  }

  /* RP prose body */
  .rp-prose {
    padding: 64px 0 100px;
    background: #FFFFFF;
  }
  .rp-prose .container { max-width: 720px; }
  .rp-prose h2 {
    font-family: 'Jost', sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.018em;
    margin: 48px 0 14px;
    line-height: 1.2;
    color: var(--rp-text);
  }
  .rp-prose h2:first-child { margin-top: 0; }
  .rp-prose h3 {
    font-family: 'Jost', sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin: 32px 0 10px;
    letter-spacing: -0.012em;
    color: var(--rp-text);
  }
  .rp-prose p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--rp-text);
  }
  .rp-prose ul, .rp-prose ol {
    margin: 0 0 18px;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.7;
  }
  .rp-prose li { margin-bottom: 6px; }
  .rp-prose strong { font-weight: 600; }
  .rp-prose a {
    color: var(--rp-pink);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
  }
  .rp-prose hr {
    border: none;
    border-top: 1px solid var(--rp-rule);
    margin: 40px 0;
  }

  /* RP FAQ-style accordion (used on /support) */
  .rp-faq-section { margin-bottom: 48px; }
  .rp-faq-section-title {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rp-pink);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .rp-faq-item {
    border-top: 1px solid var(--rp-rule);
    padding: 24px 0;
  }
  .rp-faq-q {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: -0.012em;
    color: var(--rp-text);
  }
  .rp-faq-a {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--rp-text-2);
    margin: 0;
  }

  /* ============================================================ */
  /*  LOGO Ã¢ÂÂ inline SVG sprite                                     */
  /*  Petal fills live as `fill="..."` attributes on the paths     */
  /*  inside each <symbol> so they render correctly through        */
  /*  <use> references (CSS selectors don't cross the shadow       */
  /*  boundary that <use> creates).                                */
  /*  The wordmark uses fill="currentColor" so we can control its  */
  /*  color from the parent <svg> via the `color` property.        */
  /* ============================================================ */
  .logo-svg {
    display: block;
    height: 100%;
    width: auto;
    color: #222222;            /* default wordmark color (Eerie Black) */
  }
  /* In dark sections (e.g., closing CTA), the wordmark flips to Anti-flash White */
  .on-dark .logo-svg { color: #F1F1F1; }

  /* Logo container Ã¢ÂÂ sets height; SVG scales. */
  .logo-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo { height: 28px; }
  .footer-logo { height: 36px; }
  .hero-glyph { height: 52px; }

  /* Glyph-only (just the four colored petals, 0Ã¢ÂÂ391 viewBox) */
  .glyph-only svg { display: block; width: 100%; height: 100%; }

  /* ============================================================ */
  /*  INFLUENCE MOBILE                                            */
  /* ============================================================ */

  .im {
    background: var(--im-bg);
    color: var(--im-text);
    font-family: 'Poppins', sans-serif;
    --logo-wordmark: #222222; /* Eerie Black wordmark on light sections */
  }
  .im a { text-decoration: none; color: inherit; }

  /* Dark sections (used sparingly, e.g. closing CTA) get the white wordmark */
  .im .on-dark {
    background: var(--im-dark-bg);
    color: var(--im-dark-text);
    --logo-wordmark: #F1F1F1;
  }
  .im .on-dark a { color: var(--im-dark-text-2); }
  .im .on-dark a:hover { color: var(--im-dark-text); }

  /* Headings use Jost (Avant Garde substitute) */
  .im h1, .im h2, .im h3, .im h4,
  .im .display, .im .heading {
    font-family: 'Jost', 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: -0.012em;
  }

  /* Nav */
  .im .nav {
    border-bottom: 1px solid var(--im-rule);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 30;
  }
  .im .nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .im .nav-links { display: flex; gap: 28px; }
  .im .nav-links a {
    color: var(--im-text-2);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.15s;
  }
  .im .nav-links a:hover { color: var(--im-text); }
  .im .nav-cta {
    margin-left: auto;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .im .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .im .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.15s;
    cursor: pointer;
    line-height: 1;
  }
  .im .btn-primary {
    background: var(--brand-cyan);
    color: #fff;
  }
  .im .btn-primary:hover {
    background: #1496B9;
    transform: translateY(-1px);
  }
  .im .btn-ghost {
    color: var(--im-text);
    border-color: var(--im-rule-2);
    background: transparent;
  }
  .im .btn-ghost:hover { border-color: var(--im-text); background: var(--im-bg-soft); }
  .im .on-dark .btn-ghost {
    color: var(--im-dark-text-2);
    border-color: var(--im-dark-rule);
  }
  .im .on-dark .btn-ghost:hover {
    color: var(--im-dark-text);
    border-color: rgba(241,241,241,0.4);
    background: rgba(255,255,255,0.04);
  }
  .im .btn-white {
    background: var(--im-text);
    color: var(--brand-black);
  }
  .im .btn-white:hover { background: #fff; }

  /* Hero */
  .im-hero {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  }
  .im-hero::before {
    content: "";
    position: absolute;
    top: -10%; right: -8%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(25,170,209,0.10) 0%, transparent 65%);
    pointer-events: none;
  }
  .im-hero::after {
    content: "";
    position: absolute;
    bottom: -20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(20,198,147,0.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .im-hero .container { position: relative; }
  .im-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-cyan);
    padding: 6px 12px;
    border: 1px solid rgba(25,170,209,0.35);
    border-radius: 999px;
    margin-bottom: 28px;
    background: rgba(25,170,209,0.08);
  }
  .im-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--brand-cyan);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--brand-cyan);
  }
  .im-h1 {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 500;
    letter-spacing: -0.028em;
    line-height: 1.02;
    margin: 0 0 24px;
    max-width: 14ch;
  }
  .im-h1 .grad {
    background: linear-gradient(135deg, var(--brand-mint) 0%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .im-sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.55;
    color: var(--im-text-2);
    max-width: 56ch;
    margin: 0 0 36px;
  }
  .im-hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }
  .im-hero-ctas .btn { padding: 13px 22px; font-size: 14px; }
  .im-hero-micro {
    font-size: 13px;
    color: var(--im-text-3);
    font-weight: 400;
  }

  /* Section base */
  .im-section { padding: 100px 0; border-top: 1px solid var(--im-rule); position: relative; }
  .im-section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: 16px;
  }
  .im-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -0.022em;
    line-height: 1.1;
    margin: 0 0 18px;
    max-width: 22ch;
  }
  .im-section p.lead {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
    color: var(--im-text-2);
    max-width: 60ch;
    margin: 0 0 56px;
  }

  /* Track-record cards */
  .im-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .im-card {
    background: var(--im-surface);
    border: 1px solid var(--im-rule);
    border-radius: 14px;
    padding: 32px;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
  }
  .im-card:hover {
    border-color: var(--im-rule-2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -16px rgba(34,34,34,0.15);
  }
  .im-card .corner-glyph {
    position: absolute;
    top: -28px; right: -28px;
    width: 120px; height: 120px;
    opacity: 0.08;
    pointer-events: none;
  }
  .im-card-meta {
    font-size: 11.5px;
    color: var(--im-text-3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 500;
  }
  .im-card h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
    position: relative;
  }
  .im-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--im-text-2);
    margin: 0;
    font-weight: 400;
    position: relative;
  }

  /* Awards strip */
  .im-awards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .im-award {
    text-align: left;
    padding: 24px 0;
    border-top: 1px solid var(--im-rule);
  }
  .im-award .award-mark {
    font-size: 30px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .im-award-1 .award-mark { color: var(--brand-orange); }
  .im-award-2 .award-mark { color: var(--brand-mint); }
  .im-award-3 .award-mark { color: var(--brand-cyan); }
  .im-award-4 .award-mark { color: var(--brand-red); }
  .im-award .award-label {
    font-size: 13px;
    color: var(--im-text-2);
    line-height: 1.45;
    font-weight: 400;
  }
  .im-award .award-label strong {
    color: var(--im-text);
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
  }

  /* Platform modules */
  .im-platform { background: var(--im-bg-soft); }
  .im-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--im-rule);
    border: 1px solid var(--im-rule);
    border-radius: 16px;
    overflow: hidden;
  }
  .im-module {
    background: #FFFFFF;
    padding: 32px 28px;
    transition: background 0.18s;
  }
  .im-module:hover { background: #FAFAFA; }
  .im-module-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
  }
  .im-module-1 .im-module-icon { background: var(--brand-cyan); }
  .im-module-2 .im-module-icon { background: var(--brand-mint); }
  .im-module-3 .im-module-icon { background: var(--brand-orange); }
  .im-module-4 .im-module-icon { background: var(--brand-red); }
  .im-module-5 .im-module-icon { background: var(--brand-cyan); }
  .im-module-6 .im-module-icon { background: var(--brand-mint); }

  .im-module h4 {
    font-family: 'Jost', sans-serif;
    font-size: 16.5px;
    font-weight: 500;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
  }
  .im-module p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--im-text-2);
    margin: 0;
    font-weight: 400;
  }

  .im-launch-band {
    margin-top: 56px;
    padding: 28px 32px;
    background: #FFFFFF;
    border: 1px solid var(--im-rule-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 24px -16px rgba(34,34,34,0.10);
  }
  .im-launch-band-num {
    font-family: 'Jost', sans-serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--brand-mint);
    line-height: 1;
  }
  .im-launch-band-text {
    font-size: 15px;
    color: var(--im-text-2);
    line-height: 1.5;
    font-weight: 400;
  }

  /* Rankings cards */
  .im-rankings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }
  .im-rank {
    border: 1px solid var(--im-rule-2);
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  }
  .im-rank:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -16px rgba(34,34,34,0.12);
  }
  .im-rank-name {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--im-text-3);
    margin-bottom: 14px;
    font-weight: 500;
  }
  .im-rank-value {
    font-family: 'Jost', sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.022em;
    color: var(--im-text);
    line-height: 1;
  }
  .im-rank-1 .im-rank-value { color: var(--brand-cyan); }
  .im-rank-2 .im-rank-value { color: var(--brand-mint); }
  .im-rank-3 .im-rank-value { color: var(--brand-orange); }
  .im-rank-4 .im-rank-value { color: var(--brand-red); }
  .im-rank-cat {
    font-size: 12.5px;
    color: var(--im-text-2);
    margin-top: 8px;
    font-weight: 400;
  }
  .im-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .im-three-col h4 {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .im-three-col p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--im-text-2);
    margin: 0;
    font-weight: 400;
  }

  /* Partners list */
  .im-partners-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
  }
  .im-partners-list li {
    font-size: 15px;
    color: var(--im-text);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
    font-weight: 400;
  }
  .im-partners-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 9px; height: 9px;
    border-radius: 50%;
  }
  .im-partners-list li:nth-child(6n+1)::before { background: var(--brand-red); }
  .im-partners-list li:nth-child(6n+2)::before { background: var(--brand-orange); }
  .im-partners-list li:nth-child(6n+3)::before { background: var(--brand-cyan); }
  .im-partners-list li:nth-child(6n+4)::before { background: var(--brand-mint); }
  .im-partners-list li:nth-child(6n+5)::before { background: var(--brand-orange); }
  .im-partners-list li:nth-child(6n+6)::before { background: var(--brand-cyan); }
  .im-partners-list li span {
    color: var(--im-text-2);
    font-size: 14px;
    font-weight: 400;
  }

  /* Closing CTA Ã¢ÂÂ the one dark accent section, mirrors brand book "Thank You!" page */
  .im-cta {
    padding: 140px 0;
    text-align: center;
    background: var(--im-dark-bg);
    color: var(--im-dark-text);
    position: relative;
    overflow: hidden;
  }
  .im-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 700px 280px at 50% 80%, rgba(25,170,209,0.20), transparent 65%);
    pointer-events: none;
  }
  .im-cta .corner-glyph {
    position: absolute;
    opacity: 0.06;
    pointer-events: none;
  }
  .im-cta .corner-glyph.left { left: -60px; top: 40px; width: 240px; height: 240px; }
  .im-cta .corner-glyph.right { right: -60px; bottom: 40px; width: 240px; height: 240px; }
  .im-cta h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 auto 32px;
    max-width: 22ch;
    position: relative;
  }
  .im-cta-ctas { display: flex; gap: 12px; justify-content: center; position: relative; }
  .im-cta-ctas .btn { padding: 14px 24px; font-size: 14.5px; }

  /* Footer trust badges row (above legal links) */
  .im-trust-row {
    border-top: 1px solid var(--im-rule);
    padding: 32px 0;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .im-trust-row img {
    height: 56px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.18s, transform 0.18s;
  }
  .im-trust-row a:hover img { opacity: 1; transform: translateY(-2px); }
  .im-trust-row .bbb { height: 72px; }
  .im-address {
    text-align: center;
    font-size: 12.5px;
    color: var(--im-text-3);
    padding: 8px 0 20px;
    line-height: 1.55;
  }
  .im-address a { color: var(--im-text-2); text-decoration: none; }
  .im-address a:hover { color: var(--brand-cyan); }
  .im-social {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-left: 16px;
  }
  .im-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--im-text);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
    text-decoration: none;
  }
  .im-social a:hover { background: var(--brand-cyan); }
  .im-social svg { width: 16px; height: 16px; }

  /* Footer Ã¢ÂÂ light, with dark text */
  .im-footer {
    border-top: 1px solid var(--im-rule);
    padding: 56px 0 32px;
    background: var(--im-bg-soft);
    --logo-wordmark: #222222;
  }
  .im-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
  }
  .im-footer h5 {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--im-text-3);
    margin: 0 0 14px;
    font-weight: 500;
  }
  .im-footer ul { list-style: none; padding: 0; margin: 0; }
  .im-footer ul li { margin-bottom: 8px; }
  .im-footer a {
    color: var(--im-text-2);
    font-size: 13.5px;
    font-weight: 400;
  }
  .im-footer a:hover { color: var(--im-text); }
  .im-footer-bottom {
    border-top: 1px solid var(--im-rule);
    padding-top: 28px;
    color: var(--im-text-3);
    font-size: 12.5px;
    font-weight: 400;
  }

  /* ============================================================ */
  /*  REWARDED PLAY (placeholder brand Ã¢ÂÂ waiting on RP assets)    */
  /* ============================================================ */

  .rp {
    background: var(--rp-bg);
    color: var(--rp-text);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.005em;
  }
  .rp a { text-decoration: none; color: inherit; }
  .rp h1, .rp h2, .rp h3, .rp h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: -0.018em;
  }

  .rp-asset-notice {
    background: var(--placeholder-bg);
    border-bottom: 1px solid var(--placeholder-border);
    color: var(--placeholder-text);
    padding: 10px 32px;
    font-size: 12.5px;
    font-weight: 500;
    text-align: center;
  }

  .rp .nav {
    background: rgba(255,248,251,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rp-rule);
    position: sticky;
    top: 0;
    z-index: 30;
  }
  .rp .nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  /* RP logo Ã¢ÂÂ uses the real PNG. Nav uses the full mark+wordmark logo. */
  .rp-logo-img {
    display: block;
    height: 38px;
    width: auto;
  }
  .rp-logo-img.footer { height: 44px; }
  .rp .nav-links { display: flex; gap: 28px; }
  .rp .nav a {
    color: var(--rp-text-2);
    font-size: 14px;
    font-weight: 500;
  }
  .rp .nav a:hover { color: var(--rp-text); }
  .rp .nav-cta { margin-left: auto; }
  .rp nav .btn-primary { background: var(--rp-pink); color: #fff; box-shadow: 0 4px 14px rgba(232,24,96,0.25); }
  .rp nav .btn-primary:hover { background: #c9145a; }
.rp nav .btn-ios-soon { display: inline-flex; align-items: center; padding: 0.55rem 1.1rem; border-radius: 9999px; border: 1.5px solid #d0c8cc; color: #999; font-size: 0.875rem; font-weight: 600; cursor: default; white-space: nowrap; }
  .rp .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .rp .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.15s;
    cursor: pointer;
    border: none;
    line-height: 1;
  }
  .rp .btn-primary {
    background: var(--rp-text);
    color: #fff;
    box-shadow: 0 6px 20px rgba(26,26,26,0.16);
  }
  .rp .btn-primary:hover { background: #000; transform: translateY(-1px); }
  .rp .btn-secondary {
    background: #fff;
    color: var(--rp-text);
    border: 1px solid var(--rp-rule);
  }

  .rp-hero {
    padding: 96px 0 90px;
    background: linear-gradient(180deg, var(--rp-bg) 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
  }
  .rp-hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,24,96,0.10), transparent 70%);
    pointer-events: none;
  }
  .rp-hero::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(91,184,210,0.10), transparent 70%);
    pointer-events: none;
  }
  .rp-hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
  }
  .rp-hero h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.04;
    margin: 0 0 22px;
  }
  .rp-hero h1 .accent {
    color: var(--rp-pink);
  }
  .rp-hero p {
    font-size: 19px;
    line-height: 1.55;
    color: var(--rp-text-2);
    margin: 0 0 32px;
    max-width: 48ch;
    font-weight: 400;
  }
  .rp-hero-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
  }
  .rp-hero-micro {
    font-size: 13px;
    color: var(--rp-text-3);
  }
  .rp-phone-mock {
    aspect-ratio: 9/16;
    max-width: 340px;
    margin-left: auto;
    background: linear-gradient(160deg, #2A2A2A 0%, #1A1A1A 100%);
    border-radius: 36px;
    padding: 14px;
    box-shadow: 0 30px 80px -20px rgba(34,31,31,0.35), 0 0 0 8px rgba(34,31,31,0.04);
  }
  .rp-phone-inner {
    background: linear-gradient(180deg, var(--rp-pink) 0%, #B5124B 100%);
    border-radius: 26px;
    height: 100%;
    padding: 28px 22px;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
  .rp-phone-mock .balance { font-size: 13px; opacity: 0.85; margin-bottom: 6px; }
  .rp-phone-mock .amount {
    font-family: 'Jost', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 4px;
    line-height: 1;
  }
  .rp-phone-mock .points-unit {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
    margin-left: 4px;
  }
  .rp-phone-mock .subline { font-size: 12.5px; opacity: 0.85; margin-bottom: 22px; }
  .rp-phone-mock .section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.78;
    margin: 0 0 8px;
    font-weight: 600;
  }
  .rp-phone-mock .pill {
    background: rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    font-size: 12.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .rp-phone-mock .pill strong {
    font-weight: 600;
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
  }
  .rp-phone-mock .pill .pts {
    font-weight: 700;
    font-size: 12.5px;
    background: rgba(255,255,255,0.22);
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .rp-phone-mock .cta-pill {
    background: #fff;
    color: var(--rp-text);
    padding: 13px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    margin-top: auto;
    font-size: 14px;
  }

  /* Video variant of the phone mock Ã¢ÂÂ replaces the UI mockup in the hero.
     The dark phone frame stays; the inner area shows the actual ad creative. */
  .rp-phone-video {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 26px;     /* matches the .rp-phone-inner radius */
    object-fit: cover;
    background: #000;
  }
  .rp-phone-mock.has-video {
    max-width: 320px;
    overflow: hidden;
  }
  /* Subtle "tap to play" hint via custom poster styling */
  .rp-phone-mock.has-video::after {
    content: "";
    pointer-events: none;
  }

  .rp-proof {
    padding: 56px 0;
    border-bottom: 1px solid var(--rp-rule);
    background: #fff;
  }
  .rp-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
  }
  .rp-proof-num {
    font-family: 'Jost', sans-serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--rp-text);
    line-height: 1;
  }
  .rp-proof-num.c1 { color: var(--rp-pink); }
  .rp-proof-num.c2 { color: var(--rp-cyan); }
  .rp-proof-num.c3 { color: var(--rp-pink); }
  .rp-proof-num.c4 { color: var(--rp-cyan); }
  .rp-proof-label {
    font-size: 13.5px;
    color: var(--rp-text-2);
    margin-top: 8px;
  }

  .rp-section { padding: 100px 0; background: #fff; }
  .rp-section.alt { background: var(--rp-bg); }
  .rp-section-head { text-align: center; max-width: 60ch; margin: 0 auto 56px; }
  .rp-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    margin: 0 0 16px;
  }
  .rp-section .lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--rp-text-2);
    margin: 0;
  }

  .rp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .rp-step {
    background: #fff;
    border: 1px solid var(--rp-rule);
    border-radius: 18px;
    padding: 36px 32px;
    text-align: center;
  }
  .rp-step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
  }
  .rp-step-1 .rp-step-num { background: var(--rp-pink); }
  .rp-step-2 .rp-step-num { background: var(--rp-cyan); }
  .rp-step-3 .rp-step-num { background: var(--rp-pink); }
  .rp-step h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 8px;
  }
  .rp-step p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--rp-text-2);
    margin: 0;
  }

  .rp-rewards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .rp-reward {
    background: #fff;
    border: 1px solid var(--rp-rule);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.15s, border-color 0.15s;
  }
  .rp-reward:hover {
    transform: translateY(-2px);
    border-color: var(--rp-pink);
    box-shadow: 0 12px 32px -16px rgba(232,24,96,0.20);
  }
  .rp-reward-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--rp-text);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 16px;
  }
  .rp-reward-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--rp-text);
  }
  .rp-reward-amt {
    font-size: 13px;
    color: var(--rp-text-3);
    margin-top: 4px;
  }

  .rp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .rp-review {
    background: #fff;
    border: 1px solid var(--rp-rule);
    border-radius: 16px;
    padding: 28px;
  }
  .rp-stars { color: var(--rp-pink); font-size: 15px; margin-bottom: 14px; }
  .rp-review p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--rp-text);
    margin: 0 0 18px;
  }
  .rp-reviewer { font-size: 13px; color: var(--rp-text-3); }

  .rp-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--rp-pink) 0%, #B5124B 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .rp-cta h2 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 24px;
    color: #fff;
  }
  .rp-cta p { font-size: 18px; color: rgba(255,255,255,0.82); margin: 0 0 36px; }
  .rp-cta .btn-primary { background: #fff; color: var(--rp-pink); }
  .rp-cta .btn-primary:hover { background: #FFF8FB; transform: translateY(-2px); }

  .rp-footer {
    background: var(--rp-bg);
    color: var(--rp-text-2);
    padding: 56px 0 32px;
    border-top: 1px solid var(--rp-rule);
  }
  .rp-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
  }
  .rp-footer h5 {
    color: var(--rp-text);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 14px;
    font-weight: 600;
  }
  .rp-footer ul { list-style: none; padding: 0; margin: 0; }
  .rp-footer ul li { margin-bottom: 8px; }
  .rp-footer a {
    color: var(--rp-text-2);
    font-size: 13.5px;
  }
  .rp-footer a:hover { color: var(--rp-pink); }
  .rp-footer-bottom {
    border-top: 1px solid var(--rp-rule);
    padding-top: 28px;
    font-size: 12.5px;
    color: var(--rp-text-3);
  }

  /* ====== Placeholder bracketed text ====== */
  .ph {
    display: inline-block;
    background: var(--placeholder-bg);
    border: 1px dashed var(--placeholder-border);
    color: var(--placeholder-text);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.86em;
    font-weight: 500;
    letter-spacing: -0.005em;
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .im-cards, .im-modules, .im-rankings, .im-three-col,
    .rp-steps, .rp-rewards-grid, .rp-reviews-grid,
    .im-footer-grid, .rp-footer-grid, .im-awards, .rp-proof-grid {
      grid-template-columns: 1fr 1fr !important;
    }
    .rp-hero .container { grid-template-columns: 1fr; }
    .rp-phone-mock { margin: 0 auto; }
    .im-launch-band { flex-wrap: wrap; }
  }

  /* ====== Hidden SVG sprite Ã¢ÂÂ defines the IM logo and glyph once, reuse anywhere ====== */
  .svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

  /* ============================================================
     ADDITIONS (2026-06-08e): iOS waitlist, players, payouts,
     investor block, brand callout, secondary CTA
     ============================================================ */

  /* ---------------- iOS waitlist (full-width band) ---------------- */
  .rp-ios {
    background: linear-gradient(135deg, #FFF8FB 0%, #FFEEF3 100%);
    padding: clamp(56px, 8vw, 100px) 0;
    border-block: 1px solid var(--rp-rule);
  }
  .rp-ios-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
  }
  .rp-ios-copy { max-width: 540px; }
  .rp-ios-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rp-pink);
    margin: 0 0 14px;
  }
  .rp-ios h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.04;
    letter-spacing: -.022em;
    color: var(--rp-text);
    margin: 0 0 18px;
  }
  .rp-ios h2 em {
    font-style: italic;
    color: var(--rp-pink);
  }
  .rp-ios-lead {
    font-size: clamp(15.5px, 1.4vw, 17px);
    line-height: 1.55;
    color: var(--rp-text-2);
    margin: 0 0 24px;
    max-width: 50ch;
  }
  .rp-ios-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 0 16px;
    position: relative;
  }
  .rp-ios-form input[type="email"] {
    flex: 1 1 260px;
    min-width: 240px;
    padding: 14px 18px;
    border-radius: 100px;
    border: 2px solid rgba(232,24,96,0.18);
    background: #fff;
    font: 15px 'Poppins', sans-serif;
    color: var(--rp-text);
    transition: border-color .18s, box-shadow .18s;
  }
  .rp-ios-form input[type="email"]:focus {
    outline: none;
    border-color: var(--rp-pink);
    box-shadow: 0 0 0 4px rgba(232,24,96,0.12);
  }
  .rp-ios-submit {
    padding: 14px 26px;
    border-radius: 100px;
    border: 0;
    background: var(--rp-pink);
    color: #fff;
    font: 700 15px 'Poppins', sans-serif;
    letter-spacing: -.005em;
    cursor: pointer;
    transition: background .18s, transform .18s;
    box-shadow: 0 10px 24px -10px rgba(232,24,96,.5);
  }
  .rp-ios-submit:hover {
    background: #c61354;
    transform: translateY(-1px);
  }
  .rp-ios-success {
    display: none;
    color: #0e7c4f;
    font-weight: 600;
    font-size: 15px;
    margin: 6px 0 0;
  }
  .rp-ios-error {
    display: none;
    color: #c61354;
    font-size: 13.5px;
    margin: 6px 0 0;
  }
  .rp-ios-tease {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .rp-ios-tease li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--rp-text-2);
  }
  .rp-ios-tease span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rp-pink);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
  }
  .rp-ios-side { display: grid; place-items: center; }
  .rp-ios-phone {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9/19;
    background: #1a1a1a;
    border-radius: 42px;
    padding: 10px;
    box-shadow: 0 30px 80px -25px rgba(34,31,31,.4);
  }
  .rp-ios-screen {
    background: linear-gradient(180deg, #f7f7f9 0%, #ececf0 100%);
    border-radius: 32px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    overflow: hidden;
  }
  .rp-ios-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: #1a1a1a;
    border-radius: 100px;
  }
  .rp-ios-time {
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--rp-text);
    z-index: 1;
  }

  /* ---------------- iOS waitlist phone mockup (restyled) ---------------- */
  .rp-ios-stage {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 22px 26px;
    text-align: center;
    background:
      radial-gradient(ellipse at 50% 20%, rgba(232,24,96,0.18) 0%, transparent 60%),
      linear-gradient(180deg, #ffffff 0%, #fff5f9 100%);
  }
  .rp-ios-iconcard {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    background: #fff;
    box-shadow:
      0 18px 36px -14px rgba(232,24,96,0.35),
      0 0 0 1px var(--rp-rule) inset;
    display: grid;
    place-items: center;
    padding: 14px;
    margin-bottom: 22px;
  }
  .rp-ios-iconcard img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .rp-ios-wordmark {
    max-width: 160px;
    height: auto;
    width: auto;
    margin-bottom: 24px;
  }
  .rp-ios-coming {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -.025em;
    color: var(--rp-pink);
    text-transform: uppercase;
  }
  .rp-ios-coming-sub {
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rp-text-3);
  }

  /* ---------------- payouts grid ---------------- */
  .rp-payouts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
    margin-top: 24px;
  }
  .rp-payout {
    background: #fff;
    border: 1px solid var(--rp-rule);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 16px 38px -22px rgba(34,31,31,.18);
    transition: transform .18s, box-shadow .18s;
  }
  .rp-payout:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px -22px rgba(34,31,31,.25);
  }
  .rp-payout-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .rp-payout-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--rp-rule);
  }
  .rp-payout-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .rp-payout-brand {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--rp-text);
    letter-spacing: -.01em;
  }
  .rp-payout-sub {
    font-size: 12.5px;
    color: var(--rp-text-3);
    margin-top: 2px;
  }
  .rp-payout-amount {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--rp-text);
  }
  .rp-payout-amount small {
    font-size: 18px;
    font-weight: 600;
    color: var(--rp-text-2);
    letter-spacing: 0;
  }
  .rp-payout-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--rp-text-3);
    border-top: 1px dashed var(--rp-rule);
    padding-top: 14px;
  }
  .rp-payout-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #0e7c4f;
  }
  .rp-payout-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #14C693;
  }
  .rp-payouts-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--rp-text-3);
    margin: 30px auto 0;
    max-width: 60ch;
    font-style: italic;
  }

  /* ---------------- player profile cards ---------------- */
  .rp-players {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
    margin-top: 24px;
  }
  .rp-player {
    background: #fff;
    border: 1px solid var(--rp-rule);
    border-radius: 22px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .18s, box-shadow .18s;
  }
  .rp-player:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px -22px rgba(34,31,31,.2);
  }
  .rp-player-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
  }
  .rp-player-name {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.01em;
    color: var(--rp-text);
  }
  .rp-player-earned {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--rp-text);
  }
  .rp-player-earned em {
    font-style: normal;
    color: var(--rp-pink);
  }
  .rp-player-quote {
    font-size: 15px;
    line-height: 1.55;
    color: var(--rp-text-2);
    margin: 0;
  }
  .rp-players-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--rp-text-3);
    margin: 32px auto 0;
    max-width: 70ch;
    line-height: 1.55;
  }

  /* ---------------- investor section (dark, restrained) ---------------- */
  .rp-investor-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #fff;
  }
  .rp-investor {
    background: var(--rp-black);
    border-radius: 26px;
    padding: clamp(36px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }
  .rp-investor-copy { color: rgba(241,241,241,.85); }
  .rp-investor-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #EF8C41;
    margin: 0 0 16px;
  }
  .rp-investor h2 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.06;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 18px;
  }
  .rp-investor h2 em {
    font-style: italic;
    color: #EF8C41;
  }
  .rp-investor p {
    color: rgba(241,241,241,.75);
    font-size: 15.5px;
    line-height: 1.55;
    margin: 0 0 22px;
    max-width: 52ch;
  }
  .rp-investor-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E86262;
    color: #fff;
    padding: 16px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.005em;
    box-shadow: 0 14px 30px -12px rgba(232,98,98,.5);
    transition: background .18s, transform .18s;
  }
  .rp-investor-cta:hover {
    background: #d24f4f;
    transform: translateY(-2px);
  }
  .rp-investor-disclosure {
    font-size: 11px !important;
    color: rgba(241,241,241,.45) !important;
    line-height: 1.55 !important;
    margin: 24px 0 0 !important;
    max-width: 62ch !important;
  }
  .rp-investor-side {
    text-align: right;
  }
  .rp-investor-big {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(58px, 9vw, 110px);
    line-height: .95;
    letter-spacing: -.03em;
    color: #14C693;
  }
  .rp-investor-lbl {
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(241,241,241,.6);
    font-weight: 600;
    margin-top: 10px;
  }

  /* ---------------- brand/creator callout ---------------- */
  .rp-brandcallout {
    padding: clamp(28px, 4vw, 48px) 0;
    background: var(--rp-bg);
    border-block: 1px solid var(--rp-rule);
  }
  .rp-brandcallout p {
    margin: 0;
    font-size: 16px;
    color: var(--rp-text-2);
    text-align: center;
    line-height: 1.55;
  }
  .rp-brandcallout p b {
    color: var(--rp-text);
    font-weight: 700;
  }
  .rp-brandcallout a {
    color: var(--rp-pink);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(232,24,96,.3);
    transition: border-color .18s;
  }
  .rp-brandcallout a:hover {
    border-color: var(--rp-pink);
  }

  /* ---------------- iOS secondary CTA button in hero ---------------- */
  .rp-ios-cta {
    background: #fff !important;
    color: var(--rp-pink) !important;
    border: 2px solid var(--rp-pink) !important;
  }
  .rp-ios-cta:hover {
    background: var(--rp-pink) !important;
    color: #fff !important;
  }

  /* CTA dual-button row at bottom */
  .rp-cta-row {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
  }

  /* ---------------- responsive ---------------- */
  @media (max-width: 880px) {
    .rp-ios-grid { grid-template-columns: 1fr; }
    .rp-ios-side { order: -1; }
    .rp-payouts { grid-template-columns: 1fr 1fr; }
    .rp-players { grid-template-columns: 1fr; }
    .rp-investor { grid-template-columns: 1fr; text-align: center; }
    .rp-investor-side { text-align: center; }
  }
  @media (max-width: 560px) {
    .rp-payouts { grid-template-columns: 1fr; }
    .rp-ios-form { flex-direction: column; }
    .rp-ios-form input[type="email"], .rp-ios-submit { width: 100%; }
  }

  /* ---------------- Jamie video card on homepage ---------------- */
  .rp-player--video .rp-player-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 14px 30px -16px rgba(34,31,31,.28);
  }
  .rp-player-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .rp-player-video-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 11px 7px 9px;
    border-radius: 100px;
    pointer-events: none;
    backdrop-filter: blur(8px);
  }
  /* When the user has clicked play, the badge is no longer useful Ã¢ÂÂ fade it */
  .rp-player-video[played] + .rp-player-video-badge,
  .rp-player-video-wrap:has(video:not([paused])) .rp-player-video-badge {
    opacity: 0;
    transition: opacity .2s;
  }

  /* ---------------- Featured video block (reviews page) ---------------- */
  .rp-featured-video {
    display: grid;
    grid-template-columns: minmax(0, 280px) 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--rp-rule);
    border-radius: 22px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 20px 44px -22px rgba(34,31,31,.18);
  }
  .rp-featured-video-el {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 14px;
    background: #1a1a1a;
    display: block;
    object-fit: cover;
  }
  .rp-featured-video-name {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 28px);
    letter-spacing: -.01em;
    color: var(--rp-text);
  }
  .rp-featured-video-earned {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--rp-text);
    margin-top: 6px;
  }
  .rp-featured-video-earned em {
    font-style: normal;
    color: var(--rp-pink);
  }
  .rp-featured-video-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--rp-text-3);
    line-height: 1.55;
    max-width: 38ch;
  }
  @media (max-width: 720px) {
    .rp-featured-video {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .rp-featured-video-el {
      max-width: 260px;
      margin: 0 auto;
    }
    .rp-featured-video-meta {
      text-align: center;
    }
    .rp-featured-video-note {
      margin: 14px auto 0;
    }
  }

  /* ---------------- 4-column reviews grid variant (reviews page) ---------------- */
  .rp-reviews-grid--four {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
  }
  @media (min-width: 1080px) {
    .rp-reviews-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 720px) {
    .rp-reviews-grid--four { grid-template-columns: 1fr; }
  }

  /* ---------------- Featured (highest-payout) redemption card ---------------- */
  .rp-payout--featured {
    border: 2px solid var(--rp-pink);
    box-shadow: 0 24px 50px -22px rgba(232,24,96,.25);
    position: relative;
  }
  .rp-payout--featured::before {
    content: "Highest this week";
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--rp-pink);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    box-shadow: 0 6px 14px -6px rgba(232,24,96,.5);
  }
  .rp-payout--featured .rp-payout-amount {
    color: var(--rp-pink);
  }

  /* ---------------- 3-step infographic (replaces .rp-steps text cards) ---------------- */
  .rp-steps-image {
    max-width: 980px;
    margin: 0 auto;
  }
  .rp-steps-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  /* ---------------- 3-step section: install-to-paid video ---------------- */
  .rp-steps-video {
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
  }
  .rp-steps-video-el {
    width: 100%;
    aspect-ratio: 9/20;
    object-fit: cover;
    background: #1a1a1a;
    border-radius: 28px;
    display: block;
    box-shadow: 0 30px 70px -25px rgba(34,31,31,.35);
  }
  .rp-steps-video-labels {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: var(--rp-text-2);
  }
  .rp-steps-video-labels span { flex: 1; line-height: 1.35; }
  .rp-steps-video-labels b {
    color: var(--rp-pink);
    font-weight: 700;
    margin-right: 4px;
  }
  @media (max-width: 720px) {
    .rp-steps-video { max-width: 320px; }
    .rp-steps-video-labels {
      flex-direction: column;
      gap: 8px;
      text-align: left;
      max-width: 280px;
      margin: 22px auto 0;
    }
  }
