:root {
  --paper: #f6f3eb;
  --ink: #233c32;
  --muted: #687269;
  --line: #d9ddd0;
  --green: #dfe8d9;
  --gold: #ddc26e;
  --white: #fffefa;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.5;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #b28a29;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.airspace-context {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 15px;
}
.airspace-context summary { cursor: pointer; font-weight: 600; }
.airspace-context article { padding: 16px 0; border-bottom: 1px solid var(--line); }
.airspace-context article strong { display: block; }
.source-context { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; font-size: 14px; }
.source-context summary { cursor: pointer; font-weight: 600; }
.source-context summary span { font-weight: 400; }
.source-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.source-row small { grid-column: 1 / -1; color: var(--muted); line-height: 1.6; }
.source-state { color: var(--muted); }
.source-state.incomplete { color: #936219; }
.destination-next { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 20px; font-size: 14px; }
.family-plan { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding-block: 70px 90px; border-top: 1px solid var(--line); }
.plan-intro h2 { font-family: Fraunces, serif; font-size: clamp(32px, 4vw, 45px); line-height: 1.18; font-weight: 400; margin: 20px 0; }
.plan-intro > p { max-width: 390px; line-height: 1.65; }
.plan-intro > .field-help { font-size: 14px; }
.plan-note { background: var(--green); padding: 23px; border-radius: 6px; margin-top: 30px; font-size: 15px; line-height: 1.6; overflow-wrap: anywhere; }
.plan-form { min-width: 0; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.plan-fields { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.plan-form fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.plan-form input:not([type=checkbox]), .plan-form select, .plan-form textarea { width: 100%; min-width: 0; font-size: 16px; }
.plan-form textarea { border: 1px solid var(--line); border-radius: 4px; background: #fffefa; color: var(--ink); padding: 12px; resize: vertical; }
.plan-block { position: relative; border-top: 1px solid var(--line); margin-top: 25px; padding-top: 22px; }
.plan-block .step-num { position: absolute; right: 0; top: 23px; font-size: 13px; }
.plan-block h3 { margin: 0 32px 20px 0; font-family: Fraunces, serif; font-size: 23px; font-weight: 400; }
.plan-block label { margin-top: 14px; }
.plan-checklist label { display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; font-size: 15px; }
.plan-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.plan-actions .button { font-size: 14px; padding: 14px 18px; }
.plan-actions .text-button { width: 100%; text-align: left; margin-top: 10px; }
#plan-message.error { color: #a0362a; }
@media (max-width: 900px) {
  .family-plan { grid-template-columns: 1fr; gap: 28px; }
  .plan-intro > p { max-width: 600px; }
}
@media (max-width: 540px) {
  .plan-form { padding: 22px 18px; }
  .plan-fields { grid-template-columns: 1fr; gap: 8px; }
  .plan-actions .button { width: 100%; justify-content: center; }
  .family-plan { padding-block: 42px 55px; }
  .source-row { font-size: 13px; }
}
.wrap {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}
.header {
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  font-size: 31px;
  line-height: 1;
}
.brand-divider {
  height: 22px;
  width: 1px;
  background: var(--line);
  margin: 0 9px;
}
.brand-product {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.4px;
}
.nav nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.nav nav a {
  text-decoration: none;
}
.text-button {
  border: 0;
  background: none;
  padding: 8px 0;
  color: inherit;
}
.text-button:hover,
.nav a:hover {
  text-decoration: underline;
}
.hero {
  padding-top: 88px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 55px;
  align-items: start;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.8px;
  font-weight: 600;
  line-height: 1.7;
}
.dot,
.small-dot {
  display: inline-block;
  background: #678869;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 7px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
  letter-spacing: -1.6px;
}
h1 {
  font-size: clamp(42px, 4.8vw, 67px);
  line-height: 1.08;
  margin-bottom: 27px;
}
h1 em,
h2 em {
  font-weight: 400;
  color: #64806a;
}
h2 {
  font-size: 44px;
  line-height: 1.12;
  margin-bottom: 22px;
}
h3 {
  font-size: 25px;
  letter-spacing: -0.6px;
}
.lede,
.section-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 460px;
}
.hero-copy .eyebrow {
  margin-bottom: 23px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 30px 0 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 22px;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  min-height: 49px;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover:not(:disabled) {
  transform: translateY(-2px);
}
.dark {
  background: var(--ink);
  color: var(--white);
}
.dark:hover:not(:disabled) {
  background: #365445;
}
.outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}
.subtle-link {
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.micro {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  padding: 30px 0 0;
}
.visual-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 16px 8px;
}
.folio {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}
.destination-card {
  background: var(--white);
  border: 1px solid #d3dacd;
  border-radius: 10px;
  box-shadow: 0 20px 65px #233c320c;
  padding: 28px;
  position: relative;
}
.destination-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px -20px 25px 25px;
  max-height: 480px;
  background: var(--green);
  border-radius: 50% 50% 6px 6px;
  transform: rotate(5deg);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card-caption {
  font-family: Fraunces, serif;
  font-size: 23px;
  letter-spacing: -0.5px;
}
.country-picker {
  position: relative;
}
input,
select {
  width: 100%;
  border: 1px solid #ccd2c7;
  border-radius: 4px;
  background: var(--white);
  padding: 13px 14px;
  min-height: 48px;
  color: var(--ink);
}
input[type="search"] {
  padding-right: 45px;
  background: #f8f9f3;
}
input::placeholder {
  color: #8a938b;
}
.search-arrow {
  position: absolute;
  right: 17px;
  top: 8px;
  font-size: 26px;
  pointer-events: none;
}
#country-options {
  list-style: none;
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
  right: 0;
  margin: 6px 0 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 12px 30px #233c3220;
  max-height: 260px;
  overflow: auto;
}
#country-options li {
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 3px;
}
#country-options li[aria-selected="true"],
#country-options li:hover {
  background: var(--green);
}
.brief-title {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  justify-content: space-between;
  margin: 28px 0 13px;
}
.brief-title h2 {
  font-size: 29px;
  margin: 0;
  letter-spacing: -0.7px;
}
.badge {
  font-size: 10px;
  padding: 6px 9px;
  border-radius: 30px;
  white-space: nowrap;
  font-weight: 600;
  background: var(--green);
  line-height: 1.2;
}
.badge.neutral {
  background: #f0efe7;
  color: #677268;
}
.badge.caution {
  background: #f5e8b5;
  color: #78601c;
}
.badge.avoid {
  background: #f4d8cb;
  color: #963f25;
}
.brief-summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  min-height: 70px;
}
.planning-window {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 23px;
}
.window-heading,
.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
.window-heading {
  font-size: 11px;
}
.timeline {
  height: 30px;
  border-bottom: 2px solid #b6c4ae;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 10px;
  position: relative;
}
.timeline > span {
  height: 7px;
  width: 1px;
  background: #b6c4ae;
}
.today-marker {
  position: relative;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--ink);
  bottom: -5px;
}
.today-marker span {
  position: absolute;
  bottom: 13px;
  font-size: 8px;
  letter-spacing: 0.7px;
}
.card-bottom {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 23px;
  font-size: 9px;
  color: var(--muted);
  flex-wrap: wrap;
}
.card-bottom a {
  margin-left: auto;
}
.small-dot {
  width: 5px;
  height: 5px;
  margin-right: 0;
}
.visual-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 23px 10px 0;
}
.note-number {
  font-family: Fraunces, serif;
  font-size: 45px;
  color: #8d9a7e;
}
.visual-note p {
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  color: var(--muted);
}
.visual-note strong {
  font-weight: 500;
}
.visual-note svg {
  margin-left: auto;
  color: #899c82;
}
.source-strip {
  border-block: 1px solid var(--line);
  padding: 23px 0;
}
.source-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
}
.source-title {
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.source-strip a {
  font-size: 11px;
}
.how {
  padding-block: 92px;
}
.section-heading {
  max-width: 480px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 50px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step-num {
  font-size: 11px;
  color: #8f997f;
  display: block;
  margin-bottom: 30px;
}
.steps p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.notice-section {
  background: #e9eddf;
  padding-block: 85px;
}
.notice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.honest-note {
  border-left: 2px solid #afbb9c;
  padding-left: 17px;
  font-size: 12px;
  line-height: 1.75;
  max-width: 410px;
  color: var(--muted);
  margin-top: 28px;
}
.sample-notice {
  background: var(--white);
  padding: 29px;
  border: 1px solid #d2d9c8;
  border-radius: 8px;
  box-shadow: 0 12px 30px #233c3208;
  transform: rotate(-1deg);
}
.sample-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.sample-icon {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 9px;
  text-align: center;
  line-height: 34px;
}
.sample-header b {
  font-size: 9px;
  letter-spacing: 1px;
  display: block;
}
.sample-header div > span {
  font-size: 10px;
  color: var(--muted);
}
.example-label {
  font-size: 8px;
  letter-spacing: 1px;
  margin-left: auto;
  color: var(--muted);
}
.sample-notice h3 {
  font-size: 31px;
  line-height: 1.15;
}
.sample-notice > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.sample-check {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.sample-check span {
  font-size: 9px;
  color: var(--muted);
}
.sample-check p {
  font-size: 12px;
  margin: 0;
}
.sample-link {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.sample-footer {
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
}
.membership {
  padding-block: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.price-card {
  padding: 35px;
  border: 1px solid #c7cfbd;
  background: var(--white);
  border-radius: 8px;
}
.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.price {
  font-family: Fraunces, serif;
  font-size: 67px;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 8px;
}
.price > span {
  font:
    13px "Source Sans 3",
    sans-serif;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 12px;
}
.price-caption {
  font-size: 12px;
  color: var(--muted);
}
.price-card ul {
  list-style: none;
  margin: 25px 0;
  padding: 22px 0;
  border-block: 1px solid var(--line);
}
.price-card li {
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0;
  display: flex;
  gap: 13px;
}
.price-card li span {
  color: #789163;
}
.wide {
  width: 100%;
}
.price-fine {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  margin: 17px 0 0;
}
.price-card .micro {
  margin: 12px 0 0;
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  padding-block: 30px 90px;
}
.faq h2 {
  font-size: 39px;
}
details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
summary:after {
  content: "+";
  color: #7a8d6d;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 16px 0 0;
}
.closing {
  text-align: center;
  padding: 55px 0 85px;
  border-top: 1px solid var(--line);
}
.closing h2 {
  font-size: 49px;
}
.closing .button {
  margin-top: 8px;
}
.footer {
  background: var(--ink);
  color: #e3e8da;
  padding: 45px 0 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
.footer-top p {
  font-family: Fraunces, serif;
  font-size: 22px;
  line-height: 1.3;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #526356;
  padding-top: 20px;
  gap: 30px;
  font-size: 10px;
  color: #bbc7b6;
}
.footer-bottom p {
  margin: 0;
  line-height: 1.8;
}
.footer nav {
  display: flex;
  gap: 22px;
}
.footer nav a {
  text-decoration: none;
}
.dashboard {
  padding-block: 60px 80px;
  min-height: 65vh;
}
.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.dashboard h1 {
  font-size: 49px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
}
.panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 25px;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
.panel h2 {
  font-size: 27px;
  margin: 0;
  letter-spacing: -0.7px;
}
label {
  display: block;
  font-size: 13px;
  margin-bottom: 7px;
}
form > label:not(:first-child) {
  margin-top: 18px;
}
.field-help {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 10px;
}
.checklist {
  padding: 20px 0;
  margin: 20px 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.checklist legend {
  font-family: Fraunces, serif;
  font-size: 18px;
  padding-top: 20px;
}
.checklist label,
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
  margin-bottom: 13px;
}
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  flex-shrink: 0;
  margin: 3px 0;
  accent-color: var(--ink);
}
form .button {
  margin-top: 12px;
}
.mini-horizon {
  padding: 23px;
  background: #eef1e5;
  margin: 24px 0;
  border-radius: 5px;
}
.mini-horizon p {
  font-size: 9px;
  letter-spacing: 1.4px;
}
.mini-horizon strong {
  font-family: Fraunces, serif;
  font-size: 39px;
  font-weight: 400;
  display: block;
}
.mini-horizon > span {
  font-size: 11px;
  color: var(--muted);
}
#watch-summary {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
#watch-steps {
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.75;
}
#watch-steps li {
  padding-left: 6px;
  margin: 12px 0;
}
.brief-links {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.empty-state {
  background: #f4f5ee;
  border: 1px dashed #cbd3c2;
  border-radius: 5px;
  padding: 25px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.history-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.history-item h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.history-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.history-item small {
  font-size: 10px;
  color: var(--muted);
}
.account-footer {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
}
.account-footer .danger {
  margin-left: auto;
  color: #96482e;
}
.message {
  padding: 17px 22px;
  border: 1px solid #c8d5bb;
  background: #e8efdf;
  border-radius: 5px;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
}
.error {
  color: #9c392e !important;
}
.message.error {
  background: #f7e6dd;
  border-color: #e2b6a8;
}
.signed-out {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.signed-out p {
  color: var(--muted);
}
.signed-out > a {
  display: inline-block;
  margin-left: 20px;
  font-size: 13px;
}
dialog {
  color: var(--ink);
  background: var(--paper);
  width: min(460px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 25px 120px #15281c30;
}
dialog::backdrop {
  background: #162e2466;
  backdrop-filter: blur(4px);
}
dialog h2 {
  font-size: 35px;
}
.dialog-close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 26px;
  background: none;
  border: 0;
  color: var(--muted);
}
.dialog-lede {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 25px;
}
#different-email {
  margin-top: 15px;
  font-size: 12px;
}
.skip {
  position: absolute;
  left: 15px;
  top: -60px;
  z-index: 20;
  background: var(--white);
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.privacy-copy {
  max-width: 740px;
  padding-block: 70px;
}
.privacy-copy h1 {
  font-size: 48px;
}
.privacy-copy h2 {
  font-size: 26px;
  margin-top: 35px;
}
.privacy-copy p,
.privacy-copy li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 30px;
    padding-block: 60px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 15px;
  }
  .notice-grid,
  .membership {
    gap: 50px;
  }
  .destination-card {
    padding: 22px;
  }
  .destination-card:before {
    inset: -12px 4px 20px 16px;
    transform: rotate(3deg);
  }
  .brief-title {
    flex-wrap: wrap;
  }
  .steps {
    gap: 30px;
  }
  .source-title {
    display: none;
  }
  .nav nav {
    gap: 18px;
  }
  .brand-product {
    font-size: 15px;
  }
  .dashboard-grid {
    gap: 18px;
  }
  .panel {
    padding: 23px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .nav {
    height: 72px;
  }
  .nav nav > a,
  .brand-divider,
  .brand-product {
    display: none;
  }
  .brand {
    font-size: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 48px 0 45px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .lede {
    font-size: 16px;
  }
  .hero-visual {
    padding-top: 15px;
    max-width: 500px;
    width: 100%;
    margin: auto;
  }
  .visual-kicker {
    margin-left: 0;
  }
  .destination-card:before {
    inset: -12px -5px 20px 16px;
    transform: rotate(3deg);
  }
  .source-strip .wrap {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    row-gap: 10px;
    font-size: 10px;
  }
  .source-strip {
    padding: 19px 0;
  }
  .source-strip a {
    font-size: 10px;
  }
  .how {
    padding-block: 55px;
  }
  h2 {
    font-size: 37px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }
  .step-num {
    margin-bottom: 13px;
  }
  .steps article {
    padding-top: 14px;
  }
  .steps h3 {
    margin-bottom: 10px;
  }
  .notice-section {
    padding-block: 55px;
  }
  .notice-grid,
  .membership,
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .notice-grid h2 {
    font-size: 39px;
  }
  .sample-notice {
    transform: none;
    padding: 25px;
  }
  .membership {
    padding-block: 60px;
  }
  .price-card {
    padding: 26px;
  }
  .faq {
    padding: 0 0 55px;
    gap: 15px;
  }
  .faq h2 {
    margin-bottom: 10px;
  }
  .closing {
    padding: 45px 0 55px;
  }
  .closing h2 {
    font-size: 35px;
  }
  .footer-top p {
    font-size: 18px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .footer nav {
    flex-wrap: wrap;
    gap: 22px;
  }
  .dashboard {
    padding-block: 40px;
  }
  .dashboard h1 {
    font-size: 38px;
  }
  .dashboard-heading {
    display: block;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-heading .badge {
    display: inline-block;
    margin-top: 5px;
  }
  .panel {
    padding: 23px;
  }
  .account-footer {
    flex-wrap: wrap;
    gap: 15px;
  }
  .account-footer .danger {
    margin-left: 0;
  }
  .brief-links {
    flex-wrap: wrap;
  }
  .signed-out {
    padding: 25px;
  }
  .signed-out > a {
    margin: 20px 0 0;
    display: block;
  }
  .signed-out h2 {
    font-size: 30px;
  }
  dialog {
    padding: 33px 25px;
  }
  .privacy-copy h1 {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
  .button:hover:not(:disabled) {
    transform: none;
  }
}
:root { --early-border: #d6e5dd; }
.early-warning { margin: 1.25rem 0; padding: 1.1rem; border: 1px solid var(--early-border); border-radius: 14px; background: #f4f8f5; overflow-wrap: anywhere; }
.early-warning[data-status="watch"] { background: #fff6e6; border-color: #c99e4a; }
.early-warning[data-status="unavailable"], .early-warning[data-status="starting"] { background: var(--paper); border-color: var(--line); }
.early-warning h3 { margin: .35rem 0 .65rem; }
.early-warning h4 { margin-bottom: .5rem; }
.early-warning ul { padding-left: 1.2rem; }
.early-warning li { margin: .4rem 0; }
.early-warning details { margin-top: 1rem; }
.early-warning summary { cursor: pointer; font-weight: 600; }
.early-warning blockquote { margin: .5rem 0; padding-left: .75rem; border-left: 2px solid #afc4b6; font-size: .9rem; }
