:root {
  --bg-dark: #050816;
  --bg-darker: #02040a;
  --bg-card: #0a1020;
  --accent: #00e5ff;
  --accent-soft: rgba(0,229,255,0.12);
  --accent-2: #8b5cf6;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148,163,184,0.25);
  --danger: #f97373;
  --shadow-soft: 0 18px 45px rgba(15,23,42,0.55);
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --max-width: 1120px;
}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #0b1220 0, #020617 50%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.92),
    rgba(2, 6, 23, 0.75),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

/* BRAND */

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: radial-gradient(
    circle at 20% 0%,
    #22d3ee,
    #0f172a 55%,
    #020617 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(8, 47, 73, 0.7);
  flex-shrink: 0;
}

.brand-logo span {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.brand-text-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* NAV LAYOUT + SPACING */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-1px);
}

/* Force “How it works” to stay gray except on hover */

.nav-right .nav-link[href="#how-it-works"],
.nav-right .nav-link[href="/index.html#how-it-works"],
.nav-right .nav-link[href*="how-it-works"]:visited,
.nav-right .nav-link[href*="how-it-works"]:active,
.nav-right .nav-link[href*="how-it-works"]:focus {
  color: var(--text-muted) !important;
}

.nav-right .nav-link[href*="how-it-works"]:hover {
  color: var(--text-main) !important;
}

/* Keep “How it works” on two lines */

.nav-right .nav-link[href*="how-it-works"] {
  display: inline-block;
  white-space: normal;
  width: 72px;
  text-align: center;
  line-height: 1.15;
}

/* LIVE STATUS PILL (not currently used but ready) */

.nav-pill {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.3rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.5);
  font-size: 0.8rem;
}

.nav-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

/* HAMBURGER BUTTON */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav-toggle span + span {
  margin-top: 4px;
}

/* Hamburger → X when open */

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  flex: 1;
}

/* HERO */

@media (max-width: 640px) {
  .hero {
    padding-top: 1rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

/* Intro statement */

.hero-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--text-main);
  max-width: 22rem;
}

.tagline-space {
  display: inline-block;
  margin-bottom: 0.85rem; /* tweak value if needed */
}

/* “next generation” highlight to match “every call.” */

.hero-eyebrow-highlight {
  background: linear-gradient(120deg, #22d3ee, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* no badge anymore */

.hero-eyebrow span.badge {
  display: none;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.hero-title .highlight {
  background: linear-gradient(120deg, #22d3ee, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 34rem;
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
}

.hero-tagline {
  font-size: 1rem;
  margin-bottom: 1.4rem;
  font-weight: 500;

  /* gradient text instead of teal */
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.7rem;
}

.hero-pill {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.8);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 35px rgba(8, 47, 73, 0.8);
  color: #0b1120;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.9);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 1);
}

.hero-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-footnote strong {
  color: var(--accent);
  font-weight: 500;
}

/* HERO CARD (right side on desktop) */

.hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.36), transparent 50%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.45), transparent 55%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.hero-mini-title {
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-mini-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-label {
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
}

.hero-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
  margin-top: 0.65rem;
}

.hero-stat-box {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.55rem 0.6rem;
  font-size: 0.75rem;
}

.hero-stat-label {
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.hero-stat-value {
  font-weight: 600;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

.hero-stat-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-card-footer {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(
    circle at left,
    rgba(34, 211, 238, 0.2),
    transparent 55%
  );
  padding: 0.7rem 0.75rem;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.hero-chip-row {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.hero-chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.18rem 0.55rem;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.95);
}

/* SECTIONS / CARDS */

section {
  scroll-margin-top: 88px;
}

.section {
  padding: 2.75rem 0;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-kicker,
.page-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
  font-weight: 600;

  /* gradient text to match the hero */
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important; /* <- added !important */
}

.section-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 36rem;
  font-size: 0.92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

.card {
  border-radius: var(--radius-lg);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 1)
  );
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.card-tagline {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.card ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.card ul li + li {
  margin-top: 0.3rem;
}

.card-cta {
  font-size: 0.86rem;
  color: var(--accent);
  font-weight: 500;
}

.card a {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  transition: opacity 0.18s ease-out;
}

.card a:hover {
  opacity: 0.8;
}

/* Steps list (How it works) */

.steps-list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.step-label {
  font-weight: 500;
  color: var(--text-main);
}

/* Contact grid */

#contact .card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-email {
  font-size: 0.9rem;
  color: var(--accent);
}

/* PAGE HEADER (for other pages) */

.page-header {
  padding: 2.75rem 0 1.25rem;
}

.page-kicker {
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.page-title {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 40rem;
}

/* Legal cards */

.legal-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 1)
  );
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.legal-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.legal-card h3 {
  font-size: 0.98rem;
  margin-top: 0.8rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.legal-card p + p {
  margin-top: 0.3rem;
}

.legal-card ul {
  margin: 0.3rem 0 0 1.1rem;
  padding: 0;
}

.legal-card ul li + li {
  margin-top: 0.2rem;
}

/* SUPPORT SECTION */

.support-section {
  padding: 2.75rem 0;
  background: rgba(2, 6, 23, 0.6);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.support-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.support-list li {
  margin-bottom: 0.4rem;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.96);
  padding: 1.2rem 0 1.5rem;
  margin-top: 2.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

/* RESPONSIVE FIXES */

/* Stack hero columns on medium screens */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    margin-top: 1.75rem;
  }
}

/* Hide hero card on phones, simple single-column hero */
@media (max-width: 768px) {
  .hero-card {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-bottom: 2.25rem;
  }
}

/* Nav + hero text tweaks for small phones */
@media (max-width: 640px) {
  .nav-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-right {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    flex-basis: 100%;
  }

  body.nav-open .nav-right {
    display: flex;
  }

  .nav-right .nav-link {
    width: 100%;
    padding-left: 0;
  }

  .hero-eyebrow {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
  }
}
/* PREMIUM PRODUCT CARDS */
.premium-products {
  gap: 1.7rem;
}

.product-card {
  background: linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.35);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 18px 45px rgba(8,23,42,0.45);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px rgba(8,23,42,0.7);
}

