:root {
  --navy: #0B1320;
  --blue: #2563EB;
  --cyan: #06B6D4;
  --light: #F2F4F7;
  --white: #FFFFFF;
  --text: #172033;
  --muted: #667085;
  --border: #E4E7EC;

  --max-width: 1200px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 19, 32, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.16), transparent 30%),
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.18), transparent 35%),
    var(--navy);
  color: var(--white);
  padding: 96px 0 104px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.15rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.22);
}

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

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-placeholder {
  width: min(100%, 420px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.app-placeholder img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
#problem {
  padding: 88px 0;
  background: var(--white);
}

#problem .container {
  max-width: 920px;
}

#problem h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--navy);
}

#problem p {
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: var(--muted);
}

#problem p strong {
  color: var(--text);
  font-size: 1.16rem;
}

#problem p:last-child {
  margin-bottom: 0;
}

#features {
  padding: 96px 0;
  background: var(--light);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(11, 19, 32, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(11, 19, 32, 0.09);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 800;
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.2;
}

.feature-tagline {
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.feature-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

#how-it-works {
  padding: 96px 0;
  background: var(--white);
}

#how-it-works .section-heading {
  margin-bottom: 52px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.workflow-step {
  position: relative;
  padding: 24px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.workflow-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow-step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.workflow-summary {
  margin: 34px 0 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

#small-business {
  padding: 96px 0;
  background:
    radial-gradient(circle at right center, rgba(6, 182, 212, 0.12), transparent 34%),
    var(--navy);
  color: var(--white);
}

.small-business-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.small-business-heading .eyebrow {
  margin-bottom: 16px;
  color: var(--cyan);
}

.small-business-heading h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.small-business-copy > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.trade-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.trade-list span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
}

.small-business-copy .small-business-summary {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 800;
}

#tester {
  padding: 96px 0;
  background: var(--light);
}

.tester-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: stretch;
}

.tester-copy .eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
}

.tester-copy h2 {
  margin: 0 0 24px;
  max-width: 680px;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.tester-copy > p {
  max-width: 700px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.tester-copy .tester-emphasis {
  margin: 28px 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.12rem;
}

.tester-note {
  margin-top: 14px !important;
  font-size: 0.9rem !important;
}

.tester-panel {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(11, 19, 32, 0.07);
}

.tester-panel h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 1.5rem;
}

.tester-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tester-benefits li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 600;
}

.tester-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.platform-note {
  margin-top: 30px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.16);
}

.platform-note strong {
  color: var(--navy);
}

.platform-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

#pricing {
  padding: 96px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: center;
}

.pricing-copy .eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
}

