const CHECKOUT_URL =
  "https://marketterminal.com/s/daily-ai-stock-picks-email#checkout";

const picks = [
  { ticker: "WDS", result: "+8.70%", gain: "+$87.00", bars: 14 },
  { ticker: "PRSU", result: "+4.24%", gain: "+$42.40", bars: 11 },
  { ticker: "RPTX", result: "+9.81%", gain: "+$98.10", bars: 16 },
  { ticker: "QCLS", result: "+6.43%", gain: "+$64.30", bars: 13 },
];

function LogoMark() {
  return (
    <div className="brand" aria-label="Market Terminal">
      <span className="brand-mark" aria-hidden="true">
        <i />
        <i />
      </span>
      <span>
        <strong>MARKET TERMINAL</strong>
        <small>INDEPENDENT RESEARCH DESK</small>
      </span>
    </div>
  );
}

function CTA({
  children,
  className = "",
  label,
}: {
  children: React.ReactNode;
  className?: string;
  label?: string;
}) {
  return (
    <a
      className={`cta ${className}`}
      href={CHECKOUT_URL}
      aria-label={label}
    >
      <span>{children}</span>
      <span className="cta-arrow" aria-hidden="true">
        →
      </span>
    </a>
  );
}

function LineChart({ bars = 14 }: { bars?: number }) {
  return (
    <div className="line-chart" aria-hidden="true">
      <div className="chart-grid" />
      <div className="entry-window" />
      <div className="chart-label entry-label">SETUP</div>
      <div className="chart-label signal-label">AI SIGNAL</div>
      {Array.from({ length: bars }).map((_, index) => {
        const height = 30 + ((index * 19 + bars * 7) % 58);
        const open = 16 + ((index * 13) % 34);
        const up = index % 4 !== 1;
        return (
          <span
            className={`candle ${up ? "up" : "down"}`}
            key={index}
            style={
              {
                "--h": `${height}px`,
                "--o": `${open}px`,
                "--i": index,
              } as React.CSSProperties
            }
          />
        );
      })}
      <div className="chart-trend trend-a" />
      <div className="chart-trend trend-b" />
      <div className="chart-trend trend-c" />
      <div className="chart-trend trend-d" />
    </div>
  );
}

function ProductEmail() {
  return (
    <div className="product-email-wrap" aria-label="Illustrative pick email">
      <div className="email-shadow" aria-hidden="true" />
      <article className="product-email">
        <header className="email-chrome">
          <span className="window-dots" aria-hidden="true">
            <i />
            <i />
            <i />
          </span>
          <span>MT / MORNING DISPATCH</span>
          <span className="online">
            <i aria-hidden="true" /> MODEL ONLINE
          </span>
        </header>
        <div className="email-subject">
          <span>TODAY&apos;S HIGHEST-RANKED IDEA</span>
          <h3>One signal worth your attention before the bell.</h3>
          <div>
            <span>To: You · 6:14 AM ET</span>
            <span>Read time: 58 sec</span>
          </div>
        </div>
        <div className="email-pick">
          <div className="ticker-block">
            <span className="ticker">WDS</span>
            <div>
              <strong>WOODSIDE ENERGY</strong>
              <small>NYSE · ENERGY</small>
            </div>
          </div>
          <span className="rank">AI RANK #01</span>
          <div className="email-chart">
            <LineChart bars={15} />
          </div>
          <div className="email-reason">
            <span>WHY IT RANKED</span>
            <p>
              Relative strength and volume trend cleared the morning scan.
              Review the setup and risk note before acting.
            </p>
          </div>
          <div className="email-data">
            <div>
              <span>SETUP</span>
              <strong>Qualified</strong>
            </div>
            <div>
              <span>RISK NOTE</span>
              <strong>Included</strong>
            </div>
            <div>
              <span>MODEL SCORE</span>
              <strong>High rank</strong>
            </div>
          </div>
          <p className="email-footnote">
            Illustrative email format. Educational research only.
          </p>
        </div>
      </article>
    </div>
  );
}

