// copy.jsx — two positioning voices: "pro" (crypto-native) and "beginner" (new to crypto)
// Exports (to window): COPY, HEADLINES

const HEADLINES = {
  pro: {
    direct:   (<>Use USDT like <span className="hl">the dollars in your bank account.</span></>),
    friendly: (<>The USDT wallet that <span className="hl">handles gas for you.</span></>),
    bold:     (<>Stop buying TRX just to <span className="hl">move your USDT.</span></>),
  },
  beginner: {
    direct:   (<>Use USDT like <span className="hl">the dollars in your bank account.</span></>),
    friendly: (<>The easiest way to <span className="hl">hold and send USDT.</span></>),
    bold:     (<>Crypto, <span className="hl">without the scary parts.</span></>),
  },
};

const COPY = {
  pro: {
    hero: {
      eyebrow: 'A wallet built for USDT',
      sub: (<>Gasless handles every blockchain detail in the background.<br/>No crypto know-how required.</>),
      savedLabel: (<>saved for our customers<br/>in network fees so far</>),
      trust: 'Trusted by 2,000+ everyday senders & payout teams',
    },
    how: {
      tag: 'How it works',
      title: 'Set up in one tap — still your keys',
      sub: 'Skip the 12-word backup ritual. Gasless signs you in with a social login secured by hardware key infrastructure — seconds to onboard, with self-custody fully intact.',
      steps: [
        { h: 'Sign in, no seed phrase', p: 'Create your wallet with a social login, secured by Turnkey. No 12 words to write down, no extension to install — your keys stay yours.' },
        { h: 'Gas is handled for you', p: 'Need TRX to pay fees? You don\u2019t. Gasless covers gas behind the scenes — even on a brand-new wallet that holds zero TRX.' },
        { h: 'Send USDT for up to 50% less', p: 'Fees are paid in USDT and optimized automatically. Send, receive, or run a mass payout to many addresses at once.' },
      ],
    },
    features: {
      tag: 'Why Gasless',
      title: 'Everything that makes USDT on Tron painless',
      gas: { h: 'Never think about TRX again', p: 'A built-in gas engine tops up and pays your network fees in USDT. Works on the very first transaction of a fresh wallet — nothing to pre-fund.', tag: 'Auto gas top-up' },
      savings: { h: 'Up to 50% lower gas', p: 'Fee logic is optimized for TRC-20 USDT, so every transfer costs roughly half of what a typical wallet charges.' },
      seed: { h: 'No seed phrase', p: 'Social-login access secured by Turnkey. Onboard in seconds, recover without 12 lost words.' },
      payouts: { h: 'Mass payouts', p: 'Pay contractors, staff or a whole community in one batch — perfect for business and treasury teams.' },
      custody: { h: 'Non-custodial', p: 'Keys are generated and held on your side. We can never move, freeze, or touch your funds.' },
    },
    compare: {
      tag: 'Other wallets vs Gasless',
      title: 'A wallet that removes the friction',
      sub: 'The same Tron, the same USDT — without the parts that slow you down.',
      rows: [
        { label: 'Onboarding', others: '12-word seed phrase to back up', gasless: 'Social login, no seed phrase' },
        { label: 'Before a transfer', others: 'Pre-fund TRX for gas yourself', gasless: 'Gas abstracted — paid in USDT' },
        { label: 'Fee per USDT transfer', others: '~7 TRX ($2.20)', gasless: '3.5 TRX ($1.10)' },
        { label: 'Recovery', others: 'Seed-phrase custody', gasless: 'Social-login recovery' },
      ],
    },
  },

  beginner: {
    hero: {
      eyebrow: 'A wallet built for USDT',
      sub: (<>Gasless handles every blockchain detail in the background.<br/>No crypto know-how required.</>),
      trust: 'Loved by 2,000+ people making their first USDT transfer',
    },
    how: {
      tag: 'How it works',
      title: 'Your wallet, ready in one tap',
      sub: 'Most wallets hand you 12 secret words and a warning: lose them and your money is gone forever. Gasless has no seed phrase — you sign in with an account you already have, and only you can ever move your funds.',
      steps: [
        { h: 'Create a wallet in seconds', p: 'Sign in like you would with any app. There\u2019s no 12-word secret phrase to write down and protect — and on other wallets, losing those words means losing your money for good.' },
        { h: 'Send without buying TRX first', p: 'On most wallets a brand-new account can\u2019t move USDT until someone sends you TRX for fees. Gasless buys that gas for you — even on an empty, just-created wallet.' },
        { h: 'Pay half the fee', p: 'Send USDT for about 3.5 TRX (~$1.10) instead of the usual 7 TRX (~$2.20). Lower cost, every single transfer.' },
      ],
    },
    features: {
      tag: 'Why people choose Gasless',
      title: 'Made for everyone — not just crypto experts',
      gas: { h: 'Never get stuck without gas', p: 'New wallet with no TRX? On other apps you\u2019d have to ask a friend to send you some just to touch your own USDT. Gasless handles the gas for you, automatically.', tag: 'Works on an empty wallet' },
      savings: { h: 'Half the fee of other wallets', p: 'Send for about 3.5 TRX (~$1.10) instead of 7 TRX (~$2.20). The savings add up fast.' },
      seed: { h: 'No secret phrase to lose', p: 'Other wallets hand you 12 words to guard forever — lose them and your money is gone. Gasless uses a login you already trust.' },
      payouts: { h: 'Send to many people at once', p: 'Paying a team, family or community? Send USDT to lots of people in a single batch.' },
      custody: { h: 'Your money stays yours', p: 'Gasless is non-custodial — only you can move your funds. We make it easy without ever holding your money.' },
    },
    compare: {
      tag: 'Other wallets vs Gasless',
      title: 'Why Gasless is easier for beginners',
      sub: 'The usual crypto headaches — gone.',
      rows: [
        { label: 'Getting started', others: 'Write down & protect 12 secret words', gasless: 'Just sign in — nothing to memorize' },
        { label: 'Before your first send', others: 'Buy TRX, or ask a friend to send you some', gasless: 'Gas is built in — works on an empty wallet' },
        { label: 'Fee per transfer', others: '~7 TRX ($2.20)', gasless: '3.5 TRX ($1.10)' },
        { label: 'If you lose access', others: 'Lose your phrase = lose your money', gasless: 'Recover with your social login' },
      ],
    },
  },
};

window.COPY = COPY;
window.HEADLINES = HEADLINES;
