"<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <title>Healthy Lineups</title>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n    <style>\n      body {\n        margin: 0;\n        padding: 0;\n        font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", sans-serif;\n        background: #000;\n        color: #fff;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        min-height: 100vh;\n      }\n      .wrap {\n        text-align: center;\n        padding: 24px;\n      }\n      h1 {\n        font-size: 28px;\n        margin-bottom: 12px;\n      }\n      p {\n        font-size: 16px;\n        color: #aaa;\n        margin-bottom: 24px;\n      }\n      .cta {\n        display: inline-block;\n        padding: 12px 24px;\n        border-radius: 999px;\n        background: #1e90ff;\n        color: #fff;\n        text-decoration: none;\n        font-weight: 600;\n      }\n      .coming-soon {\n        color: #ffcc00;\n        font-weight: 600;\n      }\n    </style>\n  </head>\n  <body>\n    <div class=\"wrap\">\n      <h1>Healthy Lineups</h1>\n      <p>Draft once. Never let injuries derail your win again.</p>\n      <p class=\"coming-soon\">iOS app coming soon.</p>\n    </div>\n  </body>\n</html>"