/* Public 360.aero design system: application colours, generous editorial space. */
:root {
  --ink: #22404d;
  --ink-deep: #172f39;
  --accent: #ffc107;
  --accent-ink: #765600;
  --success: #1ecd82;
  --success-ink: #08774b;
  --paper: #fff;
  --surface: #f8f9fa;
  --muted: #6c757d;
  --line: #dee2e6;
  --radius: 6px;
  --container: 1240px;
  --app-header-height: 64px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--app-header-height) + 24px);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;

  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.2;
}
h1 {
}
h2 {
}
h3 {
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.eyebrow {
  font-weight: 700;

  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  line-height: 1.5;
}
.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(30 205 130 / 9%);
}
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  vertical-align: middle;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent-ink);
  outline-offset: 5px;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent-ink);
  outline-offset: 2px;
}
.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  padding: 12px 20px;
  top: 8px;
  left: 12px;
  background: #fff;
  color: var(--ink);
  z-index: 100;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 15px 22px;
  border-radius: 6px;
  border: 1px solid transparent;

  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: none;
}
.button .icon {
  width: 18px;
  height: 18px;
}
.button-primary {
  background: var(--accent);
  color: var(--ink-deep);
}
.button-primary:hover {
  background: #ffca2c;
}
.button-accent {
  background: var(--accent);
  color: var(--ink-deep);
}
.button-accent:hover {
  background: #ffca2c;
}
.button-small {
  padding: 11px 17px;
  gap: 23px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-weight: 600;
  line-height: 1.5;
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
.text-link:hover {
  color: var(--accent-ink);
}
.muted {
  color: var(--muted);
}
.site-header {
  background: var(--ink);
  color: white;
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--app-header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner {
  height: 100%;
  width: 100%;
  padding-inline: 3rem;
  display: flex;
  align-items: center;
  gap: 70px;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand img {
  width: auto;
  height: 1.5rem;
  mix-blend-mode: screen;
  object-fit: contain;
}
.site-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  gap: 25px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 33px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  display: block;
  color: #d5dfe3;
  position: relative;
  padding: 20px 0;
}
.nav-links a:hover,
.nav-links a[aria-current],
.nav-links .current-menu-item > a {
  color: #fff;
}
.nav-links a[aria-current]:after,
.nav-links .current-menu-item > a:after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}
.nav-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}
.login-link {
}
.login-link .icon {
  width: 15px;
  height: 15px;
  margin-left: 5px;
}
.menu-toggle {
  display: none;
}
body.admin-bar .site-header {
  top: 32px;
}
.hero {
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  align-items: center;
  gap: 42px;
  min-height: 646px;
  padding-block: 77px 87px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  line-height: 1.055;

  margin-bottom: 25px;
}
.hero-copy h1 span,
.page-hero h1 span,
.contact-intro h1 span {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.12em;
  text-decoration-skip-ink: none;
}
.hero-copy > p {
  line-height: 1.9;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}