function VideoSlot() {
  return (
    <details className="video-slot">
      <summary aria-label="Play the Market Terminal scan walkthrough">
        <div className="video-poster">
          <span className="video-tag">PRODUCT WALKTHROUGH / 02:11</span>
          <div className="video-grid" aria-hidden="true">
            <span>1,250</span>
            <i>SCAN</i>
            <span>3</span>
          </div>
          <div className="play-button" aria-hidden="true">
            <i />
          </div>
          <div className="video-caption">
            <strong>See the scan become one useful email.</strong>
            <span>Click to play the 60-second product story</span>
          </div>
        </div>
      </summary>
      <div className="walkthrough" aria-live="polite">
        <div>
          <span>01</span>
          <strong>SCAN</strong>
          <small>1,250+ stocks</small>
        </div>
        <i aria-hidden="true">→</i>
        <div>
          <span>02</span>
          <strong>RISK-GATE</strong>
          <small>Noise removed</small>
        </div>
        <i aria-hidden="true">→</i>
        <div>
          <span>03</span>
          <strong>DELIVER</strong>
          <small>2–3 ranked ideas</small>
        </div>
      </div>
    </details>
  );
}

function PickCard({
  ticker,
  result,
  gain,
  bars,
}: {
  ticker: string;
  result: string;
  gain: string;
  bars: number;
}) {
  return (
    <article className="pick-card">
      <LineChart bars={bars} />
      <div className="pick-result">
        <div>
          <span className="pick-ticker">{ticker}</span>
          <span className="pick-percent">{result}</span>
        </div>
        <p>
          Hypothetical <strong>$1,000</strong> stake
        </p>
        <strong className="pick-gain">{gain}</strong>
      </div>
    </article>
  );
}

function SectionLabel({ children }: { children: React.ReactNode }) {
  return <p className="section-label">{children}</p>;
}

