File size: 2,507 Bytes
1eb42eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>PlayTheOffer</title>
  <link rel="stylesheet" href="style.css" />
</head>

<body>
  <div class="page">

    <!-- Hero -->
    <section class="hero">
      <div class="logo">
        <img src="logo.png" alt="PlayTheOffer logo" />
      </div>
      <p class="subtitle">PlayTheOffer</p>

      <h1>
        Interviews aren’t conversations.<br />
        They’re a game.
      </h1>

      <p class="description">
        Learn the hidden rules of hiring through realistic interview simulations
        and strategic feedback.
      </p>

      <div class="buttons">
        <button class="btn primary">Join the Waitlist</button>
        <button class="btn secondary">Learn More</button>
      </div>
    </section>

    <!-- Problem -->
    <section class="grid-section">
      <div class="grid">

        <div class="card">
          <h3>Unpredictable</h3>
          <p>Students don’t understand what recruiters actually evaluate.</p>
        </div>

        <div class="card">
          <h3>Unrealistic</h3>
          <p>Most interview preparation is generic and theoretical.</p>
        </div>

        <div class="card">
          <h3>Stressful</h3>
          <p>Even strong candidates struggle under interview pressure.</p>
        </div>

      </div>
    </section>

    <!-- Solution -->
    <section class="center-section">
      <h2>Train like it’s the real interview.</h2>

      <div class="grid">
        <div class="card">
          <h3>Mock Interviews</h3>
          <p>Practice with realistic interview scenarios.</p>
        </div>

        <div class="card">
          <h3>Strategic Feedback</h3>
          <p>Understand recruiter expectations and communication mistakes.</p>
        </div>

        <div class="card">
          <h3>Performance Scoring</h3>
          <p>Measure confidence, clarity, and structure.</p>
        </div>
      </div>
    </section>

    <!-- CTA -->
    <section class="cta">
      <div class="cta-box">
        <h2>Get interview-ready.</h2>
        <p>Join the first students testing PlayTheOffer.</p>

        <div class="cta-form">
          <input type="email" placeholder="Enter your email" />
          <button>Join Waitlist</button>
        </div>
      </div>
    </section>

  </div>
</body>
</html>