.hero-actions > .text-link {
}
.hero-assurance {
  display: flex;
  gap: 20px;

  color: var(--muted);
  margin-top: 25px;
}
.hero-assurance span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-assurance .icon {
  width: 12px;
  height: 12px;
  color: var(--accent-ink);
}
.hero-visual {
  position: relative;
  margin-top: 16px;
  padding: 24px 0 18px;
  min-width: 0;
}
.visual-caption {
  font-weight: 600;

  margin: 0 0 15px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.flight-preview {
  position: relative;
  background: #fff;
  border: 1px solid #d5dedf;
  border-radius: 6px;
  box-shadow: none;
  overflow: hidden;
  transform: none;
}
.preview-toolbar {
  background: var(--ink);
  color: #e6eded;

  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.preview-toolbar > span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
}
.preview-toolbar .icon {
  width: 15px;
  height: 15px;
}
.preview-pill {
  color: #ffe69c;
  background: #ffffff0e;
  border: 1px solid #ffffff1a;
  padding: 3px 7px;
  border-radius: 3px;
}
.cockpit-image {
  position: relative;
  aspect-ratio: 1.5;
  overflow: hidden;
  background: url("../images/partenavia-p68b.webp") center / cover no-repeat;
}
.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, #0a1b2c8c);
}
.hotspot,
.demo-hotspot {
  position: absolute;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink-deep);
  border: 3px solid #fff8df;
  box-shadow: 0 0 0 6px #ffffff22;
  border-radius: 50%;

  font-weight: 700;
}
.hotspot-one {
  top: 56%;
  left: 29%;
}
.hotspot-two {
  top: 20%;
  left: 51%;
}
.hotspot-three {
  top: 77%;
  left: 58%;
}
.image-caption {
  position: absolute;
  bottom: 17px;
  left: 17px;
  color: white;

  display: flex;
  align-items: center;
  gap: 8px;
}
.image-caption .icon {
  width: 17px;
  height: 17px;
}
.preview-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 15px;
}
.preview-footer > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.preview-footer i {
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 100%;
}
.preview-progress {
  width: 62px;
  height: 3px;
  background: #e2e9e7;
  display: block;
}
.preview-progress b {
  height: 100%;
  width: 25%;
  background: var(--success);
  display: block;
}
.floating-note {
  position: absolute;
  bottom: -1px;
  left: -29px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  box-shadow: none;
  transform: none;
}
.floating-note > .icon {
  color: var(--accent-ink);
  background: #fff7db;
  box-sizing: content-box;
  padding: 10px;
  border-radius: 100%;
  width: 18px;
  height: 18px;
}
.floating-note strong {
  display: block;

  font-weight: 600;
}
.floating-note span {
  display: block;

  color: var(--muted);
  margin-top: 3px;
}
.illustration-label {
  position: absolute;
  right: 5px;
  bottom: -20px;

  color: var(--muted);
}
.orbit {
  position: absolute;
  border: 1px solid #e8e1ce;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 610px;
  height: 610px;
  top: -80px;
  left: -20px;
}
.orbit-two {
  width: 730px;
  height: 730px;
  top: -140px;
  left: -80px;
}
.orbit-one:before {
  content: "";
  position: absolute;
  top: 78px;
  right: 95px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.audience-strip {
  border-bottom: 1px solid var(--line);
}
.audience-strip > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 109px;
}
.audience-strip > .container > span {
  line-height: 1.8;
  color: var(--muted);
}
.audience-strip p {
  display: flex;
  align-items: center;
  gap: 11px;

  font-weight: 500;
  color: #566870;
}
.audience-strip .icon {
  width: 21px;
  height: 21px;
  color: #7e9198;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
}
.section-heading p {
  max-width: 345px;

  line-height: 1.8;
  margin-bottom: 3px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-heading > .text-link {
  margin-bottom: 8px;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.feature-card {
  padding: 31px 29px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.feature-card + .feature-card {
  border-left: 1px solid var(--line);
}
.feature-card:hover {
  background: #f8faf9;
}
.feature-icon {
  display: block;
  margin-bottom: 30px;
  color: var(--accent-ink);
}
.feature-icon .icon {
  width: 30px;
  height: 30px;
}
.card-number {
  position: absolute;
  right: 28px;
  top: 31px;

  color: #8d9c9e;
}
.feature-card h3 {
  margin-bottom: 15px;
}
.feature-card p {
  line-height: 1.85;
  margin-bottom: 29px;
  max-width: 285px;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-weight: 600;
  margin-top: auto;
}
.card-link .icon {
  width: 17px;
  height: 17px;
}
.showcase-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.showcase-copy > p {
  line-height: 1.85;
  margin-top: 22px;
  max-width: 390px;
}
.showcase-tabs {
  display: grid;
  gap: 7px;
  margin-top: 28px;
}
.showcase-tabs button {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  border-radius: 6px;
  padding: 14px 15px;
}
.showcase-tabs button > span {
  flex: 1;
}
.showcase-tabs strong {
  display: block;

  font-weight: 600;
}
.showcase-tabs small {
  display: block;

  color: var(--muted);
  margin-top: 3px;
}
.showcase-tabs button > .icon:first-child {
  color: #7f959a;
}
.showcase-tabs button > .icon:last-child {
  width: 16px;
  opacity: 0;
}
.showcase-tabs button[aria-selected="true"] {
  border-color: var(--line);
  background: white;
  box-shadow: none;
}
.showcase-tabs button[aria-selected="true"] > .icon {
  color: var(--accent-ink);
  opacity: 1;
}
.demo-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  overflow: hidden;
  min-height: 485px;
  box-shadow: none;
}
.demo-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eef2f2;
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
}
.demo-topline span:first-child {
  display: flex;
  gap: 9px;
  align-items: center;
}
.demo-topline span:last-child {
  color: var(--muted);
}
.demo-topline .icon {
  width: 16px;
  height: 16px;
}
.demo-photo {
  height: 262px;
  position: relative;
  overflow: hidden;
}
.demo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-hotspot {
  top: 57%;
  left: 29%;
  width: 32px;
  height: 32px;
}
.demo-hotspot.second {
  top: 18%;
  left: 52%;
}
.demo-hotspot[aria-pressed="true"] {
  box-shadow: 0 0 0 8px #ffc10755;
}
.demo-detail {
  padding: 23px 25px;
}
.mini-label {
  font-weight: 600;
  color: var(--accent-ink);
}
.demo-detail h3 {
  margin-top: 8px;
  margin-bottom: 11px;
}
.demo-detail p {
  line-height: 1.8;
}
.demo-disclaimer {
  text-align: right;

  margin-top: 12px;
}
.document-preview {
  width: 72%;
  margin: 24px auto 0;
  padding: 20px 22px 17px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 6px 6px 0 #eef2f1;
  min-height: 238px;
}
.document-label {
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-weight: 700;
}
.document-label span {
}
.document-preview h3 {
  margin: 25px 0 16px;
}
.document-lines {
  display: grid;
  gap: 6px;
}
.document-lines i {
  height: 3px;
  background: #e8eeee;
  width: 100%;
  display: block;
}
.document-lines i:nth-child(3) {
  width: 75%;
}
.document-lines i:last-child {
  width: 65%;
}
.document-stamp {
  color: var(--accent-ink);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.document-stamp .icon {
  width: 10px;
  height: 10px;
}
.journey-preview {
  padding: 26px 26px 0;
}
.journey-preview h3 {
  margin-top: 7px;
}
.journey-preview ol {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.journey-preview li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid #e9eeee;
}
.journey-preview li:last-child {
  border-bottom: 0;
}
.journey-preview li > div {
  flex: 1;
}
.journey-preview li strong {
  font-weight: 500;
  display: block;
}
.journey-preview li small {
  display: block;

  color: var(--muted);
}
.journey-preview li > span:last-child {
  color: var(--accent-ink);
}
.journey-preview li > .icon {
  width: 12px;
  height: 12px;
  color: #87969c;
}
.step-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0f3f4;
}
.step-icon .icon {
  width: 13px;
  height: 13px;
}
.step-icon.done {
  background: #dff7e8;
  color: var(--success-ink);
}
.journey-preview li:has(.step-icon.done) > span:last-child {
  color: var(--success-ink);
}
.step-icon.current {
  border: 1px solid var(--accent);
  background: #fff9e6;
}
.journey-panel .demo-detail {
  padding-top: 15px;
}
.protection-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.protection-section p {
  line-height: 1.85;
  margin-top: 22px;
}
.protection-section .muted {
  line-height: 1.8;
  margin-top: 15px;
}
.protection-section .text-link {
  margin-top: 22px;
}
.protection-symbol {
  width: 330px;
  aspect-ratio: 1;
  position: relative;
  margin: auto;
  border: 1px solid #eae3cf;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8e3 0, white 68%);
}
.protection-symbol:before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px dashed #ded2ab;
  border-radius: 50%;
}
.protection-symbol:after {
  content: "";
  position: absolute;
  inset: -35px;
  border: 1px solid #f3eee0;
  border-radius: 50%;
}
.protection-symbol > div {
  position: absolute;
  inset: 90px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid #eae3cf;
  border-radius: 24px;
  box-shadow: none;
}
.protection-symbol .icon {
  width: 55px;
  height: 55px;
  color: var(--accent-ink);
  stroke-width: 1;
}
.protection-tag {
  position: absolute;

  font-weight: 600;

  background: white;
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 4px;
  z-index: 1;
}
.tag-one {
  top: 36px;
  left: 4px;
}
.tag-two {
  top: 153px;
  right: -23px;
}
.tag-three {
  bottom: 14px;
  left: 26px;
}
.journal-section {
  background: #f8f9f8;
  border-top: 1px solid var(--line);
}
.journal-empty {
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px 0;
}
.journal-empty > .icon {
  width: 34px;
  height: 34px;
  color: #927f4b;
}
.journal-empty > div {
  flex: 1;
}
.journal-empty h3 {
  margin-bottom: 8px;
}
.journal-empty p {
  max-width: 580px;
}
.journal-empty .text-link {
}
.cta-section {
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding-block: 67px;
}
.cta-inner > div,
.cta-inner > .button {
  position: relative;
  z-index: 1;
}
.cta-inner .eyebrow {
  color: #9fb9c0;

  margin-bottom: 15px;
}
.cta-inner h2 {
}
.cta-inner p {
  color: #b0c3ca;

  margin-top: 18px;
}
.cta-inner > .button {
  margin-right: 75px;
}
.cta-orbit {
  position: absolute;
  border: 1px solid #ffffff0a;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  right: -38px;
  top: -120px;
  box-shadow:
    0 0 0 50px #ffffff03,
    0 0 0 100px #ffffff03;
}
.site-footer {
  background: var(--ink-deep);
  color: #d1dce0;
  padding-top: 58px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 45px;
}
.footer-brand p {
  color: #92aab4;
  margin-top: 20px;
  line-height: 1.9;
}
.footer-top h2 {
  font-weight: 600;
  color: white;
  margin-bottom: 19px;
}
.footer-top > div:not(:first-child) > a {
  display: block;

  color: #a5bac3;
  margin-bottom: 10px;
}
.site-footer a[href]:hover,
.site-footer a[href]:focus-visible {
  color: var(--accent);
}
.footer-note .icon {
  width: 32px;
  height: 32px;
  color: #76939e;
}
.footer-note p {
  color: #a5bac3;
  margin-top: 14px;
  line-height: 1.9;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #ffffff0e;
  padding-block: 21px;
  color: #9bb0b9;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
  align-items: center;
}
.footer-menu {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.social-link {
  margin-top: 12px;
  display: inline-block;

  color: #bfd2d9;
}
.page-hero {
  padding-block: 88px 77px;
  text-align: center;
  max-width: 1100px;
}
.page-hero h1 {
}
.page-hero > p {
  max-width: 670px;
  margin: 24px auto 0;
  line-height: 1.85;
}
.page-hero > .button {
  margin-top: 29px;
}
.page-hero > .text-link {
  margin-left: 20px;
}
.feature-subnav {
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.feature-subnav > .container {
  display: flex;
  justify-content: center;
  gap: 45px;
  padding-block: 18px;
}
.feature-subnav a:hover {
  color: var(--accent-ink);
}
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 85px;
}
.feature-detail p {
  line-height: 1.9;
  margin-top: 22px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 25px;
  margin: 12px 0;

  color: var(--muted);
  line-height: 1.8;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-ink);
  font-weight: 600;
}
.feature-photo {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  color: white;
}
.feature-photo > img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}
.feature-photo figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 20px 22px;
}
.tinted-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.protection-feature {
  background: var(--ink);
  border-radius: 6px;
  padding: 45px;
  color: white;
}
.large-lock {
  display: block;
  color: var(--accent);
  margin-bottom: 35px;
}
.large-lock .icon {
  width: 45px;
  height: 45px;
  stroke-width: 1.1;
}
.protection-feature .eyebrow {
  color: #96b4bd;

  margin-bottom: 10px;
}
.protection-feature h3 {
  margin-bottom: 27px;
}
.security-row {
  padding-block: 13px;
  border-top: 1px solid #ffffff1f;

  color: #cbdbdf;
  display: flex;
  gap: 12px;
  align-items: center;
}
.security-row .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.feature-detail .protection-caveat {
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.journey-feature {
  background: #f6f8f7;
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 6px;
}
.journey-feature > h3 {
  margin-top: 13px;
}
.journey-feature ol {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}
.journey-feature li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}
.journey-feature li:last-child {
  border: 0;
}
.journey-feature li > span {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid #e9dcae;
  border-radius: 50%;
  color: var(--accent-ink);
}
.journey-feature li strong {
}
.journey-feature li p {
  margin: 3px 0 0;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.capability-grid > div > .icon {
  width: 28px;
  height: 28px;
  color: var(--accent-ink);
  margin-bottom: 27px;
}
.capability-grid h3 {
  margin-bottom: 15px;
}
.capability-grid p {
  line-height: 1.9;
}
.pricing-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 5px;
  margin-bottom: 10px;
}
.pricing-offer {
  background: var(--ink);
  color: white;
  padding: 46px;
}
.pricing-offer .eyebrow {
  color: #b4ccd4;
}
.pricing-offer h2 {
}
.pricing-offer .contact-price {
  color: white;
  font-weight: 600;

  margin-top: 35px;
  line-height: 1.3;
}
.pricing-offer > p:not(.contact-price) {
  max-width: 300px;
  color: #b6cbd3;
  margin-top: 12px;
}
.pricing-offer > .button {
  margin-top: 28px;
}
.offer-note {
  display: block;
  color: #aac3cc;

  margin-top: 17px;
}
.pricing-includes {
  padding: 48px;
}
.pricing-includes h3 {
}
.pricing-includes > p {
  margin-top: 15px;
}
.pricing-includes .check-list li {
  margin-block: 15px;
}
.pricing-includes > .text-link {
  margin-top: 15px;
}
.seat-explanation {
  display: grid;
  grid-template-columns: 1fr 35px 1fr 35px 1fr;
  gap: 25px;
  text-align: center;
  margin-block: 50px;
}
.seat-number {
  line-height: 1;

  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}
