File size: 5,209 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Weather Depth Preference</title>
<style>
  body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #213F4A; /* deep blue-green */
    color: #EAF3F6;
  }

  /* Status bar */
  .status-bar {
    height: 110px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .status-left {
    font-size: 40px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .icon {
    width: 40px;
    height: 40px;
  }

  /* Title */
  .title {
    text-align: center;
    font-weight: 800;
    font-size: 64px;
    line-height: 78px;
    margin: 40px 80px 30px 80px;
  }

  /* Cards */
  .cards {
    padding: 20px 60px;
  }
  .card {
    background: #2B4B57;
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  }
  .card.active {
    border: 4px solid #1EECC7;
    box-shadow: 0 0 0 4px rgba(30,236,199,0.18) inset;
  }
  .card .text {
    width: 58%;
  }
  .card .title-line {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  .card .desc {
    font-size: 34px;
    line-height: 44px;
    color: #C4D2D7;
  }
  .card .img {
    width: 360px;
    height: 180px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 30px;
  }

  /* Button */
  .confirm-wrap {
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 190px;
  }
  .btn {
    width: 100%;
    height: 120px;
    background: #1EF0C8;
    border-radius: 32px;
    color: #0E2C33;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 12px;
    background: #E6EBED;
    border-radius: 12px;
    opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">10:07</div>
    <div class="status-right">
      <!-- simple glyphs -->
      <svg class="icon" viewBox="0 0 24 24" fill="none">
        <path d="M3 9l9-6 9 6v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9z" stroke="#fff" stroke-width="2"/>
        <circle cx="12" cy="14" r="3" stroke="#fff" stroke-width="2"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24" fill="none">
        <path d="M2 18c5-6 15-6 20 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
        <path d="M6 14c3-4 9-4 12 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
        <circle cx="12" cy="8" r="1.5" fill="#fff"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24" fill="none">
        <path d="M7 14l5-5 5 5" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24" fill="none">
        <circle cx="12" cy="12" r="2" fill="#fff"/>
      </svg>
      <svg class="icon" viewBox="0 0 24 24" fill="none">
        <path d="M3 7h18" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
        <path d="M6 7v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7" stroke="#fff" stroke-width="2"/>
        <rect x="9" y="4" width="6" height="3" fill="#fff"/>
      </svg>
    </div>
  </div>

  <!-- Title -->
  <div class="title">
    How deep do you go when you check the weather?
  </div>

  <!-- Cards -->
  <div class="cards">
    <div class="card active">
      <div class="text">
        <div class="title-line" style="color:#1EECC7;">General</div>
        <div class="desc">I quickly check the essential parameters</div>
      </div>
      <div class="img">[IMG: Chart Illustration]</div>
    </div>

    <div class="card">
      <div class="text">
        <div class="title-line" style="color:#1EECC7;">Intermediate</div>
        <div class="desc">I review forecasts from several models</div>
      </div>
      <div class="img">[IMG: Multiple Model Waves]</div>
    </div>

    <div class="card" style="background:#2F505C;">
      <div class="text">
        <div class="title-line" style="color:#FFA64D;">Advanced</div>
        <div class="desc">Compare multiple weather sources and hyperlocal forecasts</div>
      </div>
      <div class="img">[IMG: Advanced Multi-Source Lines]</div>
    </div>
  </div>

  <!-- Confirm Button -->
  <div class="confirm-wrap">
    <div class="btn">Confirm</div>
  </div>

  <!-- Home Indicator -->
  <div class="home-indicator"></div>
</div>
</body>
</html>