File size: 6,911 Bytes
98687c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!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;
  }

  /* Fullscreen photo placeholder */
  .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 bar */
  .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 button */
  .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 */
  .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 */
  .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 */
  .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>