.accent-text {
  color: var(--accent-ink);
}
.seat-explanation h3 {
  margin-bottom: 12px;
}
.seat-explanation p {
  max-width: 250px;
  margin: auto;
}
.math-symbol {
  padding-top: 15px;

  color: #a2b1b6;
}
.seat-calculator {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: visible;
}
.seat-calculator > div:first-child {
  padding: 35px;
}
.seat-calculator h3 {
}
.seat-calculator p {
  margin-top: 15px;
  line-height: 1.9;
}
.calculator-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.calculator-fields label:last-child {
  grid-column: 1/-1;
}
.calculator-fields label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}
.calculator-fields input,
.calculator-fields select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #b9c8ca;
  border-radius: 5px;
  background-color: white;
  color: var(--ink);
}
.calculator-result {
  background: #fff8e3;
  text-align: center;
  padding: 35px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.calculator-result > span:first-child {
  color: var(--accent-ink);
}
.calculator-result > strong {
  line-height: 1.2;
  margin-top: 15px;
}
.calculator-result > span {
}
.calculator-result > p {
  margin-top: 9px;
}
.calculator-result > div {
  padding-top: 22px;
  border-top: 1px solid #eedfae;
  width: 100%;
  margin-top: 24px;
}
.calculator-result > div > strong {
  font-weight: 600;
  color: var(--accent-ink);

  margin-right: 5px;
}
.calculator-result small {
  line-height: 1.8;
  color: var(--muted);
  margin-top: 15px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 90px;
}
.faq-layout > div > p {
  margin-top: 20px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  list-style: none;

  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > .icon {
  width: 17px;
  height: 17px;
  color: var(--accent-ink);
  transition: transform 0.2s;
}
.faq-list details[open] summary > .icon {
  transform: rotate(45deg);
}
.faq-list p {
  margin: 16px 30px 0 0;
  line-height: 1.9;
}
.faq-list p a {
  text-decoration: underline;
  color: var(--accent-ink);
}
.journal-hero {
  padding-bottom: 64px;
}
.journal-list {
  padding-top: 20px;
}
.journal-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-block: 1px solid var(--line);
  padding-block: 22px;
  margin-bottom: 38px;
}
.journal-tools nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.category-link {
  color: var(--muted);
}
.category-link:hover,
.category-link.active {
  color: var(--accent-ink);
}
.category-link.active {
  padding: 7px 12px;
  border-radius: 5px;
  background: #fff8e3;
}
.search-form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  background: white;
}
.search-form input {
  padding: 8px 12px;
  border: 0;
  min-width: 0;
  width: 180px;

  color: var(--ink);
  background: none;
}
.search-form button {
  background: none;
  border: 0;
  padding: 8px 11px;
  color: var(--muted);
}
.search-form .icon {
  width: 16px;
  height: 16px;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
}
.post-image {
  display: block;
  overflow: hidden;
}
.post-image img,
.post-placeholder {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}
.post-placeholder {
  background: #f5f0df;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #927a32;
  gap: 20px;
}
.post-placeholder:after {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border: 1px solid #e0d6b9;
  border-radius: 50%;
}
.post-placeholder > .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1;
}
.post-placeholder > span {
}
.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;

  color: var(--muted);
  margin-bottom: 14px;
}
.post-meta > span:first-child {
  color: var(--accent-ink);
}
.post-card h3 {
  line-height: 1.25;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}
