/* BPT Innovations
   Responsive desktop + mobile layout.
   Mobile sizing is optimized for approximately a 390px CSS viewport
   (iPhone 13 / similar devices).
*/

:root {
  --cream: #f4f2ea;
  --soft-cream: #edeee6;
  --card: #ffffff;
  --green: #254936;
  --green-soft: #3f705a;
  --text: #2f3934;
  --muted: #6e7872;
  --line: #dce1da;
  --badge-bg: #eef3ed;
  --check-bg: #e0ece4;
  --shadow: 0 6px 18px rgba(37, 73, 54, .055);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  border-top: 1px solid var(--line);
}

/* =========================
   DESKTOP
   ========================= */

.hero {
  min-height: 335px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 45px 0 38px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  margin: 0;
  color: var(--green);
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.3px;
}

.hero-subtitle {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--green-soft);
  font-size: 20px;
  line-height: 1.4;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 25px;
}

.hero-nav > a:not(.button) {
  color: var(--green);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: .94;
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.section-heading {
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--green-soft);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 4px;
}

.section-heading h2 {
  margin: 13px 0 0;
  color: var(--green);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.8px;
}

/* =========================
   ABOUT / FEATURES
   ========================= */

.about {
  padding: 55px 0 50px;
}

.about-copy {
  max-width: 870px;
  margin: 38px auto 0;
}

.about-copy p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.55;
}

/*
   Keep the feature/checklist content aligned with the
   About Us text instead of stretching across the entire
   1080px desktop container.
*/
.features-intro {
  max-width: 870px;
  margin: 34px auto 20px;
}

.features-intro h3,
.about-cta h3 {
  margin: 0;
  color: var(--green);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 800;
}

