:root {
  --eggshell: #f4f1ea;
  --eggshell-soft: #faf8f2;
  --red: #c8102e;
  --red-dark: #a00d24;
  --black: #111;
  --grey: #555;
  --pro:#4966a0;
}
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--eggshell);
  color: var(--black);
  margin: 0;
  line-height: 1.5;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
nav .logo { font-weight: 700; font-size: 30px; color: var(--black); }
nav .logo .dot { color: var(--red); }
nav .nav-links { display: flex; gap: 24px; }
nav .nav-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.15s;
}
nav .nav-links a:hover { color: var(--red); }

/* Hero */
.hero {
  text-align: center;
  padding: 40px 24px 60px;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.red { color: var(--red);  font-weight: 600;}
.hero .subtitle {
  font-size: 19px;
  color: var(--grey);
  max-width: 620px;
  margin: 22px auto 42px;
  line-height: 28px;
}

/* Social proof with laurels */
.laurels {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  width: 320px;
  max-width: 90%;
}
.laurels .laurel-img { width: 100%; height: auto; display: block; }
.laurels .count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--black);
}
.laurels .count .number {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.laurels .count .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  color: var(--black);
}

/* Google sign-in button */
#google-signin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s;
}
#google-signin:hover {
  background: var(--black);
  color: var(--eggshell);
}
#google-signin img { width: 20px; height: 20px; }
#status { margin-top: 14px; color: var(--grey); font-size: 14px; min-height: 20px; }
.free-note { margin-top: 10px; font-size: 13px; color: var(--grey); }
.free-note strong { color: var(--red); }

/* How it works */
.section {
  padding: 60px 24px;
  background: var(--eggshell-soft);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.section h2 {
  text-align: center;
  font-size: 32px;
  margin: 0 0 40px;
  font-weight: 800;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  background: var(--eggshell);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--eggshell);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 16px;
}
.step .num i.icon { margin: 0; font-size: 18px; height: auto; }
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; color: var(--grey); font-size: 14px; }

/* Features strip */
.features {
  padding: 50px 24px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.feature i { color: var(--red); font-size: 28px !important; margin-bottom: 10px; }
.feature h4 { margin: 4px 0 6px; font-size: 16px; font-weight: 700; }
.feature p { margin: 0; font-size: 14px; color: var(--grey); }

/* Pricing */
#pricing { padding: 70px 24px; scroll-margin-top: 20px; }
#pricing h2 { text-align: center; font-size: 32px; margin: 0 0 8px; font-weight: 800; }
#pricing .tagline {
  text-align: center;
  font-size: 17px;
  color: var(--grey);
  margin: 0 auto 40px;
  max-width: 540px;
}
#pricing .tagline strong { color: var(--red); }
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.plan {
  background: var(--eggshell-soft);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.plan.pro {
  background: var(--pro);
  color: var(--eggshell);
  border-color: var(--black);
  position: relative;
}
.plan.pro .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--eggshell);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}
.plan h3 { margin: 0 0 6px; font-size: 24px; font-weight: 800; letter-spacing: 1px; }
.plan .price { font-size: 44px; font-weight: 800; margin: 12px 0 4px; line-height: 1; }
.plan .price small { font-size: 16px; font-weight: 600; color: var(--grey); }
.plan.pro .price small { color: rgba(255,255,255,0.6); }
.plan .period { font-size: 15px;letter-spacing: 0.4px; color: var(--grey); margin-bottom: 20px; }
.plan.pro .period { color: #fff; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  font-size: 14px;
}
.plan li { padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.plan li::before { content: "✓"; color: var(--red); font-weight: 800; }
.plan.pro li::before { color: var(--eggshell); }
.plan .plan-cta {
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  transition: all 0.2s;
  margin-top: auto;
}
.plan .plan-cta:hover { background: var(--black); color: var(--eggshell); }
.plan.pro .plan-cta {
  border-color: var(--red);
  background: var(--red);
  color: var(--eggshell);
}
.plan.pro .plan-cta:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* Bookmark callout */
.bookmark {
  padding: 70px 24px;
  text-align: center;
  background: var(--eggshell-soft);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.bookmark h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.bookmark p {
  font-size: 22px;
  color: var(--grey);
  margin: 0;
  max-width: 720px;
  margin: 0 auto;
}
.rotator {
  display: inline-block;
  position: relative;
  color: var(--red);
  font-weight: 700;
}
.rotator .word {
  display: inline-block;
  animation: rotateWord 1500ms forwards;
}
@keyframes rotateWord {
  0%   { opacity: 0; transform: translateY(12px); }
  15%  { opacity: 1; transform: translateY(0); }
  85%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-12px); }
}

/* Footer CTA */
footer {
  text-align: center;
  padding: 40px 24px 50px;
  color: var(--grey);
  font-size: 13px;
}
footer a { color: var(--black); text-decoration: none; }

@media (max-width: 720px) {
  .hero h1 { font-size: 36px; }
  .hero .subtitle { font-size: 16px; }
  .laurels { width: 260px; }
  .laurels .count .number { font-size: 30px; }
  .steps, .features-grid, .plans { grid-template-columns: 1fr; }
}