.post-card h3 a:hover {
  color: var(--accent-ink);
}
.post-card p {
  line-height: 1.8;
  margin-bottom: 25px;
}
.post-card .text-link {
  justify-content: space-between;
  margin-top: auto;
}
.empty-state {
  text-align: center;
  padding: 70px 25px 45px;
  max-width: 700px;
  margin: auto;
}
.empty-state > .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 25px;
  color: var(--accent-ink);
}
.empty-state h2 {
}
.empty-state p {
  max-width: 450px;
  margin: 22px auto;
}
.pagination {
  margin-top: 45px;
  text-align: center;
}
.nav-links.page-numbers,
.pagination .nav-links {
  justify-content: center;
  gap: 10px;
}
.page-numbers {
  display: inline-block;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.page-numbers.current {
  background: var(--ink);
  color: white;
}
.article-header {
  padding-top: 64px;
  padding-bottom: 40px;
  max-width: 930px;
}
.article-header > .text-link {
}
.article-categories {
  color: var(--accent-ink);

  margin-top: 47px;
  margin-bottom: 17px;
}
.article-header h1 {
  line-height: 1.13;
  overflow-wrap: anywhere;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;

  color: var(--muted);
  margin-top: 25px;
}
.article-cover {
  max-width: 1100px;
}
.article-cover img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 6px;
}
.article-cover figcaption {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
}
.prose {
  max-width: 740px;
  margin-inline: auto;
  overflow-wrap: anywhere;
}
.article-content {
  padding: 50px 0 60px;
}
.prose p,
.prose ul,
.prose ol {
  line-height: 1.9;
  margin-bottom: 24px;
  color: #4e626b;
}
.prose h2 {
  margin: 42px 0 21px;
}
.prose h3 {
  margin: 30px 0 17px;
}
.prose h4 {
  margin: 25px 0 15px;
}
.prose a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose blockquote {
  margin: 30px 0;
  padding: 6px 0 6px 25px;
  border-left: 3px solid var(--accent);
}
.prose blockquote p {
  color: var(--ink);
}
.prose figure {
  margin: 30px 0;
}
.prose figcaption {
  color: var(--muted);
}
.prose img {
  border-radius: 6px;
}
.prose .alignwide {
  width: min(1000px, calc(100vw - 96px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.prose .alignfull {
  width: calc(100vw - 96px);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.prose pre {
  overflow: auto;
  padding: 20px;
  background: var(--surface);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
}
.prose td,
.prose th {
  padding: 12px;
  border: 1px solid var(--line);
}
.prose .wp-block-table {
  overflow: auto;
}
.article-end {
  padding-bottom: 65px;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}
.article-tags a {
  text-decoration: none;
  background: var(--surface);
  padding: 5px 12px;
  border-radius: 4px;
}
.generic-page .page-hero {
  padding-bottom: 0;
}
.not-found {
  min-height: 65vh;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-intro {
  padding-top: 30px;
}
.contact-intro h1 {
}
.contact-intro > p {
  line-height: 1.9;
  margin-top: 25px;
  max-width: 420px;
}
.contact-steps {
  margin-top: 40px;
  display: grid;
  gap: 25px;
}
.contact-steps > div {
  display: flex;
  align-items: start;
  gap: 20px;
}
.contact-steps > div > span {
  color: var(--accent-ink);

  border: 1px solid #ecdfb9;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.contact-steps h3 {
  margin: 0 0 7px;
}
.contact-steps p {
}
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 35px;
  background: #fff;
  box-shadow: none;
}
.contact-form-card h2 {
}
.contact-form-card > p {
  margin-top: 13px;
}
.contact-form-card form {
  display: grid;
  gap: 19px;
  margin-top: 28px;
}
.contact-form-card form > label {
  display: block;

  font-weight: 500;
}
.contact-form-card label > span {
  color: var(--accent-ink);
}
.contact-form-card input:not([type="hidden"]),
.contact-form-card textarea {
  display: block;
  width: 100%;
  border: 1px solid #cdd7d9;
  border-radius: 5px;
  padding: 11px 12px;
  margin-top: 7px;
  color: var(--ink);

  resize: vertical;
}
.contact-form-card textarea::placeholder {
  color: #86949a;

  line-height: 1.7;
}
.contact-form-card .form-privacy {
  line-height: 1.8;
}
.form-privacy a {
  text-decoration: underline;
}
.contact-form-card .button {
  justify-content: space-between;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-notice {
  border: 1px solid #b3d8c2;
  padding: 13px 15px;

  border-radius: 5px;
  margin-top: 22px;
  background: #edf8f1;
  color: #1c6840;
}
.form-notice.error {
  background: #fff9f2;
  border-color: #e5ccb0;
  color: #79562b;
}
@media (min-width: 1500px) {
  .hero-grid {
    gap: 65px;
    min-height: 700px;
  }
  .hero-copy h1 {
  }
  .hero-visual {
    margin-left: 5px;
  }
  .hero-copy > p {
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 45px;
  }
  .nav-links {
    gap: 23px;
  }
  .hero-grid {
    gap: 30px;
    min-height: 590px;
    padding-block: 65px 75px;
  }
  .hero-copy h1 {
  }
  .hero-copy > p {
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-assurance {
    flex-wrap: wrap;
    gap: 7px;
  }
  .preview-toolbar {
  }
  .visual-caption {
  }
  .hero-visual {
    margin-left: 5px;
  }
  .floating-note {
    left: -15px;
    bottom: -15px;
  }
  .illustration-label {
    bottom: -41px;
  }
  .audience-strip > .container {
    gap: 15px;
  }
  .audience-strip p {
    gap: 8px;
  }
  .audience-strip .icon {
    width: 18px;
  }
  .showcase-grid,
  .feature-detail,
  .protection-section,
  .contact-layout {
    gap: 55px;
  }
  .feature-card {
    padding: 25px 22px;
  }
  .feature-card h3 {
  }
  .feature-card p {
  }
  .feature-icon {
    margin-bottom: 23px;
  }
  .protection-symbol {
    width: 285px;
  }
  .protection-symbol > div {
    inset: 80px;
  }
  .cta-inner > .button {
    margin-right: 30px;
  }
  .footer-top {
    gap: 30px;
  }
  .pricing-offer,
  .pricing-includes {
    padding: 37px;
  }
  .faq-layout {
    gap: 55px;
  }
  .hero-actions .button {
    gap: 18px;
    padding-inline: 18px;
  }
  .hero-actions .text-link {
    gap: 8px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 65px;
  }
  .header-inner {
    justify-content: space-between;
  }
  .site-navigation {
    gap: 20px;
  }
  .nav-links {
    gap: 17px;
  }
  .nav-links a {
    padding: 20px 0;
  }
  .nav-links a[aria-current]:after {
    bottom: 11px;
  }
  .nav-actions .button {
    padding: 9px 12px;
    gap: 14px;
  }
  .login-link {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 57px 75px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy h1 {
  }
  .hero-copy > p {
    max-width: 475px;
    margin-inline: auto;
  }
  .hero-actions,
  .hero-assurance {
    justify-content: center;
  }
  .hero-actions .text-link {
  }
  .hero-assurance {
    gap: 20px;
    margin-top: 23px;
  }
  .hero-visual {
    max-width: 560px;
    width: calc(100% - 45px);
    margin: 0 auto;
  }
  .visual-caption {
    justify-content: center;
  }
  .flight-preview {
    transform: none;
  }
  .preview-toolbar {
  }
  .cockpit-image {
    aspect-ratio: 1.7;
  }
  .illustration-label {
    bottom: -28px;
  }
  .floating-note {
    bottom: -8px;
  }
  .orbit-one {
    width: 550px;
    height: 550px;
    left: 0;
  }
  .orbit-two {
    width: 650px;
    height: 650px;
    left: -50px;
  }
  .audience-strip > .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    padding-block: 25px;
  }
  .audience-strip > .container > span {
    width: 100%;
    text-align: center;
  }
  .audience-strip br {
    display: none;
  }
  .audience-strip p {
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading p {
    max-width: 245px;
  }
  .section-heading h2 {
  }
  .eyebrow {
  }
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 25px 28px;
  }
  .feature-card + .feature-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .feature-card p {
    max-width: none;

    margin-bottom: 20px;
  }
  .feature-card h3 {
  }
  .feature-icon {
    margin-bottom: 17px;
  }
  .card-number {
    top: 29px;
  }
  .card-link {
  }
  .showcase-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }
  .showcase-copy > p {
    max-width: 540px;
  }
  .showcase-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .showcase-tabs button {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 9px;
  }
  .showcase-tabs button > .icon:last-child {
    display: none;
  }
  .showcase-tabs small {
  }
  .showcase-panels {
    max-width: 560px;
    width: 100%;
    margin: auto;
  }
  .protection-section {
    gap: 65px;
    grid-template-columns: 0.8fr 1fr;
  }
  .protection-symbol {
    width: 210px;
  }
  .protection-symbol > div {
    inset: 55px;
    border-radius: 19px;
  }
  .protection-symbol .icon {
    width: 38px;
    height: 38px;
  }
  .protection-symbol:before {
    inset: 23px;
  }
  .protection-symbol:after {
    inset: -20px;
  }
  .protection-tag {
    padding: 6px 9px;
  }
  .tag-one {
    top: 13px;
  }
  .tag-two {
    top: 106px;
    right: -12px;
  }
  .tag-three {
    bottom: 8px;
  }
  .protection-section h2 {
  }
  .protection-section p {
  }
  .journal-empty {
    flex-wrap: wrap;
  }
  .journal-empty > .text-link {
    margin-left: 59px;
  }
  .cta-inner h2 {
  }
  .cta-inner > .button {
    margin: 0;

    gap: 18px;
  }
  .cta-inner p {
  }
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
  }
  .footer-note {
    display: none;
  }
  .page-hero {
    padding-block: 65px 55px;
  }
  .page-hero h1 {
  }
  .page-hero > p {
  }
  .feature-subnav > .container {
    gap: 20px;
    flex-wrap: wrap;
  }
  .feature-detail {
    gap: 38px;
    grid-template-columns: 1fr 1fr;
  }
  .feature-detail h2 {
  }
  .feature-detail p {
  }
  .check-list li {
  }
  .feature-photo > img {
    aspect-ratio: 0.9;
  }
  .feature-photo figcaption {
    padding: 17px;
  }
  .protection-feature {
    padding: 28px;
  }
  .protection-feature h3 {
  }
  .security-row {
  }
  .journey-feature {
    padding: 25px;
  }
  .journey-feature > h3 {
  }
  .journey-feature li p {
  }
  .capability-grid {
    gap: 28px;
  }
  .capability-grid h3 {
  }
  .capability-grid p {
  }
  .pricing-offer,
  .pricing-includes {
    padding: 30px;
  }
  .pricing-offer h2 {
  }
  .pricing-includes h3 {
  }
  .seat-explanation {
    gap: 17px;
  }
  .seat-explanation h3 {
  }
  .seat-explanation p {
  }
  .seat-calculator {
    grid-template-columns: 1.3fr 1fr;
  }
  .seat-calculator > div:first-child {
    padding: 26px;
  }
  .calculator-fields {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .calculator-result > strong {
  }
  .faq-layout {
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
  }
  .faq-list summary {
  }
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journal-tools {
    flex-wrap: wrap;
  }
  .journal-tools nav {
    gap: 16px;
  }
  .prose {
    width: calc(100% - 48px);
  }
  .prose .alignwide,
  .prose .alignfull {
    width: calc(100vw - 40px);
  }
  .contact-layout {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
  }
  .contact-intro h1 {
  }
  .contact-form-card {
    padding: 25px;
  }
  .contact-form-card h2 {
  }
  .contact-intro > p {
  }
  .contact-steps p {
  }
  .contact-steps h3 {
  }
  .contact-steps > div {
    gap: 12px;
  }
}
@media (max-width: 767.98px) {
  .header-inner {
    padding-inline: 1rem;
  }
}
@media (max-width: 600px) {
  html:not(.js) .site-header {
    height: auto;
  }
  html:not(.js) .header-inner {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 18px;
  }
  html:not(.js) .site-navigation {
    position: static;
    flex: 1 0 100%;
    box-shadow: none;
    padding: 0;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 54px;
  }
  .menu-toggle {
    display: none;
    border: 0;
    background: none;
    width: 40px;
    height: 40px;
    padding: 10px;
    color: white;
  }
  .js .menu-toggle {
    display: grid;
    align-content: center;
    gap: 6px;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: white;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .site-navigation {
    position: absolute;
    top: var(--app-header-height);
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 14px 16px 22px;
    border-top: 1px solid #ffffff1a;
    display: block;
    box-shadow: 0 14px 20px #00000012;
  }
  .js .site-navigation {
    display: none;
  }
  .js .site-navigation.is-open {
    display: block;
  }
  .nav-links {
    display: block;
  }
  .nav-links a {
    padding: 13px 0;
  }
  .nav-links a[aria-current]:after,
  .nav-links .current-menu-item > a:after {
    bottom: 8px;
    width: 20px;
    right: auto;
  }
  .nav-actions {
    margin-top: 13px;
  }
  .nav-actions .button {
    padding: 12px 18px;
    width: 100%;
    justify-content: space-between;
  }
  .login-link {
    display: inline-block;
    white-space: nowrap;
  }
  .hero-grid {
    padding-top: 43px;
    gap: 37px;
  }
  .hero-copy h1 {
    margin-bottom: 23px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 21px;
  }
  .hero-copy > p {
    line-height: 1.85;
    max-width: 345px;
  }
  .hero-actions {
    gap: 17px;
    margin-top: 26px;
  }
  .hero-actions .button {
    padding: 13px 16px;

    gap: 17px;
  }
  .hero-actions .text-link {
    gap: 7px;
  }
  .hero-actions .text-link .icon {
    width: 15px;
    height: 15px;
  }
  .hero-assurance {
    gap: 12px;
  }
  .hero-assurance .icon {
    width: 10px;
    height: 10px;
  }
  .hero-visual {
    width: calc(100% - 12px);
    padding-bottom: 14px;
  }
  .visual-caption {
    margin-bottom: 14px;
  }
  .preview-toolbar {
    padding: 12px;
  }
  .preview-toolbar .icon {
    width: 13px;
    height: 13px;
  }
  .preview-pill {
  }
  .cockpit-image {
    aspect-ratio: 1.5;
  }
  .hotspot {
    width: 23px;
    height: 23px;
    border-width: 2px;
  }
  .image-caption {
    left: 12px;
    bottom: 12px;
    gap: 5px;
  }
  .image-caption .icon {
    width: 13px;
    height: 13px;
  }
  .preview-footer {
    padding: 13px 11px;
  }
  .preview-progress {
    width: 40px;
  }
  .floating-note {
    left: -9px;
    bottom: -17px;
    gap: 10px;
    padding: 10px 13px;
  }
  .floating-note strong {
  }
  .floating-note span {
  }
  .floating-note > .icon {
    width: 14px;
    height: 14px;
    padding: 8px;
  }
  .illustration-label {
    bottom: -32px;
  }
  .audience-strip > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
    padding-block: 24px;
  }
  .audience-strip > .container > span {
    grid-column: 1/-1;
    text-align: left;

    margin-bottom: 3px;
  }
  .audience-strip p {
    gap: 7px;
  }
  .audience-strip .icon {
    width: 18px;
    height: 18px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading h2 {
  }
  .section-heading p {
    max-width: 100%;
    margin-top: 22px;
  }
  .section-heading > .text-link {
    margin-top: 23px;
  }
  .eyebrow {
    margin-bottom: 18px;
  }
  .feature-card {
    padding: 25px;
  }
  .feature-card h3 {
  }
  .showcase-copy h2 {
  }
  .showcase-copy > p {
  }
  .showcase-tabs {
    grid-template-columns: 1fr;
  }
  .showcase-tabs button {
    flex-direction: row;
    gap: 14px;
    align-items: center;
    padding: 12px;
  }
  .showcase-tabs button > .icon:last-child {
    display: block;
  }
  .showcase-tabs strong {
  }
  .showcase-tabs small {
  }
  .showcase-grid {
    gap: 30px;
  }
  .demo-panel {
    min-height: 440px;
  }
  .demo-photo {
    height: 228px;
  }
  .demo-detail {
    padding: 21px;
  }
  .demo-detail h3 {
  }
  .demo-detail p {
  }
  .demo-disclaimer {
  }
  .document-preview {
    width: 80%;
  }
  .journey-preview {
    padding: 22px 20px 0;
  }
  .protection-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .protection-symbol {
    width: 245px;
    margin-top: 12px;
  }
  .protection-symbol > div {
    inset: 65px;
  }
  .protection-symbol .icon {
    width: 42px;
    height: 42px;
  }
  .protection-tag {
  }
  .tag-two {
    top: 120px;
  }
  .protection-section h2 {
  }
  .protection-section p {
  }
  .protection-section .muted {
  }
  .journal-empty {
    gap: 20px;
    align-items: flex-start;
  }
  .journal-empty > div {
    flex-basis: calc(100% - 60px);
  }
  .journal-empty h3 {
  }
  .journal-empty p {
  }
  .journal-empty > .text-link {
    margin-left: 54px;
  }
  .cta-inner {
    display: block;
    padding-block: 49px;
  }
  .cta-inner h2 {
  }
  .cta-inner > .button {
    margin-top: 27px;
  }
  .cta-inner p {
    max-width: 290px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand p {
    margin-top: 16px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top h2 {
    margin-bottom: 16px;
  }
  .footer-top > div:not(:first-child) > a {
  }
  .footer-bottom {
    display: block;

    padding-block: 20px;
  }
  .footer-bottom > div {
    margin-top: 10px;
    gap: 14px;
    flex-wrap: wrap;
  }
  .footer-bottom > div > span {
    display: none;
  }
  .page-hero {
    padding-block: 48px;
  }
  .page-hero h1 {
  }
  .page-hero > p {
    line-height: 1.85;
  }
  .feature-subnav > .container {
    justify-content: flex-start;
    gap: 13px 21px;

    padding-block: 17px;
  }
  .feature-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature-detail h2 {
  }
  .feature-detail p {
  }
  .check-list li {
  }
  .feature-photo > img {
    aspect-ratio: 1.3;
  }
  .feature-photo figcaption {
  }
  .protection-feature {
    order: 2;
    padding: 31px;
  }
  .protection-feature h3 {
  }
  .security-row {
  }
  .journey-feature {
    padding: 29px;
  }
  .journey-feature > h3 {
  }
  .journey-feature li p {
  }
  .capability-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .capability-grid > div {
    border-top: 1px solid var(--line);
    padding-top: 27px;
  }
  .capability-grid > div > .icon {
    margin-bottom: 18px;
  }
  .capability-grid h3 {
  }
  .capability-grid p {
  }
  .pricing-intro {
    grid-template-columns: 1fr;
  }
  .pricing-offer,
  .pricing-includes {
    padding: 29px;
  }
  .pricing-offer h2 {
  }
  .pricing-offer .contact-price {
    margin-top: 28px;
  }
  .pricing-includes h3 {
  }
  .seat-explanation {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-block: 35px;
  }
  .seat-number {
    margin-bottom: 13px;
  }
  .seat-explanation p {
    max-width: 260px;
  }
  .seat-explanation h3 {
    margin-bottom: 10px;
  }
  .math-symbol {
    padding: 0;
  }
  .seat-calculator {
    grid-template-columns: 1fr;
  }
  .seat-calculator > div:first-child {
    padding: 27px 24px;
  }
  .calculator-fields {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .calculator-fields label {
  }
  .calculator-result {
    padding: 28px 24px;
  }
  .calculator-result > strong {
  }
  .calculator-result > div {
    margin-top: 18px;
    padding-top: 17px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-list summary {
  }
  .faq-list p {
  }
  .journal-tools {
    align-items: stretch;
  }
  .journal-tools nav {
    gap: 12px 16px;
  }
  .category-link {
  }
  .search-form {
    width: 100%;
  }
  .search-form input {
    flex: 1;
    width: auto;
    padding-block: 12px;
  }
  .post-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .post-card h3 {
  }
  .post-card p {
  }
  .post-meta {
  }
  .empty-state {
    padding: 40px 0 15px;
  }
  .empty-state h2 {
  }
  .empty-state p {
  }
  .article-header {
    padding-block: 39px 28px;
  }
  .article-categories {
    margin-top: 33px;
  }
  .article-header h1 {
  }
  .article-byline {
    gap: 10px 15px;
  }
  .prose {
    width: calc(100% - 40px);
  }
  .prose p,
  .prose ul,
  .prose ol {
    line-height: 1.85;
  }
  .prose h2 {
  }
  .article-content {
    padding-top: 30px;
  }
  .prose .alignwide,
  .prose .alignfull {
    width: calc(100vw - 40px);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 39px;
  }
  .contact-intro {
    padding: 0;
  }
  .contact-intro h1 {
  }
  .contact-intro > p {
  }
  .contact-steps {
    gap: 22px;
    margin-top: 30px;
  }
  .contact-steps p {
  }
  .contact-steps h3 {
  }
  .contact-steps > div {
    gap: 17px;
  }
  .contact-form-card {
    padding: 26px;
  }
  .contact-form-card h2 {
  }
  .contact-form-card > p {
  }
  .contact-form-card form > label {
  }
  .not-found > .text-link {
    margin: 25px 0 0;
    display: flex;
    justify-content: center;
  }
  .not-found h1 {
  }
  body.admin-bar .site-header {
    top: 46px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .article-end,
  .menu-toggle {
    display: none;
  }
  .container,
  .prose {
    width: 100%;
    max-width: none;
  }
  .section,
  .page-hero {
    padding-block: 20px;
  }
  body {
    color: #111;
  }
  a {
    text-decoration: underline;
  }
  .flight-preview {
    transform: none;
  }
  .hero-grid,
  .feature-detail {
    display: block;
  }
  .hero-visual {
    display: none;
  }
}
