| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Windy PRO - Subscription</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #123a53; |
| border-radius: 28px; |
| box-shadow: 0 20px 60px rgba(0,0,0,0.35); |
| color: #fff; |
| } |
| |
| |
| .bg-photo { |
| position: absolute; inset: 0; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; font-size: 28px; letter-spacing: 0.4px; |
| z-index: 0; |
| } |
| .overlay { |
| position: absolute; inset: 0; z-index: 1; |
| background: linear-gradient(180deg, |
| rgba(10,20,30,0.25) 0%, |
| rgba(10,40,60,0.35) 20%, |
| rgba(8,54,80,0.65) 55%, |
| rgba(5,45,70,0.85) 75%, |
| rgba(1,30,50,0.95) 100%); |
| } |
| |
| |
| .status { |
| position: absolute; top: 24px; left: 40px; right: 40px; z-index: 2; |
| display: flex; align-items: center; justify-content: space-between; |
| font-size: 32px; opacity: 0.95; |
| } |
| .status-icons { display: flex; gap: 22px; align-items: center; } |
| .icon-wifi, .icon-battery { width: 36px; height: 24px; display: inline-block; } |
| .icon-wifi svg, .icon-battery svg { width: 100%; height: 100%; } |
| .signal-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; opacity: 0.8; } |
| |
| |
| .close-btn { |
| position: absolute; top: 150px; left: 48px; z-index: 2; |
| width: 96px; height: 96px; border: 3px solid rgba(255,255,255,0.9); |
| border-radius: 22px; display: flex; align-items: center; justify-content: center; |
| backdrop-filter: blur(2px); |
| } |
| .close-btn svg { width: 44px; height: 44px; stroke: #fff; stroke-width: 8; } |
| |
| |
| .hero { |
| position: absolute; top: 320px; left: 60px; right: 60px; z-index: 2; |
| text-align: center; |
| } |
| .brand { |
| font-size: 74px; font-weight: 800; letter-spacing: 0.5px; |
| } |
| .pro-pill { |
| display: inline-block; margin-left: 16px; |
| background: #f7c34b; color: #2b2b2b; font-weight: 800; |
| padding: 10px 24px; border-radius: 24px; font-size: 40px; vertical-align: middle; |
| } |
| .hero h1 { |
| margin: 28px auto 0; |
| width: 860px; |
| font-size: 64px; font-weight: 800; line-height: 1.22; |
| text-shadow: 0 2px 6px rgba(0,0,0,0.35); |
| } |
| |
| |
| .plans { position: absolute; top: 1280px; left: 60px; right: 60px; z-index: 2; display: grid; gap: 46px; } |
| .card { |
| background: rgba(48,93,118,0.75); |
| border-radius: 28px; |
| padding: 36px 40px; |
| color: #e9f3f7; |
| box-shadow: 0 10px 24px rgba(0,0,0,0.25); |
| } |
| .card-row { display: flex; justify-content: space-between; align-items: center; } |
| .title { font-size: 40px; font-weight: 800; } |
| .sub { font-size: 32px; opacity: 0.8; margin-top: 12px; } |
| .price { font-size: 38px; font-weight: 800; text-align: right; } |
| .month { font-size: 30px; opacity: 0.8; margin-top: 12px; text-align: right; } |
| |
| .trial { border: 4px solid #f7c34b; } |
| .trial .title, .trial .price { color: #f7c34b; } |
| |
| .offer { |
| background: rgba(40,78,98,0.8); |
| position: relative; |
| } |
| .ribbon { |
| position: absolute; left: 14px; top: -22px; |
| height: 72px; padding: 0 30px; |
| background: #c8232a; color: #fff; font-weight: 900; font-size: 34px; |
| display: flex; align-items: center; border-radius: 12px; |
| box-shadow: 0 8px 18px rgba(0,0,0,0.35); |
| clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%, 0 0); |
| } |
| |
| .lifetime { background: rgba(40,78,98,0.65); } |
| |
| |
| .cta { |
| position: absolute; bottom: 360px; left: 60px; right: 60px; z-index: 2; |
| background: #f7c34b; color: #1a2730; font-weight: 800; font-size: 44px; |
| height: 140px; border-radius: 28px; display: flex; align-items: center; justify-content: center; |
| box-shadow: 0 10px 24px rgba(0,0,0,0.3); |
| } |
| |
| .footnote { |
| position: absolute; bottom: 240px; left: 0; right: 0; text-align: center; z-index: 2; |
| color: #d6e5ee; font-size: 32px; line-height: 1.6; opacity: 0.9; |
| } |
| |
| .home-indicator { |
| position: absolute; bottom: 180px; left: 50%; transform: translateX(-50%); |
| width: 320px; height: 14px; background: #eaeaea; border-radius: 8px; opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| <div class="bg-photo">[IMG: Hot air balloons background]</div> |
| <div class="overlay"></div> |
|
|
| <div class="status"> |
| <div style="font-weight:700;">10:09</div> |
| <div class="status-icons"> |
| <div class="icon-wifi"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M2 8c6-5 14-5 20 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/> |
| <path d="M6 12c4-3 8-3 12 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/> |
| <circle cx="12" cy="17" r="2" fill="#fff"/> |
| </svg> |
| </div> |
| <div class="signal-dot"></div> |
| <div class="icon-battery"> |
| <svg viewBox="0 0 28 18" fill="none"> |
| <rect x="1" y="3" width="22" height="12" rx="2" stroke="#fff" stroke-width="2"/> |
| <rect x="3" y="5" width="12" height="8" rx="1" fill="#fff"/> |
| <rect x="24" y="7" width="3" height="4" rx="1" fill="#fff"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="close-btn"> |
| <svg viewBox="0 0 24 24" fill="none"> |
| <path d="M4 4 L20 20 M20 4 L4 20" /> |
| </svg> |
| </div> |
|
|
| <div class="hero"> |
| <div class="brand">Windy <span class="pro-pill">PRO</span></div> |
| <h1>Get access to all weather tools</h1> |
| </div> |
|
|
| <div class="plans"> |
| <div class="card trial"> |
| <div class="card-row"> |
| <div> |
| <div class="title">7-day trial</div> |
| <div class="sub">Try before you buy</div> |
| </div> |
| <div> |
| <div class="price">then ₹3,900.00/year</div> |
| <div class="month">₹325.00/month</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="card offer"> |
| <div class="ribbon">25% OFF</div> |
| <div class="card-row"> |
| <div> |
| <div class="title">Special offer</div> |
| </div> |
| <div> |
| <div class="price">₹2,900.00/year</div> |
| <div class="month">₹241.67/month</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="card lifetime"> |
| <div class="card-row"> |
| <div> |
| <div class="title">Lifetime</div> |
| <div class="sub">Pay only once</div> |
| </div> |
| <div> |
| <div class="price">₹9,700.00</div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="cta">Start my free week</div> |
|
|
| <div class="footnote"> |
| Auto-renews automatically<br/>Cancel anytime. |
| </div> |
|
|
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |