/* Plain on purpose. One column, system fonts, black on white.
   Edit freely. Nothing here depends on anything else. */

:root {
  --ink: #111;
  --paper: #fff;
  --link: #1a4a9c;
  --rule: #ccc;
  --texture: none;
  /* Pick one. */
  --font: "Times New Roman", Times, serif;
  /* --font: Georgia, serif; */
  /* --font: "Courier New", Courier, monospace; */
}

/* Dark option. Add class="dark" to <body> to use it. Remove it to go back.
   The texture is a tiny SVG noise pattern, no image file needed. */
body.dark {
  --ink: #f2efe8;
  --paper: #141414;
  --link: #ffd93b;
  --rule: #555;
  --accent: #ffd93b;
  --box: #f3eee3;
  --box-ink: #1c1a17;
  --radius: 24px;
  --radius-small: 10px;
  --texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.6  0 0 0 0 0.58  0 0 0 0 0.54  0 0 0 0.22 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.dark .slideshow img { border-color: var(--rule); }

* { box-sizing: border-box; }

html { font-size: 18px; }

body {
  margin: 0;
  text-align: center;
  padding: 0 1rem;
  font-family: var(--font);
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--texture);
}

main, header, footer {
  max-width: 1000px;
  margin: 0 auto;
}

header { padding-top: 1.5rem; }

.masthead-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 0 1.75rem;
}
.masthead {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: bold;
  margin: 0;
}
/* Big name, smaller descriptor beneath it. */
.masthead .brand { display: block; font-size: 2.6rem; line-height: 1.1; }
.masthead .brand-sub { display: block; font-size: 1.15rem; font-weight: normal; letter-spacing: 0.04em; margin-top: 0.35rem; }
@media (max-width: 400px) {
  .masthead .brand { font-size: 2rem; }
  .masthead .brand-sub { font-size: 0.95rem; }
}
.palm {
  height: 84px;
  width: auto;
  flex: 0 0 auto;
}
@media (max-width: 500px) {
  .palm { height: 52px; }
  .masthead-row { gap: 0.5rem; }
}
/* An animated gif keeps moving; hide it for people who've asked for less motion. */
@media (prefers-reduced-motion: reduce) {
  .palm { display: none; }
}
.masthead a { color: inherit; text-decoration: none; }
.masthead a:hover { text-decoration: none; }
main { padding-bottom: 2rem; }

/* Intro: text beside a photo on wide screens, photo below on phones. */
.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 0.5rem 0 1rem;
}
.intro-text {
  flex: 0 1 460px;
  font-size: 1.35rem;
  line-height: 1.45;
  margin: 0;
}

.inline-price { font-size: 1.6em; line-height: 1; vertical-align: -0.08em; }
.intro-text p { margin: 0 0 1rem; }
.intro-text p:last-child { margin-bottom: 0; }
.hook {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: bold;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
.portrait {
  flex: 0 0 auto;
  width: 280px;
  max-width: 70%;
  border-radius: var(--radius, 24px);
}
.offer { margin: 1.5rem 0 0.5rem; }
.offer p { margin: 0 0 0.25rem; }
.for-only { font-weight: bold; font-size: 1.25rem; }
.big-price {
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: bold;
}
.offer-line { font-weight: bold; font-size: 1.15rem; margin-bottom: 1rem !important; }
.offer .button { font-size: 1.15rem; padding: 0.7rem 2rem; }

h1 {
  font-size: 1.9rem;
  line-height: 1.25;
  font-weight: normal;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 3rem 0 0.75rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1.25rem 0 0.25rem;
}

p, ul, ol { margin: 0 0 1rem; }
ul, ol {
  padding-left: 1.4rem;
  text-align: left;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
li { margin-bottom: 0.35rem; }

a { color: var(--link); }
a:hover { text-decoration-thickness: 2px; }

/* Keyboard focus, visible everywhere. */
a:focus-visible, button:focus-visible, summary:focus-visible, iframe:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }

.lede { font-size: 1.15rem; }

.button {
  display: inline-block;
  font: inherit;
  font-weight: bold;
  color: #111;
  background: var(--accent, #ffd93b);
  border: 2px solid var(--accent, #ffd93b);
  border-radius: var(--radius-small, 10px);
  padding: 0.6rem 1.6rem;
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: transparent; color: var(--ink); }
.button.secondary { background: var(--paper); color: var(--ink); }
.button.secondary:hover { background: var(--ink); color: var(--paper); }

.note {
  font-style: italic;
  margin: 1.5rem 0;
}

/* The two tiers, side by side, styled like the form. */
.tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 1.5rem auto 1.25rem;
}
.tier {
  background: #fff;
  color: #111827;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  padding: 0 0 1.5rem;
  overflow: hidden;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
/* Name and price over a thin yellow rule. */
.tier-head {
  text-align: center;
  padding: 1.5rem 1.5rem 1.1rem;
  margin: 0 1.6rem 1.25rem;
  border-bottom: 3px solid #ffd93b;
}
.tier-name { font-size: 1.05rem; font-weight: 600; color: #6b7280; margin-bottom: 0.15rem; }
.tier-price {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111827;
}
/* Check marks instead of bullets. */
.tier ul { margin: 0; display: block; padding: 0 1.6rem; list-style: none; }
.tier li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.6rem;
}
.tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  background: #ffd93b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%23111827' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 70% no-repeat;
}
.tier li:last-child { margin-bottom: 0; }
/* The $99 extras: a "plus" divider, then blue check marks. */
.tier .plus {
  margin: 0.9rem 1.6rem;
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tier .plus::before, .tier .plus::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #e5e7eb;
}
.tier .extras li::before {
  background-color: #2563eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.tiers-note { font-size: 0.95rem; opacity: 0.85; margin-bottom: 0.4rem; }
@media (max-width: 700px) {
  .tiers { grid-template-columns: 1fr; }
}


/* Get / don't get: side by side on wide screens, stacked on phones. */
.two-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.two-col > div {
  flex: 1 1 250px;
}
.two-col h3 { margin-top: 0.5rem; }

/* Slideshow. Slides glide sideways; the arrows are the whole left and
   right sides of the photo; one caption under it. */
.slideshow {
  margin: 1.25rem 0;
  touch-action: pan-y;
}
.slideshow .slide-box { position: relative; }
.slideshow .track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.slideshow .track.animate { transition: transform 0.45s ease; }
.slideshow .track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.slideshow .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
/* The arrow is always there; the bar behind it appears on hover. */
.slideshow:hover .arrow, .slideshow:focus-within .arrow { background: rgba(0, 0, 0, 0.45); }
.slideshow .arrow:hover { background: rgba(0, 0, 0, 0.7); }
/* No hover on touch screens, so keep the bars visible there. */
@media (hover: none) {
  .slideshow .arrow { background: rgba(0, 0, 0, 0.45); }
}
.slideshow .arrow svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.9));
}
.slideshow .arrow.prev { left: 0; }
.slideshow .arrow.next { right: 0; }
.slideshow .arrow:focus-visible { outline: 3px solid var(--ink); outline-offset: -3px; }
.slideshow .caption {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  /* Always two lines tall, so the slideshow doesn't change height (and
     nudge the text beside it) when a caption is shorter or longer. */
  min-height: 3.1em;
}

@media (prefers-reduced-motion: reduce) {
  .slideshow .track.animate { transition: none; }
  .slideshow .arrow { transition: none; }
}

/* Reviews. Three across, stacked on phones. */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.review {
  margin: 0;
  padding: 0 0.5rem;
  text-align: center;
}
.review p {
  margin: 0 0 0.75rem;
  font-style: italic;
}
.review footer {
  font-weight: bold;
  font-size: 0.95rem;
  text-align: center;
  padding: 0;
  margin: 0;
  border: 0;
  max-width: none;
}
@media (max-width: 700px) {
  .reviews { grid-template-columns: 1fr; }
}

/* FAQ. Left-aligned, in a centered column. */
.faq {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
details { margin-bottom: 0.6rem; }
summary { cursor: pointer; font-weight: bold; padding: 0.3rem 0; list-style-position: inside; }
details p { margin-top: 0.4rem; }

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.about-text {
  flex: 1 1 300px;
  max-width: 460px;
  text-align: left;
}
.about-text p { margin: 0 0 1rem; }
.pair { align-items: flex-start; }
.pair > div { flex: 1 1 300px; max-width: 470px; }
.pair h2 { margin-top: 3rem; }
.pair ol, .pair ul { text-align: left; }
/* Stacked on phones: close the gap between the two. */
@media (max-width: 700px) {
  .pair { gap: 0; }
  .pair > div + div h2 { margin-top: 1.25rem; }
}
.about .slideshow { flex: 1 1 320px; max-width: 460px; margin: 0; }
.slide-box {
  background: var(--box, #f3eee3);
  border-radius: var(--radius, 24px);
  overflow: hidden;
  /* Every slide is the same size. Photos of any shape fill this frame and
     get cropped at the edges rather than resizing the box. */
  aspect-ratio: 4 / 3;
}


/* The form. A clean white card in a modern sans-serif, deliberately
   different from the rest of the page. */
.form-box {
  --fg: #111827;
  --muted: #6b7280;
  --line: #d1d5db;
  --line-strong: #9ca3af;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.18);
  --field: #fff;
  --panel: #f9fafb;
  background: #fff;
  color: var(--fg);
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding: 2.75rem 3rem 3rem;
  margin: 2.5rem auto;
  /* Scrolls inside itself on desktop; full height on phones. */
  max-height: 640px;
  overflow-y: auto;
  max-width: 900px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
.qualifier { max-width: 640px; margin: 0 auto; }

.qualifier .form-title {
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  padding-bottom: 0.9rem;
  border-bottom: 3px solid #ffd93b;
  text-align: center;
}

.qualifier .q { margin-bottom: 2.25rem; }
.qualifier label, .qualifier .label {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.75rem;
}
.qualifier .num { flex: 0 0 auto; color: var(--muted); font-weight: 500; }
.qualifier .num::after { content: "."; }
.qualifier .sub {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 1.1rem 0 0.6rem;
}

/* Text and date fields */
.qualifier input[type="text"], .qualifier input[type="email"], .qualifier input[type="url"], .qualifier input[type="date"], .qualifier input[type="number"], .qualifier textarea {
  font: inherit;
  color: var(--fg);
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.65rem 0.8rem;
  width: 100%;
  min-height: 44px;
  margin: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.qualifier input::placeholder { color: #9ca3af; }
.qualifier input:hover, .qualifier textarea:hover { border-color: var(--line-strong); }
.qualifier input:focus-visible, .qualifier textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.qualifier textarea { resize: vertical; min-height: 90px; display: block; }
.qualifier textarea::placeholder { color: #9ca3af; }
.qualifier .dates { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.qualifier .date-field {
  flex: 1 1 140px;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0.3rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.qualifier .choices input.other-text {
  flex: 0 1 170px;
  width: auto;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  margin: 0;
}

/* A single checkbox with a sentence beside it. */
.qualifier .check-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0.9rem 0 0;
  cursor: pointer;
}
.qualifier .check-line input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

/* "Choose one" / "All that apply" beside a question. */
.qualifier .hint {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

/* Corner icon that opens the form on its own page. It sits on a wrapper
   outside the scrolling card, so it stays in the corner. */
.form-wrap { position: relative; max-width: 900px; margin: 1.5rem auto 2.5rem; }
.form-wrap .form-box { margin: 0; }
.form-pop {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 0.5rem;
  color: #111827;
  opacity: 0.3;
  line-height: 0;
  border-radius: 4px;
  transition: opacity 0.2s, background 0.2s;
}
.form-pop:hover, .form-pop:focus-visible { opacity: 1; background: #f3f4f6; }
.form-pop svg { display: block; width: 22px; height: 22px; }

/* The form on its own page: no inner scrolling. */
.form-box-page { max-height: none; overflow: visible; margin: 1.5rem auto; }
.form-loading { text-align: center; color: var(--muted); }

/* A field that failed the check. */
.qualifier .invalid,
.qualifier input.invalid, .qualifier textarea.invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
  border-radius: 4px;
}
.qualifier .choices.invalid { padding: 4px; margin: -4px; }
.qualifier #form-error, .qualifier #send-error { margin-bottom: 1rem; }

/* Honeypot for spam bots. Off screen, never seen. */
.qualifier .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Small grey line of help under a question. */
.qualifier .help { color: var(--muted); font-size: 0.9rem; margin: -0.35rem 0 0.75rem; }
.qualifier .trip-length { margin: 0.5rem 0 0; min-height: 1.3em; }

/* File upload as a dashed box. */
.qualifier .file-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1.25rem 1rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: 4px;
  background: var(--panel);
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  margin: 0;
  transition: border-color 0.15s, background 0.15s;
}
.qualifier .file-drop:hover { border-color: var(--accent); background: #fff; }
.qualifier .file-drop:has(input:focus-visible) { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.qualifier .file-drop input { position: absolute; top: 0; left: 0; opacity: 0; width: 1px; height: 1px; }
.qualifier .file-drop .file-hint { font-weight: 400; font-size: 0.85rem; color: var(--muted); }
.qualifier .file-drop.has-file { border-style: solid; border-color: var(--accent); background: #fff; }
.qualifier .itin-how { margin-bottom: 0.6rem; }
.qualifier .file-drop { padding: 0.9rem 1rem; }

/* Extra questions for the $99 review. */
.qualifier .extra {
  margin: 0 0 2rem;
  padding: 1.5rem 1.25rem 0.25rem;
  background: var(--panel);
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}
.qualifier .extra-title { font-weight: 600; margin: 0 0 1.25rem; }
.qualifier .extra .q { margin-bottom: 1.5rem; }

/* Dollar amount field with a fixed $ and USD on either side. */
.qualifier .money {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--field);
  min-height: 44px;
  max-width: 260px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.qualifier .money:hover { border-color: var(--line-strong); }
.qualifier .money:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.qualifier .money input, .qualifier .money input:focus-visible {
  border: 0;
  box-shadow: none;
  min-height: 42px;
  padding-left: 0.3rem;
  flex: 1 1 auto;
  min-width: 0;
}
.qualifier .money-sign { padding-left: 0.8rem; color: var(--muted); font-weight: 500; }
.qualifier .money-unit { padding-right: 0.8rem; color: var(--muted); font-size: 0.85rem; }

/* Multi-select chips carry a small box that ticks when chosen. */
.qualifier .choices.multi label { padding-left: 0.8rem; }
.qualifier .choices.multi label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 0.55rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 3px;
  background: #fff;
  vertical-align: -2px;
  flex: 0 0 auto;
}
.qualifier .choices.multi label:has(input:checked)::before {
  border-color: #fff;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='%23111827' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 80% no-repeat;
}

/* iPhone Safari gives date, number, and email fields their own built-in
   width and centred text. Turn that off so they fit the box like everything
   else, and never shrink text below 16px, which stops the auto-zoom. */
.qualifier input[type="date"], .qualifier input[type="number"],
.qualifier input[type="email"], .qualifier input[type="url"], .qualifier input[type="text"], .qualifier textarea {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  max-width: 100%;
  font-size: 16px;
  text-align: left;
}
.qualifier input[type="date"] { display: block; position: relative; }
/* iPhone only: show a hint in an empty date field, since Safari shows nothing. */
@supports (-webkit-touch-callout: none) {
  .qualifier input[type="date"]:not(.has-value)::before {
    content: "Pick a date";
    color: #9ca3af;
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
}
.qualifier input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.qualifier input[type="number"] { -moz-appearance: textfield; }

/* Choices as pills. Tap one to select it. */
.qualifier .choices { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.qualifier .choices label {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
  gap: 0;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.qualifier .choices label:hover { border-color: var(--line-strong); background: var(--panel); }
.qualifier .choices label:has(input:checked) {
  background: var(--fg);
  border-color: var(--fg);
  color: #fff;
}
.qualifier .choices label:has(input:focus-visible) {
  box-shadow: 0 0 0 3px var(--accent-soft);
  border-color: var(--accent);
}
.qualifier .choices input[type="radio"], .qualifier .choices input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

/* The two reviews, as cards */
.qualifier .tier-options { display: flex; flex-direction: column; gap: 0.6rem; }
.qualifier .tier-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0.9rem 1rem;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.qualifier .tier-option:hover { border-color: var(--line-strong); }
.qualifier .tier-option:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.qualifier .tier-option:has(input:focus-visible) { box-shadow: 0 0 0 3px var(--accent-soft); }
.qualifier .tier-option input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  cursor: pointer;
}
.qualifier .tier-option input:checked {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 45%, transparent 50%);
}
.qualifier .tier-text { display: flex; flex-direction: column; gap: 0.1rem; flex: 1 1 auto; }
.qualifier .tier-title { font-weight: 600; }
.qualifier .tier-desc { font-weight: 400; font-size: 0.9rem; color: var(--muted); }
.qualifier .tier-cost { font-weight: 600; font-size: 1.1rem; flex: 0 0 auto; }

.qualifier .warning {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #78350f;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.qualifier button.button {
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s;
}
.qualifier button.button:hover { background: #1d4ed8; color: #fff; }
.qualifier button.button:active { transform: translateY(1px); }
.qualifier button.button[disabled] { opacity: 0.6; cursor: wait; }
.qualifier button.button:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }
.qualifier .form-foot {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1rem 0 0;
}
.qualifier .form-foot svg { vertical-align: -2px; margin-right: 0.15rem; }

@media (max-width: 600px) {
  .form-box { padding: 1.5rem 1rem 1.75rem; max-height: none; }
  .form-pop { top: 6px; right: 6px; }
  .qualifier .tier-option { padding: 0.8rem 0.85rem; gap: 0.7rem; }
  .qualifier .tier-cost { font-size: 1rem; }
  .qualifier .choices input.other-text { flex: 1 1 140px; }
}
@media (prefers-reduced-motion: reduce) {
  .qualifier *, .qualifier *::before { transition: none !important; }
}

/* Thanks page */
.thanks { max-width: 640px; padding-top: 2rem; padding-bottom: 4rem; }
.thanks h1 { font-size: 2rem; font-weight: bold; margin-bottom: 1.25rem; }
.thanks .lede { margin-bottom: 1.5rem; }

/* Email signup on the not-a-fit page */
.signup { max-width: 420px; margin: 1rem auto; text-align: left; }
.signup .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.signup label { display: block; font-weight: bold; margin-bottom: 0.4rem; }
.signup input {
  font: inherit; color: #111; background: #fff;
  border: 1px solid #cfc6b6; border-radius: 6px;
  padding: 0.6rem 0.8rem; width: 100%; min-height: 44px; margin-bottom: 0.6rem;
}
.signup .button { width: 100%; }

/* Embedded form */
.form-embed {
  margin: 1rem 0;
  min-height: 500px;
}
.form-embed iframe {
  width: 100%;
  border: 0;
}

footer {
  padding: 3rem 0 3rem;
  font-size: 0.95rem;
}

table {
  border-collapse: collapse;
  margin: 1rem 0;
}
th, td {
  text-align: left;
  padding: 0.4rem 1rem 0.4rem 0;
  border-bottom: 1px solid var(--rule);
}


@media (max-width: 400px) {
  html { font-size: 16px; }
  .masthead { font-size: 1.7rem; }
  header { padding-top: 1.5rem; }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
