@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --paper: #f8f8f2;
  --ink: #193c30;
  --muted: #5d6f65;
  --line: #dfe5d9;
  --lime: #d6ebac;
  --green: #173d32;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #648b37;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3,
.brand {
  font-family: "Manrope", sans-serif;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 14px 18px;
  background: var(--green);
  color: white;
  transform: translateY(-160%);
  z-index: 10;
  border-radius: 8px;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.3px;
}
.brand-arrow {
  font-size: 20px;
  margin-left: 3px;
  font-weight: 500;
}
.section-nav,
.account-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}
.section-nav a,
.sign-in {
  padding-block: 14px;
}
.section-nav a:hover,
.sign-in:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.account-nav {
  gap: 24px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 18px 23px;
  min-height: 56px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: #285441;
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
  font-weight: 400;
}
.button-small {
  min-height: 43px;
  padding: 10px 16px;
  gap: 17px;
  font-size: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 68px;
  padding-block: 88px 82px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  line-height: 1.6;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #708f42;
}
.beta {
  padding: 3px 7px;
  margin-left: 7px;
  border: 1px solid #d4ddc9;
  border-radius: 4px;
  font-size: 8px;
  letter-spacing: 1px;
}
h1 {
  font-size: clamp(45px, 5.3vw, 72px);
  letter-spacing: -3.8px;
  line-height: 1.09;
  font-weight: 600;
  margin-top: 22px;
}
h1 span {
  color: #6a8250;
}
.hero-description {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 24px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}
.text-link {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  padding-block: 8px;
  font-size: 13px;
  font-weight: 700;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero-note {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 17px;
}
.preview-scene {
  position: relative;
  isolation: isolate;
  padding: 6px 10px 24px 0;
}
.preview-scene::before {
  content: "";
  position: absolute;
  inset: 30px -26px 35px -28px;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    #e3edcd 0%,
    #edf1df 48%,
    transparent 72%
  );
}
.scene-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid #d9e2c8;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 116%;
  height: 60%;
  top: 15%;
  left: -8%;
  transform: rotate(-31deg);
}
.orbit-two {
  width: 75%;
  height: 90%;
  left: 13%;
  top: -2%;
  transform: rotate(-31deg);
}
.itinerary-preview {
  position: relative;
  background: white;
  border: 1px solid #dce4d5;
  border-radius: 14px;
  box-shadow:
    0 24px 60px -26px #23442445,
    0 3px 12px #23442408;
  overflow: hidden;
  transform: rotate(1deg);
}
.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 23px;
  border-bottom: 1px solid #e8ece3;
  gap: 10px;
}
.sample-company {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}
.sample-company > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-content: center;
  border: 1px solid #bdcbb2;
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 15px;
}
.preview-published {
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #49622e;
}
.preview-title {
  padding: 23px 23px 18px;
}
.micro-label {
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #61715f;
}
.preview-title h2 {
  font-size: 25px;
  letter-spacing: -0.8px;
  font-weight: 600;
  margin: 7px 0;
}
.preview-title > p:last-child {
  font-size: 10px;
  color: var(--muted);
}
.preview-title > p:last-child span {
  margin-inline: 6px;
}
.preview-traveler {
  margin: 0 23px;
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #e5eadd;
  border-bottom: 1px solid #e5eadd;
}
.avatar {
  display: grid;
  place-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #edf2e5;
  color: #596d41;
  font-size: 10px;
}
.preview-traveler div {
  display: grid;
  gap: 3px;
}
.preview-traveler strong {
  font-size: 10px;
  font-weight: 600;
}
.preview-traveler div span {
  font-size: 9px;
  color: var(--muted);
}
.traveler-label {
  margin-left: auto;
  font-size: 9px;
  border: 1px solid #e2e8d9;
  border-radius: 4px;
  padding: 4px 7px;
}
.preview-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 20px 23px 16px;
  font-size: 9px;
}
.preview-day strong {
  font-weight: 600;
}
.preview-day > span {
  font-size: 8px;
  color: var(--muted);
}
.preview-timeline {
  list-style: none;
  margin: 0;
  padding: 0 23px 23px;
}
.preview-timeline li {
  display: grid;
  grid-template-columns: 38px 26px 1fr;
  gap: 10px;
  position: relative;
  padding-bottom: 23px;
}
.preview-timeline li:last-child {
  padding-bottom: 0;
}
.preview-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  background: #e3e9db;
  left: 60px;
  top: 26px;
  bottom: 0;
}
.timeline-time {
  padding-top: 5px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.timeline-time small {
  display: block;
  font-size: 7px;
  margin-top: 3px;
  font-weight: 400;
  color: var(--muted);
}
.timeline-marker {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-content: center;
  background: #eef3e7;
  color: #536e3a;
  font-size: 15px;
}
.preview-timeline h3 {
  font-size: 11px;
  font-weight: 600;
  margin: 3px 0 5px;
}
.preview-timeline p {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.5;
}
.confirmation-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  margin-top: 10px;
  padding: 7px 9px;
  background: #f3f6eb;
  border-radius: 4px;
  color: #566849;
}
.confirmation-label strong {
  color: var(--ink);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.7px;
}
.confirmation-label > span {
  margin-left: auto;
  font-size: 13px;
}
.preview-footer {
  padding: 14px 23px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f5f7ee;
  font-size: 8px;
  color: #59674f;
}
.preview-footer > span:last-child {
  margin-left: auto;
  font-size: 15px;
}
.contact-dot {
  width: 5px;
  height: 5px;
  background: #7e9e52;
  border-radius: 50%;
  flex-shrink: 0;
}
.scene-note {
  position: absolute;
  right: -26px;
  bottom: 6px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--green);
  color: white;
  border-radius: 9px;
  padding: 16px 20px;
  box-shadow: 0 10px 25px #193c3020;
  transform: rotate(-3deg);
}
.scene-note-check {
  width: 26px;
  height: 26px;
  display: grid;
  place-content: center;
  border: 1px solid #5b775b;
  border-radius: 50%;
  color: var(--lime);
}
.scene-note div {
  display: grid;
  gap: 3px;
}
.scene-note strong {
  font-size: 11px;
  font-weight: 500;
}
.scene-note div span {
  font-size: 9px;
  color: #d7e4ca;
}
.sample-caption {
  margin-top: 18px;
  font-size: 8px;
  color: #60705e;
  max-width: 220px;
  line-height: 1.5;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 25px;
  gap: 16px;
}
.principles p {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.principles p + p {
  border-left: 1px solid var(--line);
}
.principles span {
  font-size: 20px;
  color: #688246;
}
.section {
  padding-block: 104px;
}
.section-heading {
  text-align: center;
  max-width: 570px;
  margin: auto;
}
.section-heading .eyebrow {
  justify-content: center;
}
h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.7px;
}
.section-heading h2,
.details-intro h2,
.faq-intro h2 {
  margin-top: 15px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 17px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  gap: 34px;
}
.step {
  border-top: 1px solid #b9c8aa;
  padding-top: 23px;
}
.step-number {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1px;
  color: #6f805a;
  margin-bottom: 24px;
}
.step h3 {
  font-size: 17px;
  letter-spacing: -0.5px;
  margin-bottom: 13px;
}
.step p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
}
.step-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 10px;
  color: #687857;
}
.step-foot span {
  font-size: 16px;
}
.details-section {
  background: #edf2e6;
  border-block: 1px solid #e1e8d8;
  padding-block: 88px;
}
.details-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.details-intro > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 20px;
  max-width: 340px;
}
.details-intro > .text-link {
  margin-top: 20px;
}
.detail-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 39px;
}
.detail-note > span {
  font-size: 30px;
  color: #839869;
}
.detail-note p {
  color: #66775c;
  font-size: 10px;
  line-height: 1.8;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 38px;
}
.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-content: center;
  border: 1px solid #cad7bb;
  border-radius: 8px;
  font-size: 21px;
  color: #5b7244;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 14px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.feature p {
  font-size: 12px;
  line-height: 1.9;
  color: #5b6d5c;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  max-width: 265px;
  margin-top: 18px;
}
.faq-list {
  border-top: 1px solid #cfd9c5;
}
.faq-list details {
  border-bottom: 1px solid #cfd9c5;
}
.faq-list summary {
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 19px;
  font-weight: 400;
  color: #6e805e;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  padding: 0 24px 23px 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.faq-list p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing-section {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 58px 64px;
  margin-bottom: 64px;
  background: var(--green);
  color: white;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
}
.closing-section .eyebrow {
  color: #b5ce9b;
  font-size: 9px;
}
.closing-section h2 {
  margin-top: 15px;
  font-size: 39px;
}
.closing-section h2 + p {
  color: #c7d5bd;
  font-size: 13px;
  margin-top: 15px;
  line-height: 1.7;
}
.closing-action {
  display: grid;
  gap: 13px;
  text-align: center;
  flex-shrink: 0;
}
.button-lime {
  background: var(--lime);
  color: var(--green);
  border-color: var(--lime);
}
.button-lime:hover {
  background: #e1efc3;
}
.closing-action > span {
  color: #c7d5bd;
  font-size: 10px;
}
.closing-orbit {
  position: absolute;
  border: 1px solid #4a694740;
  width: 700px;
  height: 300px;
  border-radius: 50%;
  right: -30px;
  bottom: -170px;
  transform: rotate(-25deg);
  z-index: -1;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 35px;
  border-top: 1px solid var(--line);
  padding-block: 35px;
}
.site-footer .brand {
  font-size: 23px;
}
.site-footer > div > p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 9px;
}
.footer-credit {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 5px;
}
.footer-credit a {
  color: var(--ink);
}
.footer-credit span {
  display: block;
  font-size: 9px;
  margin-top: 4px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 10px;
  margin-top: 7px;
}
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (min-width: 1450px) {
  .hero {
    padding-block: 106px;
  }
}
@media (max-width: 1439px) {
  .scene-orbit {
    display: none;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 40px;
    padding-block: 70px;
  }
  h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding: 16px 18px;
    gap: 18px;
  }
  .section-nav {
    gap: 20px;
  }
  .scene-note {
    right: -15px;
  }
  .details-layout,
  .faq-section {
    gap: 55px;
  }
  .closing-section {
    padding: 48px;
  }
  .closing-section h2 {
    font-size: 35px;
  }
  .principles p {
    font-size: 10px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 860px) {
  .section-nav {
    display: none;
  }
  .hero {
    gap: 32px;
  }
  h1 {
    font-size: 46px;
    letter-spacing: -2.5px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    display: grid;
    justify-items: start;
    margin-top: 25px;
    gap: 8px;
  }
  .hero-note {
    max-width: 240px;
  }
  .preview-top,
  .preview-title {
    padding-inline: 17px;
  }
  .preview-traveler,
  .preview-day {
    margin-inline: 17px;
  }
  .preview-timeline {
    padding-inline: 17px;
  }
  .preview-title h2 {
    font-size: 22px;
  }
  .preview-timeline li {
    grid-template-columns: 32px 23px 1fr;
    gap: 8px;
  }
  .preview-timeline li:not(:last-child)::after {
    left: 51px;
  }
  .timeline-marker {
    width: 23px;
    height: 23px;
  }
  .preview-timeline h3 {
    font-size: 10px;
  }
  .preview-footer {
    padding-inline: 17px;
  }
  .sample-caption {
    max-width: 150px;
  }
  .scene-note {
    padding: 12px;
    gap: 8px;
  }
  .scene-note div span {
    font-size: 8px;
  }
  .scene-note strong {
    font-size: 10px;
  }
  .scene-note-check {
    width: 22px;
    height: 22px;
  }
  .principles {
    gap: 10px;
  }
  .principles p {
    font-size: 9px;
    gap: 8px;
  }
  .principles span {
    font-size: 17px;
  }
  .section {
    padding-block: 76px;
  }
  h2 {
    font-size: 35px;
  }
  .step-grid {
    gap: 23px;
  }
  .step h3 {
    font-size: 15px;
  }
  .step p {
    font-size: 12px;
  }
  .step-foot {
    font-size: 9px;
  }
  .details-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .details-intro > p:not(.eyebrow) {
    max-width: 530px;
  }
  .detail-note {
    margin-top: 18px;
  }
  .feature-grid {
    gap: 35px;
  }
  .faq-section {
    gap: 40px;
  }
  .closing-section {
    padding: 40px;
    gap: 26px;
  }
  .closing-section h2 {
    font-size: 30px;
  }
  .closing-action .button {
    padding: 16px;
    gap: 16px;
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 76px;
    gap: 15px;
  }
  .brand {
    font-size: 23px;
    gap: 7px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .brand-arrow {
    font-size: 17px;
  }
  .account-nav {
    gap: 15px;
    font-size: 11px;
  }
  .button-small {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 10px;
    gap: 8px;
  }
  .button-small span {
    font-size: 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 49px 42px;
  }
  .hero-copy {
    max-width: 480px;
  }
  h1 {
    font-size: 55px;
    line-height: 1.08;
    letter-spacing: -3px;
    margin-top: 19px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 440px;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 26px;
  }
  .hero-actions .button {
    min-height: 51px;
    font-size: 12px;
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-note {
    max-width: none;
    font-size: 10px;
    margin-top: 15px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .preview-scene {
    margin-inline: auto;
    padding: 0 10px 20px 3px;
    width: 100%;
    max-width: 430px;
  }
  .preview-scene::before {
    inset: 20px -15px;
  }
  .scene-orbit {
    display: none;
  }
  .itinerary-preview {
    transform: rotate(1deg);
  }
  .preview-top {
    padding: 17px 21px;
  }
  .preview-title {
    padding: 21px;
  }
  .preview-title h2 {
    font-size: 26px;
  }
  .preview-traveler,
  .preview-day {
    margin-inline: 21px;
  }
  .preview-timeline {
    padding-inline: 21px;
  }
  .preview-timeline li {
    grid-template-columns: 38px 26px 1fr;
    gap: 10px;
    padding-bottom: 22px;
  }
  .preview-timeline li:not(:last-child)::after {
    left: 60px;
  }
  .timeline-marker {
    width: 26px;
    height: 26px;
  }
  .preview-timeline h3 {
    font-size: 11px;
  }
  .preview-footer {
    padding-inline: 21px;
  }
  .scene-note {
    right: 0;
    bottom: 0;
    padding: 14px 16px;
  }
  .scene-note strong {
    font-size: 11px;
  }
  .scene-note div span {
    font-size: 9px;
  }
  .sample-caption {
    font-size: 7px;
    max-width: 145px;
    margin-top: 16px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 25px;
  }
  .principles p {
    justify-content: flex-start;
    font-size: 11px;
    gap: 13px;
  }
  .principles p + p {
    border: 0;
  }
  .principles span {
    width: 17px;
    text-align: center;
  }
  .section {
    padding-block: 64px;
  }
  h2 {
    font-size: 33px;
    letter-spacing: -1.4px;
  }
  .section-heading {
    text-align: left;
  }
  .section-heading .eyebrow {
    justify-content: flex-start;
  }
  .section-heading > p:last-child {
    font-size: 13px;
  }
  .step-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 34px;
  }
  .step {
    padding-top: 18px;
  }
  .step-number {
    margin-bottom: 13px;
  }
  .step h3 {
    font-size: 17px;
  }
  .step p {
    font-size: 13px;
  }
  .step-foot {
    margin-top: 12px;
    font-size: 10px;
  }
  .details-section {
    padding-block: 60px;
  }
  .details-layout {
    gap: 38px;
  }
  .feature-grid {
    gap: 30px 23px;
  }
  .feature h3 {
    font-size: 13px;
  }
  .feature p {
    font-size: 13px;
  }
  .feature-icon {
    margin-bottom: 12px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-intro h2 br {
    display: none;
  }
  .faq-intro > p:last-child {
    max-width: none;
    font-size: 13px;
  }
  .faq-list summary {
    font-size: 12px;
    padding-block: 20px;
  }
  .faq-list details > p {
    font-size: 12px;
  }
  .closing-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 27px;
    margin-bottom: 44px;
    gap: 27px;
    border-radius: 11px;
  }
  .closing-section h2 {
    font-size: 32px;
  }
  .closing-section .eyebrow {
    font-size: 8px;
  }
  .closing-action {
    text-align: left;
    gap: 12px;
  }
  .closing-action .button {
    font-size: 12px;
  }
  .closing-action > span {
    font-size: 9px;
  }
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 23px;
    padding-block: 30px;
  }
  .footer-credit {
    margin: 0;
  }
  .site-footer nav {
    margin: 0;
    gap: 24px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .account-nav {
    gap: 10px;
  }
  .brand {
    font-size: 21px;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .account-nav .button {
    padding: 9px;
  }
  h1 {
    font-size: 48px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding: 15px;
    gap: 12px;
    font-size: 11px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .scene-note {
    right: -3px;
    padding: 12px;
  }
  .preview-title h2 {
    font-size: 23px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .feature p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
