:root {
  --color-primary: #102a43;
  --color-primary-strong: #071b2d;
  --color-secondary: #1f6feb;
  --color-accent: #e86f00;
  --color-light: #f5f8fb;
  --color-white: #ffffff;
  --color-text: #1b2633;
  --color-muted: #526171;
  --color-border: #d8e1ea;
  --color-success: #18794e;
  --shadow-sm: 0 8px 24px rgba(7, 27, 45, 0.1);
  --shadow-md: 0 18px 50px rgba(7, 27, 45, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-secondary);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--color-white);
  background: var(--color-primary-strong);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--light {
  background: var(--color-light);
}

.section--dark {
  color: var(--color-white);
  background: var(--color-primary);
}

.section--dark .eyebrow,
.section--dark .highlight {
  color: #ff9a3d;
}

.section--dark .section-lead,
.section--dark .muted {
  color: #cfdae5;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: inherit;
  line-height: 1.15;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 6vw, 4.7rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

p {
  margin-top: 0;
}

.highlight {
  color: var(--color-accent);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-lead,
.lead {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.lead {
  max-width: 740px;
  margin-bottom: 32px;
}

.muted {
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 225, 234, 0.85);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(7, 27, 45, 0.04);
}

.navbar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  max-width: 310px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--color-secondary);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  color: var(--color-white);
  background: var(--color-primary-strong);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 42px solid rgba(232, 111, 0, 0.14);
  border-radius: 50%;
  content: "";
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .lead {
  color: #d5e0ea;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  color: var(--color-white);
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  color: var(--color-white);
  background: #1459bd;
  border-color: #1459bd;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.button--accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.button--accent:hover {
  background: #bf5700;
  border-color: #bf5700;
}

.button--outline {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button--outline:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary);
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.88rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.trust-item {
  padding: 26px 28px;
  border-right: 1px solid var(--color-border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--color-primary);
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.visual-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 250px;
  padding: 18px;
  color: var(--color-white);
  background: var(--color-primary-strong);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.visual-badge strong,
.visual-badge span {
  display: block;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 30px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 50%;
  font-weight: 800;
}

.card p:last-child {
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card {
  padding: 24px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
}

.value-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ff9a3d;
}

.value-card p {
  margin-bottom: 0;
  color: #d5e0ea;
  font-size: 0.92rem;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.data-item {
  padding: 22px 24px;
  background: var(--color-white);
}

.data-item--wide {
  grid-column: 1 / -1;
}

.data-item dt {
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-item dd {
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 50px;
  color: var(--color-white);
  background: var(--color-primary-strong);
  border-left: 8px solid var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-box h2 {
  margin-bottom: 12px;
}

.cta-box p {
  max-width: 650px;
  margin-bottom: 0;
  color: #d5e0ea;
}

.site-footer {
  color: #d5e0ea;
  background: #061522;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 46px;
  padding: 64px 0 44px;
}

.footer-brand {
  color: var(--color-white);
  font-size: 1.05rem;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 9px;
}

.site-footer a {
  color: #d5e0ea;
}

.site-footer a:hover {
  color: #ff9a3d;
}

.company-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.company-details strong {
  display: block;
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  padding: 78px 0;
  color: var(--color-white);
  background: var(--color-primary-strong);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d5e0ea;
  font-size: 1.1rem;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 1.65rem;
}

.legal-content h3 {
  margin-top: 30px;
}

.legal-content li {
  margin-bottom: 9px;
}

.legal-note {
  padding: 20px 22px;
  background: #eef5ff;
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius-sm);
}

.presell-page {
  min-height: 100vh;
  background: var(--color-light);
}

.presell-main {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: 64px 0;
}

.presell-card {
  width: min(100%, 720px);
  padding: clamp(30px, 7vw, 62px);
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.presell-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
}

.presell-card h1 {
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.hold-instruction {
  margin: 30px 0 12px;
  color: var(--color-primary);
  font-weight: 800;
}

.hold-button {
  --progress: 0%;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 76px;
  overflow: hidden;
  padding: 16px 24px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 3px solid var(--color-secondary);
  border-radius: 16px;
  box-shadow: 0 8px 0 var(--color-primary-strong);
  font-weight: 800;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hold-button::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: var(--progress);
  background: var(--color-accent);
  content: "";
}

.hold-button:hover {
  border-color: var(--color-accent);
}

.hold-button.is-holding {
  box-shadow: 0 3px 0 var(--color-primary-strong);
  transform: translateY(5px) scale(0.995);
}

.hold-button.is-complete {
  background: var(--color-success);
  border-color: var(--color-success);
  box-shadow: none;
}

.hold-status {
  min-height: 26px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.destination-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.86rem;
}

.simple-header .navbar {
  justify-content: center;
}

.simple-footer {
  padding: 34px 0;
  text-align: center;
}

.simple-footer p {
  margin: 6px 0;
}

.simple-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 15px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 0;
  color: var(--color-white);
  text-align: center;
  background: var(--color-primary-strong);
}

.not-found strong {
  display: block;
  color: var(--color-accent);
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 1;
}

.not-found h1 {
  margin-inline: auto;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 28px 20px;
    background: var(--color-white);
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li,
  .nav-list a {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-list .button {
    margin-top: 16px;
    color: var(--color-white);
  }

  .split,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .cards .card:last-child {
    grid-column: 1 / -1;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .brand span {
    max-width: 205px;
    font-size: 0.76rem;
  }

  .hero {
    padding: 82px 0 78px;
  }

  .hero-actions,
  .cta-actions,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .trust-grid,
  .cards,
  .data-grid,
  .company-details {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .cards .card:last-child,
  .data-item--wide {
    grid-column: auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel,
  .visual-panel img {
    min-height: 330px;
  }

  .cta-box {
    align-items: stretch;
    flex-direction: column;
    padding: 34px 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}