File size: 6,095 Bytes
5501681
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Busuu Onboarding Mock</title>
<style>
  body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 110px;
    background: #1f4b7a;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 36px;
    box-sizing: border-box;
    font-weight: 600;
  }
  .status-bar .time {
    font-size: 40px;
    letter-spacing: 1px;
  }
  .status-bar .right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .status-dot {
    width: 12px; height: 12px; background: #fff; opacity: 0.7; border-radius: 50%;
  }
  .battery {
    width: 70px; height: 30px; border: 3px solid #fff; border-radius: 6px; position: relative;
  }
  .battery::after {
    content: "";
    position: absolute; right: -10px; top: 9px; width: 6px; height: 12px; background: #fff; border-radius: 2px;
  }
  .battery .level {
    position: absolute; left: 3px; top: 3px; bottom: 3px; right: 12px; background: #fff;
  }

  /* Hero gradient area */
  .hero {
    position: absolute;
    top: 110px; /* under status bar */
    left: 0;
    width: 1080px;
    height: 1550px;
    background: linear-gradient(180deg, #3e7df0 0%, #4b2be7 100%);
  }

  /* Logo */
  .logo-wrap {
    width: 100%;
    box-sizing: border-box;
    padding: 120px 80px 0 80px;
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .logo-icon {
    width: 120px;
    height: 120px;
    border-radius: 32px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }
  .logo-icon::after {
    content: "";
    position: absolute;
    right: -14%;
    bottom: -14%;
    width: 80%;
    height: 80%;
    background: #a9c3ff;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 24px;
  }
  .logo-text {
    color: #ffffff;
  }
  .logo-text .brand {
    font-weight: 800;
    font-size: 110px;
    line-height: 1;
  }
  .logo-text .tagline {
    font-size: 44px;
    opacity: 0.9;
    margin-top: 10px;
  }

  /* Floating circle placeholders (flags/illustration) */
  .circle {
    position: absolute;
    border-radius: 50%;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    box-sizing: border-box;
  }
  .circle.small { font-size: 28px; }
  .circle.medium { font-size: 30px; }
  .circle.large { font-size: 32px; }
  .circle.center-illustration { font-size: 34px; background: #E0E0E0; }

  /* Bottom sheet */
  .sheet {
    position: absolute;
    left: 0;
    right: 0;
    top: 1520px;
    height: 880px;
    background: #ffffff;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
    padding: 80px 64px 40px 64px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .title {
    text-align: center;
    color: #111419;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.15;
    margin: 10px 0 56px 0;
    max-width: 920px;
  }
  .btn {
    width: 960px;
    height: 140px;
    background: #66e39c;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10351d;
    font-weight: 700;
    font-size: 48px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.05) inset;
  }
  .meta {
    margin-top: 40px;
    font-size: 36px;
    color: #7b8594;
  }
  .meta a {
    color: #3b72f6;
    text-decoration: underline;
  }

  /* Bottom gesture bar (visual only) */
  .gesture {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 10px;
    border-radius: 6px;
    background: #000;
    opacity: 0.6;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="time">6:40</div>
    <div class="right">
      <div class="status-dot"></div>
      <div class="status-dot"></div>
      <div class="status-dot"></div>
      <div class="battery"><div class="level"></div></div>
    </div>
  </div>

  <!-- Hero area -->
  <div class="hero">
    <div class="logo-wrap">
      <div class="logo-icon"></div>
      <div class="logo-text">
        <div class="brand">Busuu</div>
        <div class="tagline">a Chegg service</div>
      </div>
    </div>

    <!-- Floating circle placeholders -->
    <div class="circle small" style="width:170px;height:170px; top:520px; left:170px;">[IMG: Flag]</div>
    <div class="circle small" style="width:160px;height:160px; top:520px; left:470px;">[IMG: Flag]</div>
    <div class="circle large" style="width:380px;height:380px; top:460px; right:60px;">[IMG: Flag]</div>
    <div class="circle medium" style="width:330px;height:330px; top:850px; left:60px; opacity:0.9;">[IMG: Flag]</div>
    <div class="circle center-illustration" style="width:440px;height:440px; top:860px; left:320px;">[IMG: Person using phone]</div>
    <div class="circle small" style="width:170px;height:170px; top:930px; right:120px;">[IMG: Flag]</div>
    <div class="circle medium" style="width:320px;height:320px; top:1180px; left:170px; opacity:0.85;">[IMG: Flag]</div>
    <div class="circle medium" style="width:200px;height:200px; top:1200px; left:660px;">[IMG: Emblem]</div>
    <div class="circle medium" style="width:300px;height:300px; top:1180px; right:80px;">[IMG: Flag]</div>
  </div>

  <!-- Bottom content sheet -->
  <div class="sheet">
    <div class="title">Learn a language in 3 minutes a day</div>
    <div class="btn">Start learning</div>
    <div class="meta">Already have an account? <a href="#">Log in</a></div>
  </div>

  <div class="gesture"></div>
</div>
</body>
</html>