.pricing-copy h2 {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.pricing-copy > p {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.testing-price-note {
  color: var(--navy) !important;
  font-weight: 800;
}

.pricing-card {
  padding: 36px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(11, 19, 32, 0.16);
}

.pricing-product {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.price-amount {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-period {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
}

.pricing-description {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

#faq {
  padding: 96px 0;
  background: var(--light);
}

#faq .section-heading {
  margin-bottom: 42px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  max-width: 980px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

#final-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at center top, rgba(37, 99, 235, 0.18), transparent 35%),
    var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta-inner {
  max-width: 780px;
}

.final-cta-inner .eyebrow {
  margin-bottom: 16px;
  color: var(--cyan);
}

.final-cta-inner h2 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.final-cta-inner > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.final-cta-inner .final-cta-emphasis {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
}

.final-cta-inner .primary-button {
  margin-top: 8px;
}

.final-cta-note {
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 0.9rem !important;
}

.site-footer {
  padding: 32px 0;
  background: #070d16;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.footer-logo {
  margin: 0;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.86rem;
}

/* =========================
   RESPONSIVE LAYOUT
   ========================= */

@media (max-width: 1000px) {
  .site-nav {
    gap: 14px;
  }

  .hero-grid,
  .small-business-grid,
  .tester-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 700px;
  }

  .small-business-grid,
  .pricing-grid {
    gap: 44px;
  }

  .tester-grid {
    gap: 36px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .site-header .container {
    min-height: 64px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .brand {
    font-size: 1.25rem;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 68px 0 72px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .app-placeholder {
    min-height: 320px;
  }

  #problem,
  #features,
  #how-it-works,
  #small-business,
  #tester,
  #pricing,
  #faq,
  #final-cta {
    padding: 72px 0;
  }

  #problem h2,
  .section-heading h2,
  .small-business-heading h2,
  .tester-copy h2,
  .pricing-copy h2,
  .final-cta-inner h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 26px;
  }

  .workflow {
    grid-template-columns: repeat(2, 1fr);
  }

  .small-business-grid {
    gap: 36px;
  }

  .tester-panel,
  .pricing-card {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-brand,
  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    padding-top: 58px;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    padding: 22px;
  }

  .trade-list {
    gap: 8px;
  }

  .trade-list span {
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .tester-panel,
  .pricing-card {
    padding: 24px;
  }

  .price {
    align-items: baseline;
  }

  .price-amount {
    font-size: 3.2rem;
  }

  .footer-brand {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.7rem);
    line-height: 1.06;
  }

  .hero-text {
    margin: 20px 0 26px;
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-note {
    font-size: 0.82rem;
  }
}

/* ROCEN product showcase */

.feature-showcase {
  margin-top: 64px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(11, 19, 32, 0.08);
}

.feature-showcase-copy h3 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--navy);
}

.feature-showcase-copy p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-showcase-visual {
  display: flex;
  justify-content: center;
}

.feature-showcase-visual img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(11, 19, 32, 0.16);
}

@media (max-width: 760px) {
  .feature-showcase {
    margin-top: 40px;
    padding: 28px 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-showcase-copy h3 {
    font-size: 2rem;
  }

  .feature-showcase-visual img {
    max-width: 320px;
  }
}

/* Alternate product showcase */

.feature-showcase-reverse .feature-showcase-copy {
  grid-column: 2;
  grid-row: 1;
}

.feature-showcase-reverse .feature-showcase-visual {
  grid-column: 1;
  grid-row: 1;
}

@media (max-width: 760px) {
  .feature-showcase-reverse .feature-showcase-copy,
  .feature-showcase-reverse .feature-showcase-visual {
    grid-column: 1;
  }

  .feature-showcase-reverse .feature-showcase-copy {
    grid-row: 1;
  }

  .feature-showcase-reverse .feature-showcase-visual {
    grid-row: 2;
  }
}

/* Tester application page */

.tester-application {
  padding: 80px 0 100px;
  background: var(--light);
  min-height: calc(100vh - 70px);
}

.tester-application-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 80px;
  align-items: start;
}

.tester-application-intro h1 {
  margin: 12px 0 24px;
  max-width: 650px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.02;
  color: var(--navy);
}

.tester-application-intro > p {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.tester-note {
  max-width: 650px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 16px;
  background: rgba(6, 182, 212, 0.08);
}

.tester-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.tester-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tester-form-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(11, 19, 32, 0.08);
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(37, 99, 235, 0.12);
  border-color: var(--blue);
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0 26px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.tester-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

@media (max-width: 900px) {
  .tester-application-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tester-application-intro h1 {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  .tester-application {
    padding: 52px 0 72px;
  }

  .tester-application-grid {
    gap: 36px;
  }

  .tester-application-intro h1 {
    font-size: 2.6rem;
  }

  .tester-form-card {
    padding: 26px 20px;
  }
}

/* Tester page button fixes */

.site-header .header-inner > .button {
  color: #ffffff;
  background: var(--blue);
  text-decoration: none;
}

.site-header .header-inner > .button:hover {
  color: #ffffff;
}

.tester-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  color: #ffffff;
  background: var(--blue);
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.tester-submit:hover {
  background: #1d4ed8;
}

/* Tester page header button sizing */

.site-header .header-inner > .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

/* Tester submission success */

.tester-success {
  padding: 20px 4px;
}

.tester-success h2 {
  margin: 10px 0 18px;
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--navy);
}

.tester-success p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.tester-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}