.features-intro p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.feature-list {
  width: min(870px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.feature-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--check-bg);
  color: var(--green-soft);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.feature-card h4 {
  margin: 0;
  color: var(--green);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
}

.feature-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.feature-card hr,
.pricing-card hr {
  height: 1px;
  margin: 12px 0;
  border: 0;
  background: var(--line);
}

.feature-card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.feature-card li {
  padding: 2px 0;
}

.feature-card strong {
  color: var(--text);
}

.about-cta {
  padding: 34px 0 0;
  text-align: center;
}

.domain-pill {
  display: inline-flex;
  margin-top: 17px;
  padding: 9px 26px;
  border-radius: 999px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

/* =========================
   PRICING
   ========================= */

.pricing {
  background: var(--soft-cream);
  padding: 60px 0 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 27px 24px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-card.popular {
  border: 3px solid var(--green-soft);
  padding: 32px 22px 23px;
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.pricing-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 27px;
  line-height: 1.1;
  font-weight: 800;
}

.plan-description {
  min-height: 45px;
  margin: 12px 0 27px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.price {
  color: var(--green);
  font-size: 50px;
  line-height: .95;
  font-weight: 800;
  letter-spacing: -1.8px;
}

.price span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}

.price-badge {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--badge-bg);
  color: var(--green-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.price-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-card hr {
  margin: 19px 0 15px;
}

.plan-features {
  margin: 0 0 21px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding: 4px 0 4px 23px;
  font-size: 15px;
  line-height: 1.4;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-soft);
  font-weight: 800;
}

.pricing-card .button {
  width: 100%;
  min-height: 46px;
  font-size: 16px;
}

.pricing-footnote {
  max-width: 850px;
  margin: 21px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
}

/* =========================
   GET STARTED
   ========================= */

.get-started {
  padding: 60px 0 65px;
  text-align: center;
}

.get-started .section-heading h2 {
  font-size: 43px;
  line-height: 1.2;
}

.get-started-copy {
  max-width: 680px;
  margin: 22px auto 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.button-large {
  min-width: 250px;
  min-height: 54px;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  padding: 28px 0 30px;
  background: var(--green);
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

.footer p {
  margin: 0 0 8px;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }
}

/* =========================
   MOBILE
   Optimized for ~390px CSS viewport
   ========================= */

@media (max-width: 700px) {

  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 30px);
  }

  /* HERO */

  .hero {
    min-height: 330px;
    padding: 48px 0 34px;
  }

  .hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    max-width: 330px;
    margin-top: 13px;
    font-size: 17px;
    line-height: 1.4;
  }

  .hero-nav {
    gap: 18px;
    margin-top: 24px;
  }

  .hero-nav > a:not(.button) {
    font-size: 17px;
  }

  .button {
    min-height: 46px;
    padding: 10px 17px;
    font-size: 16px;
    border-radius: 8px;
  }

  .hero-nav .button {
    padding-left: 17px;
    padding-right: 17px;
  }

  /* SECTION HEADINGS */

  .eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .section-heading h2 {
    margin-top: 12px;
    font-size: 34px;
    letter-spacing: -.5px;
  }

  /* ABOUT */

  .about {
    padding: 48px 0 42px;
  }

  .about-copy {
    margin-top: 30px;
  }

  .about-copy p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.52;
  }

  .features-intro {
    margin: 34px 0 19px;
  }

  .features-intro h3,
  .about-cta h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .features-intro p {
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.45;
  }

  /* FEATURE / CHECKLIST CARDS */

  .feature-list {
    gap: 9px;
  }

  .feature-card {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 15px 14px;
    border-radius: 10px;
  }

  .check {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }

  .feature-card h4 {
    font-size: 17px;
    line-height: 1.25;
  }

  .feature-card p {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.42;
  }

  .feature-card hr {
    margin: 10px 0;
  }

  .feature-card ul {
    padding-left: 19px;
    font-size: 14px;
    line-height: 1.4;
  }

  .feature-card li {
    padding: 2px 0;
  }

  .about-cta {
    padding-top: 35px;
  }

  .domain-pill {
    margin-top: 16px;
    padding: 9px 22px;
    font-size: 15px;
  }

  /* PRICING */

  .pricing {
    padding: 50px 0 45px;
  }

  .pricing .section-heading h2 {
    font-size: 35px;
  }

  .pricing-grid {
    gap: 24px;
    margin-top: 46px;
  }

  .pricing-card,
  .pricing-card.popular {
    padding: 29px 22px 25px;
    border-radius: 12px;
  }

  .pricing-card.popular {
    border-width: 3px;
    padding-top: 31px;
  }

  .popular-badge {
    top: -17px;
    padding: 6px 15px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .pricing-card h3 {
    font-size: 27px;
  }

  .plan-description {
    min-height: 0;
    margin: 11px 0 27px;
    font-size: 16px;
    line-height: 1.4;
  }

  .price {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  .price span {
    font-size: 17px;
  }

  .price-badge {
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .price-note {
    font-size: 14px;
    line-height: 1.45;
  }

  .pricing-card hr {
    margin: 18px 0 15px;
  }

  .plan-features {
    margin-bottom: 22px;
  }

  .plan-features li {
    font-size: 15px;
    padding: 4px 0 4px 23px;
  }

  .pricing-card .button {
    min-height: 46px;
    font-size: 16px;
  }

  .pricing-footnote {
    margin-top: 25px;
    font-size: 12px;
    line-height: 1.45;
  }

  /* GET STARTED */

  .get-started {
    padding: 52px 0 55px;
  }

  .get-started .section-heading h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .desktop-break {
    display: none;
  }

  .get-started-copy {
    margin: 20px auto 25px;
    font-size: 17px;
    line-height: 1.5;
  }

  .button-large {
    min-width: 0;
    width: 100%;
  }

  /* FOOTER */

  .footer {
    padding: 29px 0 32px;
  }

  .footer p {
    font-size: 13px;
    line-height: 1.45;
  }

  .footer a {
    font-size: 16px;
  }
}

/* =========================
   SMALL PHONES
   ========================= */

@media (max-width: 430px) {

  .container {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: 315px;
    padding-top: 43px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-nav {
    gap: 15px;
  }

  .hero-nav > a:not(.button) {
    font-size: 16px;
  }

  .hero-nav .button {
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .feature-card {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 14px 12px;
  }

  .check {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .feature-card h4 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-card ul {
    font-size: 13px;
  }

  .pricing-card,
  .pricing-card.popular {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-card h3 {
    font-size: 25px;
  }

  .price {
    font-size: 44px;
  }
}

/* =========================================================
   WAITLIST PAGE
   ========================================================= */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.header-content {
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand h1 {
  margin: 0;
  color: var(--green);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.6px;
}

.brand p {
  max-width: 390px;
  margin: 7px 0 0;
  color: var(--green-soft);
  font-size: 14px;
  line-height: 1.4;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: var(--green);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a:hover {
  opacity: .75;
}


/* =========================
   WAITLIST CONTENT
   ========================= */

.waitlist-page {
  padding: 58px 0 65px;
}

.form-container {
  width: min(760px, 100%);
  margin: 0 auto;
}

.form-header {
  margin-bottom: 38px;
  text-align: center;
}

.form-header .eyebrow {
  display: block;
}

.form-header h2 {
  margin: 13px 0 0;
  color: var(--green);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.8px;
}

.form-header p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}


/* =========================
   FORM
   ========================= */

.waitlist-form {
  padding: 32px 34px 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-section-title {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.required {
  color: var(--green-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #cfd6cf;
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition:
    border-color .15s ease,
    box-shadow .15s ease;
}

.form-group input,
.form-group select {
  height: 46px;
  padding: 9px 12px;
}

.form-group textarea {
  min-height: 135px;
  padding: 11px 12px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(63, 112, 90, .10);
}

.form-group textarea::placeholder {
  color: #8a938d;
}

.field-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-divider {
  height: 1px;
  margin: 30px 0 28px;
  background: var(--line);
}


/* =========================
   FORM ACTIONS
   ========================= */

.form-actions {
  margin-top: 28px;
  text-align: center;
}

.submit-button {
  width: 100%;
  min-height: 50px;
  padding: 11px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform .15s ease,
    opacity .15s ease;
}

.submit-button:hover {
  transform: translateY(-1px);
  opacity: .94;
}

.privacy-note {
  max-width: 560px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.back-link {
  display: block;
  width: fit-content;
  margin: 24px auto 0;
  color: var(--green);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.back-link:hover {
  opacity: .75;
}


/* =========================
   WAITLIST FOOTER
   ========================= */

.site-footer {
  padding: 28px 0 30px;
  background: var(--green);
  color: rgba(255, 255, 255, .72);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-content p {
  margin: 0;
  font-size: 13px;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}


/* =========================================================
   WAITLIST — MOBILE
   Optimized for approximately 390px CSS viewport
   ========================================================= */

@media (max-width: 700px) {

  .header-content {
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 22px;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    text-align: center;
  }

  .brand h1 {
    font-size: 25px;
  }

  .brand p {
    max-width: 330px;
    margin-top: 6px;
    font-size: 13px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .waitlist-page {
    padding: 40px 0 45px;
  }

  .form-header {
    margin-bottom: 28px;
  }

  .form-header h2 {
    margin-top: 11px;
    font-size: 34px;
  }

  .form-header p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .waitlist-form {
    padding: 24px 18px 22px;
    border-radius: 11px;
  }

  .form-section-title {
    margin-bottom: 19px;
    font-size: 19px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 17px;
  }

  .form-group label {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .form-group input,
  .form-group select {
    height: 44px;
    padding: 8px 11px;
    font-size: 16px;
  }

  .form-group textarea {
    min-height: 125px;
    font-size: 16px;
  }

  .field-note {
    font-size: 12px;
  }

  .form-divider {
    margin: 25px 0 24px;
  }

  .form-actions {
    margin-top: 24px;
  }

  .submit-button {
    min-height: 48px;
    padding: 10px 15px;
    font-size: 15px;
  }

  .privacy-note {
    font-size: 11px;
  }

  .back-link {
    margin-top: 20px;
    font-size: 14px;
  }

  .site-footer {
    padding: 25px 0 27px;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-content p {
    font-size: 12px;
  }

  .footer-content a {
    font-size: 14px;
  }
}


/* =========================================================
   WAITLIST — SMALL PHONES
   ========================================================= */

@media (max-width: 430px) {

  .header-content {
    padding-top: 21px;
    padding-bottom: 19px;
  }

  .brand h1 {
    font-size: 23px;
  }

  .brand p {
    font-size: 12px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .waitlist-page {
    padding-top: 34px;
  }

  .form-header h2 {
    font-size: 32px;
  }

  .form-header p {
    font-size: 15px;
  }

  .waitlist-form {
    padding-left: 15px;
    padding-right: 15px;
  }

  .form-section-title {
    font-size: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .submit-button {
    font-size: 14px;
  }
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thank-you-page {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 65px 0;
}

.thank-you-card {
  width: min(650px, 100%);
  margin: 0 auto;
  padding: 45px 50px 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--check-bg);
  color: var(--green-soft);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.thank-you-card .eyebrow {
  display: block;
}

.thank-you-card h2 {
  margin: 12px 0 0;
  color: var(--green);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.8px;
}

.thank-you-card p {
  max-width: 510px;
  margin: 19px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.waitlist-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 29px;
  padding: 11px 24px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  transition:
    transform .15s ease,
    opacity .15s ease;
}

.waitlist-button:hover {
  transform: translateY(-1px);
  opacity: .94;
}


/* =========================================================
   THANK YOU — MOBILE
   Optimized for approximately 390px CSS viewport
   ========================================================= */

@media (max-width: 700px) {

  .thank-you-page {
    min-height: 0;
    padding: 45px 0 50px;
  }

  .thank-you-card {
    padding: 32px 20px 34px;
    border-radius: 11px;
  }

  .success-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    font-size: 29px;
  }

  .thank-you-card h2 {
    margin-top: 10px;
    font-size: 34px;
  }

  .thank-you-card p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .waitlist-button {
    width: 100%;
    min-height: 46px;
    margin-top: 25px;
    padding: 10px 16px;
    font-size: 15px;
  }
}


/* =========================================================
   THANK YOU — SMALL PHONES
   ========================================================= */

@media (max-width: 430px) {

  .thank-you-page {
    padding-top: 35px;
    padding-bottom: 40px;
  }

  .thank-you-card {
    padding: 28px 16px 30px;
  }

  .success-icon {
    width: 46px;
    height: 46px;
    font-size: 27px;
  }

  .thank-you-card h2 {
    font-size: 32px;
  }

  .thank-you-card p {
    font-size: 15px;
  }

  .waitlist-button {
    font-size: 14px;
  }
}