/* ICON */
.product-card-icon {
  font-size: 2rem;
  margin-bottom: .25rem;
  background: radial-gradient(circle at 30% 10%, #22d3ee 0%, #8b5cf6 60%);
  -webkit-background-clip: text;
  color: transparent;
}

/* TITLES */
.product-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.product-card-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: -0.35rem;
  margin-bottom: .5rem;
}

/* LIST */
.product-card-list {
  list-style: none;
  padding-left: 0;
  color: var(--text-muted);
  font-size: .9rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.product-card-cta {
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 600;
  padding-top: 0.6rem;
  display: inline-block;

  /* gradient text to match “every call.” */
  background: linear-gradient(120deg, #22d3ee, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  transition: opacity 0.2s ease;
}

.product-card-cta:hover {
  opacity: 0.85;
}

/* Utility class for headings like "protection" / "real life." */
.gradient-text {
  background: linear-gradient(120deg, #22d3ee, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* MOBILE TWEAK */
@media (max-width: 640px) {
  .product-card {
    padding: 1.25rem 1.4rem;
  }
}
/* SNAPIPRO PAGE LAYOUT HELPERS */
.pro-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 720px) {
  .pro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pro-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pro-list {
  list-style: none;
  padding-left: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.pro-list li + li {
  margin-top: 0.3rem;
}

/* Steps block */
.pro-steps {
  display: grid;
  gap: 0.9rem;
}

.pro-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pro-step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: radial-gradient(circle at 30% 0%, #22d3ee, #8b5cf6);
  color: #0b1120;
  flex-shrink: 0;
}

/* Feature grid */
.pro-feature-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 900px) {
  .pro-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pro-feature-card {
  min-height: 0;
}

/* CTA card */
.pro-cta-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 800px) {
  .pro-cta-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.pro-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
/* SMS OPT-IN FORM (Contact section) */

.optin-card {
  margin-top: 1.5rem;
  display: block; /* override #contact .card grid layout */
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.optin-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.optin-field label {
  font-size: 0.9rem;
  font-weight: 500;
}

.optin-field input[type="tel"] {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.optin-field input[type="tel"]::placeholder {
  color: var(--text-muted);
}

.optin-field input[type="tel"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.35);
  background: rgba(15, 23, 42, 1);
}

.optin-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.optin-consent input[type="checkbox"] {
  margin-top: 0.18rem;
}

.optin-smallprint {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.optin-smallprint a {
  text-decoration: underline;
}

.optin-submit {
  align-self: flex-start;
  margin-top: 0.3rem;
}
