/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background: #ffffff;
    color: #111;
    line-height: 1.6;
}

/* Header */
.header {
    width: 100%;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
}

.logo {
    font-size: 20px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 30px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sub-heading {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

/* Email form */
.email-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.email-form input {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    width: 300px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.email-form input:focus {
    border-color: #888;
    outline: none;
}

.email-form button {
    padding: 12px 20px;
    background: #111;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.email-form button:hover {
    background: #333;
}

/* Link */
.shape-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
    color: #007aff;
    text-decoration: none;
}

.shape-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #777;
    font-size: 14px;
    margin-top: 80px;
}

.apple-sub {
  font-weight: 300;   /* light */
  letter-spacing: 0.5px;
  line-height: 1.5;
  opacity: 0.85;
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

.shape-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.25s ease;
  margin-top: 20px;
}

.shape-button:hover {
  background-color: #333;
  transform: translateY(-1px);
}

.shape-button {
  background-color: #111;
  border: 1px solid #222;
}
.shape-button:hover {
  background-color: #222;
  border-color: #333;
}