export default function Home() {
  return (
    <main>
      <div className="sticky-offer">
        <p>
          You&apos;re one boring pick away from paying for this whole year.
          <span>
            <b>$97/yr</b> <s>$297</s>
          </span>
        </p>
        <CTA className="sticky-cta" label="Get a full year of AI stock picks">
          GET THE PICKS · $97/YR
        </CTA>
      </div>

      <section className="hero">
        <div className="site-masthead shell">
          <LogoMark />
          <div className="market-status">
            <span>
              <i aria-hidden="true" /> AI SCANNER ACTIVE
            </span>
            <span>1,250+ EQUITIES MONITORED</span>
            <span>NEXT DISPATCH: PRE-MARKET</span>
          </div>
        </div>
        <div className="hero-grid shell">
          <div className="hero-copy">
            <p className="eyebrow">
              FOUNDING MEMBER RATE — 67% BELOW THE REGULAR $297/YR VALUE
            </p>
            <h1>
              AI Stock Picks.
              <br />
              In Your Inbox.
              <em>Before The Market Wakes Up.</em>
            </h1>
            <p className="hero-subhead">
              A few times a week, an AI that scans{" "}
              <strong>1,250+ stocks around the clock</strong> sends you its
              highest-ranked ideas — with the chart, the entry, and the reason
              why. You read it in <strong>60 seconds.</strong> That&apos;s the
              whole job.
            </p>
            <div className="hero-offer">
              <div className="price">
                <s>$297/yr</s>
                <strong>$97/yr</strong>
                <small>
                  <b>Less than $1.87/week</b> · renews at $97/year until
                  canceled
                </small>
              </div>
              <CTA label="Get a full year for $97">
                Get A Full Year For $97
              </CTA>
            </div>
            <p className="refund-line">
              <span>30-DAY FULL REFUND.</span> No questions. Keep every pick we
              sent.
            </p>
            <ul className="hero-trust" aria-label="Membership benefits">
              <li>No app to learn</li>
              <li>No brokerage connection</li>
              <li>Cancel anytime</li>
            </ul>
          </div>
          <div className="hero-product">
            <ProductEmail />
          </div>
        </div>
        <div className="hero-video shell">
          <VideoSlot />
        </div>
      </section>

      <section className="credibility">
        <div className="shell credibility-inner">
          <span>TRACKING THE SAME DATA STREAMS AS</span>
          <div>
            <strong>BLOOMBERG</strong>
            <strong>CNBC</strong>
            <strong>REUTERS</strong>
          </div>
          <small>Sources, not endorsements.</small>
        </div>
      </section>

      <section className="mechanism section-pad">
        <div className="shell">
          <div className="section-intro">
            <div>
              <SectionLabel>THE MECHANISM / 01</SectionLabel>
              <h2>
                1,250 Stocks Go In.
                <em>3 Ideas Come Out.</em>
              </h2>
            </div>
            <div className="section-copy">
              <p>
                Every trading day, the AI scans over 1,250 stocks — price
                action, volume, momentum, risk conditions — and ranks every
                single one.
              </p>
              <p>Then it throws almost all of them away.</p>
              <p>
                Only the top-ranked setups make it to your inbox. A few times a
                week. Never more.
              </p>
            </div>
          </div>
          <div className="scan-machine">
            <div className="scan-source">
              <span className="scan-count">1,250+</span>
              <strong>UNIVERSE</strong>
              <div className="ticker-cloud" aria-hidden="true">
                {[
                  "AAPL",
                  "MSFT",
                  "NVDA",
                  "WDS",
                  "RPTX",
                  "PRSU",
                  "QCLS",
                  "AMD",
                  "CAT",
                  "VRT",
                  "MU",
                  "ETN",
                  "GE",
                  "UBER",
                  "META",
                  "AMZN",
                ].map((ticker) => (
                  <i key={ticker}>{ticker}</i>
                ))}
              </div>
            </div>
            <div className="scan-funnel" aria-hidden="true">
              <span>PRICE ACTION</span>
              <span>VOLUME</span>
              <span>MOMENTUM</span>
              <span>RISK GATE</span>
            </div>
            <div className="scan-output">
              <span className="scan-count">03</span>
              <strong>QUALIFIED</strong>
              <div className="qualified-list">
                <span>
                  <b>01</b> WDS <i>HIGH RANK</i>
                </span>
                <span>
                  <b>02</b> VRT <i>HIGH RANK</i>
                </span>
                <span>
                  <b>03</b> MU <i>WATCH</i>
                </span>
              </div>
            </div>
            <div className="scan-email">
              <span>@</span>
              <strong>ONE CLEAN EMAIL</strong>
              <small>THE PICK · THE CHART · THE REASON</small>
            </div>
          </div>
          <p className="mechanism-caption">
            One email. The picks, the charts, the reasons. Under 60 seconds to
            read.
          </p>
        </div>
      </section>

      <section className="letter section-pad">
        <article className="reading-column">
          <SectionLabel>FROM THE DESK OF MARKET TERMINAL</SectionLabel>
          <p>Dear future investor,</p>
          <p>Can I tell you why most smart people lose money in stocks?</p>
          <p>It&apos;s not intelligence. It&apos;s not effort. It&apos;s not even luck.</p>
          <blockquote>
            It&apos;s that you&apos;re watching <b>5 stocks</b> while the market
            moves <b>1,250.</b>
          </blockquote>
          <p>
            The big trading firms figured this out decades ago. That&apos;s why
            they pay up to $30,000 a year for terminals that watch{" "}
            <em>everything</em> — every ticker, every breakout, every shift in
            momentum — every second the market is open.
          </p>
          <p>You were never invited to that game.</p>
          <p>
            So you did what everyone does. You watched CNBC. You scrolled
            &quot;fin-twit.&quot; You asked a friend who &quot;knows
            stocks.&quot; You bought something because it <em>felt</em> right.
          </p>
          <p>
            And here&apos;s the part nobody says out loud:{" "}
            <strong>
              feeling right is exactly how retail investors get separated from
              their money.
            </strong>{" "}
            You buy on excitement. You sell on fear. Both at the worst possible
            moment.
          </p>
          <p>There&apos;s a better way. And it&apos;s stupidly simple.</p>
          <p>
            Three years ago, we built Market Terminal — a Wall Street-grade
            terminal for regular investors. Along the way, we built something
            into it that changed everything:
          </p>
          <p>
            An AI engine that scans all 1,250+ stocks. Constantly. Without
            emotion. Without fatigue. Without a &quot;gut feeling.&quot;
          </p>
          <p>Now — before you roll your eyes — I know what you&apos;re thinking:</p>
          <p className="pull-question">
            &quot;Is this just ChatGPT with a stock ticker taped to it?&quot;
          </p>
          <p>
            No. A chatbot answers questions.{" "}
            <strong>A ranking engine makes decisions.</strong> Ours runs every
            stock through the same filters, every day, and scores them against
            each other. When market conditions are weak, the risk rules say so
            — and it sends fewer picks, or none. It would rather stay quiet
            than send you noise.
          </p>
          <blockquote className="dark-quote">
            The pattern. The ticker. The setup. The risk. The reason.
            <b>That&apos;s what lands in your inbox.</b>
          </blockquote>
          <p>And here&apos;s what your week actually looks like as a member:</p>
          <p>You wake up. You pour your coffee. You open one email.</p>
          <p>
            In it: <strong>2-3 top-ranked picks.</strong> Each with the ticker,
            the chart, why the setup qualified, and what to watch.
          </p>
          <p>You read it. Sixty seconds, maybe less.</p>
          <p>Then you go on with your life.</p>
          <p>
            No alerts screaming at you at 2pm. No Discord to babysit. No charts
            to stare at. No $97-<em>per-month</em> &quot;guru&quot;
            subscription.
          </p>
          <p>
            <strong>
              Total reading time: under 60 seconds. Total cost: $97 a year.
            </strong>
          </p>
          <p>That&apos;s the machine. Now let me show you the math.</p>
          <div className="mid-offer">
            <div>
              <span>THE OFFER IN 15 SECONDS</span>
              <strong>$97 / YEAR</strong>
            </div>
            <ul>
              <li>1,250+ stocks scanned</li>
              <li>A few ranked ideas by email</li>
              <li>Under 60 seconds to read</li>
              <li>30-day full refund</li>
            </ul>
            <CTA className="letter-cta" label="Get a full year for $97">
              Get A Full Year For $97
            </CTA>
            <small>
              No brokerage connection. You decide whether and where to act.
            </small>
          </div>
        </article>
      </section>

      <section className="inside-machine section-pad">
        <div className="scan-beam" aria-hidden="true" />
        <div className="shell machine-grid">
          <div className="machine-copy">
            <SectionLabel>INSIDE THE MACHINE / LIVE SCAN</SectionLabel>
            <h2>
              1,250+ STOCKS.
              <em>SCANNED CONSTANTLY.</em>
            </h2>
            <p>
              A human analyst can seriously track maybe 20 stocks. A great one,
              40.
            </p>
            <p>The AI tracks all of them. At once. Every day the market is open.</p>
            <p>
              <strong>
                And when the market itself looks dangerous — it says so.
              </strong>{" "}
              The risk rules tighten, the picks get more defensive, or the scan
              goes quiet. Most services send you picks no matter what, because
              silence doesn&apos;t feel like a product.
            </p>
            <p className="silence-line">
              We think silence at the right time <em>is</em> the product.
            </p>
          </div>
          <div className="terminal-panel">
            <header>
              <span>MT:RANK_ENGINE</span>
              <span className="online">
                <i /> SCANNING
              </span>
            </header>
            <div className="terminal-stats">
              <div>
                <span>SYMBOLS TRACKED</span>
                <strong>1,257</strong>
              </div>
              <div>
                <span>DATA POINTS / DAY</span>
                <strong>41.8m</strong>
              </div>
              <div>
                <span>MARKET RISK</span>
                <strong>NORMAL</strong>
              </div>
            </div>
            <div className="terminal-table">
              <div className="table-head">
                <span>RANK</span>
                <span>TICKER</span>
                <span>SETUP</span>
                <span>SCORE</span>
              </div>
              {[
                ["01", "WDS", "MOMENTUM", "96.4"],
                ["02", "VRT", "BREAKOUT", "92.8"],
                ["03", "MU", "VOLUME", "89.7"],
                ["04", "ETN", "REL. STR.", "84.1"],
                ["—", "MARKET", "RISK GATE", "PASS"],
              ].map((row) => (
                <div className="table-row" key={row[1]}>
                  {row.map((cell) => (
                    <span key={cell}>{cell}</span>
                  ))}
                </div>
              ))}
            </div>
            <div className="terminal-log" aria-hidden="true">
              <span>06:11:02 ✓ VOLUME FILTER COMPLETE</span>
              <span>06:11:03 ✓ MOMENTUM FILTER COMPLETE</span>
              <span>06:11:04 ✓ MARKET RISK GATE PASSED</span>
              <span>06:11:05 → 3 SETUPS QUALIFIED</span>
            </div>
          </div>
        </div>
      </section>

      <section className="sixty section-pad">
        <div className="shell sixty-grid">
          <div>
            <SectionLabel>YOUR ENTIRE JOB / 00:60</SectionLabel>
            <h2>
              UNDER 60 SECONDS.
              <em>THAT&apos;S YOUR ENTIRE JOB.</em>
            </h2>
          </div>
          <div className="section-copy">
            <p>
              You might be wondering — why only a few picks a week? Why not
              daily? Why not real-time alerts?
            </p>
            <p>
              Because markets rotate. Capital moves.{" "}
              <strong>
                The best trades of 2026 will cluster around a handful of days —
                and nobody can tell you in advance which days.
              </strong>
            </p>
            <p>
              Look at history: some of the market&apos;s biggest single-day moves
              came inside its ugliest years. Miss those days because you were
              exhausted, tuned out, or scared off — and you miss the year.
            </p>
            <p>
              The picks keep you in the scan without living in the market.
              Sixty seconds. A few times a week. That&apos;s the whole system.
            </p>
          </div>
        </div>
      </section>

      <section className="math section-pad">
        <div className="shell">
          <div className="math-head">
            <SectionLabel>THE MATH / SELECTED HISTORICAL EXAMPLES</SectionLabel>
            <h2>
              NOT EVERY PICK HAS TO BE HUGE.
              <em>THE MATH JUST HAS TO WORK.</em>
            </h2>
            <p>
              Let&apos;s kill the fantasy right now: this is not &quot;get rich
              by Friday.&quot; Anyone promising that is lying to you.
            </p>
            <p>
              Here&apos;s the honest version. Say you put $1,000 into a pick and
              it moves 8%. That&apos;s $80.
            </p>
            <div className="math-callout">
              <span>The service costs</span>
              <strong>$97.</strong>
              <span>For the year.</span>
            </div>
            <p className="recent-picks">
              Recent picks, exactly as they hit member inboxes:
            </p>
          </div>
          <div className="pick-grid">
            {picks.map((pick) => (
              <PickCard key={pick.ticker} {...pick} />
            ))}
          </div>
          <div className="picks-disclaimer">
            Selected historical examples only. Results are not typical or
            guaranteed. Some picks can lose money. Past performance is not
            indicative of future results. No earnings claims are made. Not
            financial advice. Dollar figures are hypothetical illustrations,
            not actual member returns.
          </div>
          <div className="boring-pick">
            <span>ONE BORING PICK</span>
            <strong>COULD PAY FOR THE ENTIRE YEAR.</strong>
            <p>Everything after that is why you joined.</p>
            <small>
              Past picks are not a promise of future results. Stocks go down
              too. That&apos;s why the risk rules exist.
            </small>
          </div>
        </div>
      </section>

      <section className="objections section-pad">
        <div className="shell objection-grid">
          <div className="objection-sticky">
            <SectionLabel>THE OBJECTION GAUNTLET</SectionLabel>
            <h2>&quot;So It&apos;s A Stock Newsletter?&quot;</h2>
            <p>No. And the difference is the entire point.</p>
          </div>
          <div className="objection-list">
            <article>
              <span>01</span>
              <p>
                A stock newsletter is <strong>one person&apos;s opinion</strong>,
                written on a deadline, sent whether or not the market deserves
                it. The writer has to send <em>something</em> — that&apos;s the
                business model.
              </p>
              <p>
                This is <strong>a ranking engine&apos;s output.</strong> No
                deadline. No ego. No pick-of-the-month quota. If nothing
                qualifies, nothing gets sent. Try finding a newsletter with
                the discipline to do that.
              </p>
            </article>
            <article>
              <span>02</span>
              <h3>&quot;I don&apos;t have time to babysit trades.&quot;</h3>
              <p>
                Good. This was built for people who don&apos;t. Sixty seconds, a
                few mornings a week. If you have time for coffee, you have time
                for this.
              </p>
            </article>
            <article>
              <span>03</span>
              <h3>&quot;Why is it only $97? What&apos;s the catch?&quot;</h3>
              <p>
                Fair question — cheap usually means bad in this space.
                Here&apos;s the actual answer: the AI already runs for Market
                Terminal&apos;s main platform. Sending you its top-ranked output
                costs us almost nothing extra. So instead of pricing it like
                the $2,000/yr &quot;elite research&quot; crowd, we priced it to
                be a no-brainer. $97 buys us a long-term member. That&apos;s the
                catch. That&apos;s all of it.
              </p>
            </article>
            <article>
              <span>04</span>
              <h3>&quot;What if the picks are bad?&quot;</h3>
              <p>
                Then take the refund. Thirty days, every dollar back, no
                questions, no exit interview — and you keep every pick we sent
                you in the meantime. If we&apos;re wrong for you, we pay for the
                test.
              </p>
            </article>
          </div>
        </div>
      </section>

      <section className="offer-section section-pad">
        <div className="offer-card">
          <header>
            <LogoMark />
            <span>ANNUAL RESEARCH MEMBERSHIP</span>
          </header>
          <div className="offer-body">
            <SectionLabel>THE FULL OFFER</SectionLabel>
            <h2>AI Stock Picks By Email</h2>
            <p>A few times a week. One year.</p>
            <div className="offer-price">
              <s>$297</s>
              <span>→</span>
              <strong>$97<small>/yr</small></strong>
            </div>
            <div className="offer-clarifier">
              <strong>$97 charged today</strong>
              <span>Renews yearly at $97 unless canceled</span>
            </div>
            <ul>
              <li>
                Top-ranked picks from a constant scan of 1,250+ stocks
              </li>
              <li>
                Ticker, chart, setup, and the <em>reason</em> — every pick,
                every time
              </li>
              <li>Risk-gated: fewer picks when the market turns dangerous</li>
              <li>
                Under 60 seconds to read. No apps, no alerts, no Discord
              </li>
              <li>Price locked at $97/yr for as long as you stay</li>
            </ul>
            <div className="brokerage-note">
              <span aria-hidden="true">✓</span>
              <p>
                <strong>Your brokerage stays private.</strong>
                Nothing to connect. The email gives you the research; every
                decision stays yours.
              </p>
            </div>
            <CTA className="offer-cta" label="Send me a year of picks for $97">
              Yes — Send Me A Year Of Picks For $97
            </CTA>
            <p className="offer-microcopy">
              Instant access · 30-day refund · Cancel anytime
            </p>
          </div>
          <footer>
            <span>30-DAY REFUND</span>
            <span>CANCEL ANYTIME</span>
            <span>EDUCATIONAL RESEARCH</span>
          </footer>
        </div>
      </section>

      <section className="guarantee section-pad">
        <div className="shell guarantee-grid">
          <div className="guarantee-seal" aria-label="30-day guarantee">
            <span>MARKET TERMINAL</span>
            <strong>30</strong>
            <em>DAYS</em>
            <small>FULL REFUND</small>
          </div>
          <div className="guarantee-copy">
            <SectionLabel>THE RISK IS ON US</SectionLabel>
            <h2>
              30 Days. Every Dollar. No Questions.
              <em>And You Keep The Picks.</em>
            </h2>
            <p>Here&apos;s how sure we are that this belongs in your inbox:</p>
            <p>
              Join today. Read the picks for a full month. Watch how the scan
              behaves — what it sends, and just as important, what it{" "}
              <em>refuses</em> to send.
            </p>
            <p>
              If at any point in 30 days you decide it&apos;s not for you — for
              any reason, or no reason — email us one line and every dollar
              comes back. No phone call. No &quot;retention specialist.&quot; No
              guilt trip.
            </p>
            <p>
              And every pick you received in those 30 days? Yours. Keep them.
            </p>
            <p>
              The risk of trying this is zero. The risk of <em>not</em> trying
              it is another year of watching 5 stocks while the market moves
              1,250.
            </p>
            <CTA className="guarantee-cta" label="Get a full year for $97">
              Get A Full Year For $97
            </CTA>
            <p className="cta-note">
              Try the complete service for 30 days. If it does not earn a place
              in your routine, one email gets every dollar back.
            </p>
          </div>
        </div>
      </section>

      <section className="final-push section-pad">
        <div className="reading-column">
          <SectionLabel>ONE LAST QUESTION</SectionLabel>
          <h2>
            It&apos;s Probably The One You&apos;re Already Asking.
          </h2>
          <blockquote>&quot;Will this actually make me money?&quot;</blockquote>
          <p>
            Honest answer: nobody can promise you that, and you should sprint
            away from anyone who does.
          </p>
          <p>
            What we can promise: every trading day, an engine that never sleeps,
            never panics, and never falls in love with a ticker will scan 1,250+
            stocks and hand you the few worth your attention — with the reasons
            attached.
          </p>
          <p>
            What you do with them is up to you. But you&apos;ll be deciding with
            the scan behind you instead of a gut feeling in front of you.
          </p>
          <p className="final-price">
            $97. One year. One boring pick pays for it.
          </p>
          <CTA className="final-cta" label="Get my first picks for $97 per year">
            Get My First Picks — $97/yr
          </CTA>
          <p className="cta-note final-note">
            $97 charged today · Renews annually at $97 · 30-day full refund
          </p>
        </div>
      </section>

      <section className="faq section-pad">
        <div className="shell faq-grid">
          <div>
            <SectionLabel>FREQUENTLY ASKED QUESTIONS</SectionLabel>
            <h2>Before You Join.</h2>
            <p>Plain answers. No fine-print surprises.</p>
          </div>
          <div className="faq-list">
            <details open>
              <summary>
                How much time does this take per email?<i aria-hidden="true" />
              </summary>
              <p>
                Under 60 seconds, a few times a week. The stock pick lands in
                your inbox with a clear breakdown, entry zone, stop loss, and
                exit triggers. Read it, and if you like it, place the trade.
              </p>
            </details>
            <details>
              <summary>
                Is this financial advice?<i aria-hidden="true" />
              </summary>
              <p>
                No. Market Terminal provides educational research and general
                information, not personalized investment advice. You are
                responsible for every investment decision you make.
              </p>
            </details>
            <details>
              <summary>
                What happens after I subscribe?<i aria-hidden="true" />
              </summary>
              <p>
                You&apos;ll get instant access, then your first pick email with
                the next scan cycle. Picks arrive a few times a week, and you
                can manage or cancel the subscription from your account.
              </p>
            </details>
            <details>
              <summary>
                Do I need a brokerage account or any special tools?
                <i aria-hidden="true" />
              </summary>
              <p>
                Any brokerage works. The email tells you the ticker and the
                setup — you decide whether and where to act. No software, no
                downloads.
              </p>
            </details>
            <details>
              <summary>
                Do I have to connect my brokerage?<i aria-hidden="true" />
              </summary>
              <p>
                No. Market Terminal never needs access to your brokerage
                account. The email gives you the ticker, setup, and risk notes;
                you decide what to do from there.
              </p>
            </details>
            <details>
              <summary>
                What happens after the first year?<i aria-hidden="true" />
              </summary>
              <p>
                Your price is locked at $97/yr. Renewals are at that rate as
                long as you stay subscribed — even if the public price goes up.
                Cancel anytime in two clicks.
              </p>
            </details>
          </div>
        </div>
      </section>

      <footer className="footer">
        <div className="shell">
          <div className="footer-top">
            <LogoMark />
            <div>
              <a href="https://marketterminal.com/privacy-policy">Privacy</a>
              <a href="https://marketterminal.com/terms-conditions">Terms</a>
              <a href="https://marketterminal.com/disclaimer">Disclaimer</a>
            </div>
          </div>
          <div className="legal">
            <strong>Disclaimer:</strong>
            <p>Past performance is not indicative of future results.</p>
            <p>No earnings claims are made.</p>
            <p>Results shown are not typical.</p>
            <p>
              All communication is general in nature and for educational and
              general informational purposes only. Under no circumstance should
              it be considered investment advice.
            </p>
            <p>
              All the information that originates from us, or any of our
              partners or affiliates, is for educational and informational
              purposes only and is NOT a recommendation to buy or sell
              anything. The mention of specific stocks, ETFs, any idea(s),
              securities, or anything else for that matter anywhere in our work
              does not constitute an endorsement or recommendation.
            </p>
            <p>
              Investing and trading in capital markets or using margin carries
              a high level of risk and may not be suitable for all investors.
              People who use our work are solely responsible for their
              investment decisions, actions, and outcomes. We are not liable
              for anything that happens as a result of our work. People should
              consult with qualified professionals for personalized advice.
            </p>
            <p>
              Leverage can work against you as well as for you. Before you
              decide to invest or trade in capital markets you should carefully
              consider your investment objectives, level of experience, and
              risk appetite, among other factors. The possibility exists that
              you could sustain a loss of some, all, or more of your initial
              investment and therefore you should not invest money that you
              cannot afford to lose.
            </p>
            <p>
              You should be aware of all the risks associated with capital
              markets, investing/trading, and seek specific investment advice
              from an independent financial advisor and other professionals.
              Remember all the information we provide is for educational and
              general informational purposes only and is subject to change
              without notice. Do your own homework (due diligence) and
              double/triple check everything.
            </p>
            <p>
              By engaging with any of our work you take responsibility for every
              decision you make. Our work is not intended to solicit the buying
              or selling of any securities or anything else for that matter.
              Any testimonials represent the views of the individuals providing
              them, and results may vary.
            </p>
            <p>
              The stock market is dynamic, and conditions can change rapidly.
              People should verify information independently. We reserve the
              right to modify, amend, or update this disclaimer at any time
              without prior notice. We encourage people to review the disclaimer
              periodically for any changes.
            </p>
            <p>
              We do not make any earnings claims or guarantees of financial
              success. The actual results achieved by members may vary, and we
              make no representations regarding the likelihood of financial
              success. Our work is delivered electronically, and we are not
              responsible for any technical issues, interruptions, or security
              issues that may arise during the electronic transmission of our
              work.
            </p>
          </div>
          <p className="copyright">
            © 2026 Market Terminal. All rights reserved.
          </p>
        </div>
      </footer>
    </main>
  );
}
