:root {
  --brand-red: #c71924;
  --brand-red-dark: #a9141d;
  --brand-red-soft: #fff0f1;
  --ink: #151922;
  --muted: #5f6673;
  --line: #e9edf2;
  --success: #149447;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
}

.top-strip {
  background: linear-gradient(90deg, var(--brand-red), #d72832);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
}

.navbar {
  box-shadow: 0 2px 18px rgba(17, 24, 39, 0.06);
  min-height: 5rem;
}

.logo-box {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--brand-red);
  font-size: 2rem;
  line-height: 1;
}
.logo-box .irl {
  background: var(--brand-red);
  color: #fff;
  padding: 0.16rem 0.24rem 0.22rem;
}
.logo-tagline {
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.08;
  margin-left: 0.75rem;
  text-transform: uppercase;
}

.button.is-brand {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(199, 25, 36, 0.22);
}
.button.is-brand:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  color: #fff;
}
.button.is-brand-outline {
  border-color: var(--brand-red);
  color: var(--brand-red);
  font-weight: 800;
}
.button.is-brand-outline:hover {
  background: var(--brand-red-soft);
  color: var(--brand-red-dark);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 35%,
      rgba(199, 25, 36, 0.07),
      transparent 28rem
    ),
    radial-gradient(
      circle at 100% 20%,
      rgba(199, 25, 36, 0.08),
      transparent 26rem
    ),
    #fff;
}
.headline {
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  font-weight: 900;
}
.headline .mark-red {
  color: var(--brand-red);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.subhead {
  color: #333946;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.55;
}

.pill-proof {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 0.9rem;
}
.icon-circle {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffe6e8;
  color: var(--brand-red);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.check-card,
.soft-card,
.pricing-card,
.use-card {
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: #fff;
}
.check-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.secure-row {
  color: #606978;
  font-size: 0.86rem;
}

/* Form overrides inside the check card */
.check-card .field .input {
  font-size: 1.5rem;
  height: auto;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  box-shadow: none;
}
.check-card input[type="submit"],
.check-card button[type="submit"] {
  background: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 1.5rem !important;
  width: 100% !important;
  height: auto !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  display: block !important;
  margin-top: 1rem !important;
  box-shadow: 0 10px 22px rgba(199, 25, 36, 0.22) !important;
  border: none !important;
}
.check-card input[type="submit"]:hover,
.check-card button[type="submit"]:hover {
  background: var(--brand-red-dark) !important;
}
.check-card .help.is-danger {
  font-size: 0.9rem;
  margin-top: 0.35rem;
}
.check-card .field .input::placeholder {
  color: #adb5bd;
}
.check-card .control.has-icons-right .icon.is-right {
  height: calc(1.5rem + 1.2rem + 4px);
  font-size: 1.5rem;
  pointer-events: none;
}

.stat-band {
  background: linear-gradient(90deg, #fff3f4, #fff9f9);
  border-radius: 18px;
  border: 1px solid #ffe3e5;
}
.stat-number {
  color: var(--brand-red);
  font-weight: 900;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1;
}
.stat-label {
  color: #3d4552;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.section-subtitle {
  color: var(--muted);
}

.use-card {
  padding: 1.4rem 1rem;
  height: 100%;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}
.use-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.1);
}
.use-card .title {
  font-size: 1rem;
  margin-top: 0.65rem;
  margin-bottom: 0.35rem;
}
.use-card p {
  color: #4d5563;
  font-size: 0.9rem;
}
.use-arrow {
  display: none;
  color: #9aa2af;
  font-size: 1.4rem;
}

.steps-wrap {
  max-width: 860px;
  margin-inline: auto;
}
.step-item {
  position: relative;
}
.step-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.step-arrow {
  color: #9ca3af;
  font-size: 2rem;
  align-self: center;
}

.pricing-card {
  overflow: hidden;
  height: 100%;
}
.pricing-head {
  background: var(--brand-red);
  color: #fff;
  font-weight: 900;
  padding: 0.7rem 1rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.price {
  font-size: 2.65rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.per-day {
  color: var(--brand-red);
  font-weight: 900;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.6rem;
  align-items: start;
}
.tick {
  color: var(--success);
  font-weight: 900;
}
.include-box {
  background: linear-gradient(180deg, #fff2f3, #fffafa);
  border: 1px solid #ffe1e3;
  border-radius: 18px;
}

.ethics-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
  padding: 1.35rem;
  height: 100%;
}
.ethics-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
}
.ethics-card p {
  color: #4d5563;
  font-size: 0.92rem;
}
.trust-band {
  background: linear-gradient(180deg, #fff8f8, #ffffff);
  border-top: 1px solid #ffe6e8;
  border-bottom: 1px solid #ffe6e8;
}
.program-card {
  border: 1px solid #ffe0e3;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fff7f8);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.07);
  height: 100%;
  overflow: hidden;
}
.program-head {
  background: #151922;
  color: #fff;
  padding: 0.85rem 1.1rem;
  font-weight: 900;
}
.program-card .content-wrap {
  padding: 1.35rem;
}
.quiet-note {
  border-left: 4px solid var(--brand-red);
  background: #fff7f8;
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.cta-band {
  background: linear-gradient(90deg, var(--brand-red), #d8232d);
  color: #fff;
}
.site-footer {
  background: #fafafa;
  border-top: 1px solid var(--line);
  padding: 3rem 1.5rem 1.5rem;
}
.site-footer a {
  color: #303746;
}
.site-footer a:hover {
  color: var(--brand-red);
}
.fineprint {
  color: #697181;
  font-size: 0.74rem;
}

@media (max-width: 768px) {
  .top-strip {
    font-size: 0.78rem;
    text-align: center;
  }
  .navbar {
    min-height: 4.25rem;
  }
  .logo-box {
    font-size: 1.65rem;
  }
  .logo-tagline {
    display: none;
  }
  .hero-body {
    padding: 2.5rem 1.25rem 1.5rem;
  }
  .pill-proof {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
    font-size: 0.78rem;
  }
  .pill-proof .icon-circle {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.05rem;
  }
  .check-card {
    margin-top: 1.5rem;
  }
  .secure-row .column {
    display: flex;
    gap: 0.8rem;
    align-items: start;
  }
  .stat-band .column {
    border-bottom: 1px solid #ffe1e3;
  }
  .stat-band .column:last-child {
    border-bottom: 0;
  }
  .use-card {
    display: flex;
    align-items: center;
    text-align: left !important;
    gap: 1rem;
    padding: 1rem;
  }
  .use-card .icon-circle {
    width: 3rem;
    height: 3rem;
  }
  .use-card .title {
    margin-top: 0;
  }
  .use-arrow {
    display: inline-block;
    margin-left: auto;
  }
  .steps-wrap .columns {
    display: block;
  }
  .step-item {
    display: flex;
    gap: 1rem;
    text-align: left !important;
    margin-bottom: 1.5rem;
  }
  .step-arrow {
    display: none;
  }
  .cta-band .columns {
    text-align: center;
  }
  .cta-band .column.has-text-right {
    text-align: center !important;
  }
  .cta-band .button {
    width: 100%;
    white-space: normal;
    height: auto;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }
  .check-card .field .input {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
  .check-card input[type="submit"],
  .check-card button[type="submit"] {
    font-size: 1rem !important;
    padding: 0.6rem 1rem !important;
  }
  .check-card .control.has-icons-right .icon.is-right {
    height: calc(1rem + 1rem + 4px);
    font-size: 1.1rem;
  }
}
