:root {
  --bg: #090d16;
  --panel: #11182a;
  --panel-light: #162037;
  --text: #e8eefc;
  --muted: #a9b8da;
  --brand: #5d82ff;
  --brand-2: #6aebff;
  --border: #263250;
  --reveal-duration: 0.75s;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #090d16 0%, #0d1322 100%);
  color: var(--text);
}

.page-home {
  position: relative;
  overflow-x: hidden;
}

.bg-aurora {
  position: fixed;
  inset: -20% -10% -10% -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 15% 20%, rgba(93, 130, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 30%, rgba(106, 235, 255, 0.22), transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 85%, rgba(93, 130, 255, 0.12), transparent 45%);
  animation: aurora-shift 14s var(--reveal-ease) infinite alternate;
}

@keyframes aurora-shift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(2%, -1%) scale(1.03);
    opacity: 0.92;
  }
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(9, 13, 22, 0.84);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
}

nav ul {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

nav a:hover,
nav a:focus-visible {
  color: var(--text);
}

.cta-link {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-full {
  min-height: min(100vh, 900px);
  min-height: min(100dvh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
  position: relative;
}

.section-full {
  scroll-margin-top: 5rem;
}

.hero-enter {
  animation: hero-rise 1s var(--reveal-ease) both;
}

.hero-enter-delay {
  animation-delay: 0.15s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow-pulse {
  animation: eyebrow-glow 3.5s ease-in-out infinite;
}

@keyframes eyebrow-glow {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.88;
    filter: brightness(1.15);
  }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.65;
  animation: scroll-hint-fade 2.2s ease-in-out infinite;
}

.scroll-hint-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(180deg, var(--brand-2), transparent);
  animation: scroll-hint-draw 1.8s ease-in-out infinite;
}

.scroll-hint-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes scroll-hint-draw {
  0%,
  100% {
    transform: scaleY(0.6);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes scroll-hint-fade {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.85;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--reveal-ease),
    transform 0.6s var(--reveal-ease),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.reveal.is-visible .reveal-child:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal.is-visible .reveal-child:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal.is-visible .reveal-child:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal.is-visible .reveal-child:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal.is-visible .reveal-child:nth-child(5) {
  transition-delay: 0.33s;
}
.reveal.is-visible .reveal-child:nth-child(6) {
  transition-delay: 0.4s;
}

.reveal.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.carrier-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.carrier-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.carrier {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--reveal-ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.carrier::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 130, 255, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carrier:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(106, 235, 255, 0.35);
}

.carrier:hover::before {
  opacity: 1;
}

.carrier-dhl {
  border-color: rgba(255, 204, 0, 0.35);
}

.carrier-dhl:hover {
  border-color: rgba(255, 204, 0, 0.55);
}

.carrier-ups {
  border-color: rgba(201, 151, 89, 0.4);
}

.carrier-ups:hover {
  border-color: rgba(201, 151, 89, 0.65);
}

.carrier-brand-ups {
  background: linear-gradient(120deg, #e8c088, #8b5a2b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-shimmer 6s ease-in-out infinite;
}

.carrier-badge-ups {
  color: #1a1208;
  background: linear-gradient(120deg, #c99759, #f0d4a8);
}

.carrier-services {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

.carrier-brand {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, var(--text), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-shimmer 6s ease-in-out infinite;
}

.carrier-brand-dhl {
  background: linear-gradient(120deg, #ffcc00, #fff8dc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-shimmer-dhl 5s ease-in-out infinite;
}

@keyframes brand-shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.12);
  }
}

@keyframes brand-shimmer-dhl {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.2) saturate(1.1);
  }
}

.carrier h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.carrier p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.carrier-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1400;
  background: linear-gradient(120deg, #ffcc00, #ffe566);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  animation: badge-pulse 2.8s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 204, 0, 0);
  }
}

.ship-footnote {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.payment-panel {
  margin-top: 1.2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem;
}

.stripe-label {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0e1120;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: linear-gradient(120deg, #6aebff, #5d82ff);
}

.ship-route {
  display: block;
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand) 20%,
    var(--brand-2) 50%,
    var(--brand) 80%,
    transparent
  );
  background-size: 200% 100%;
  animation: route-flow 3.5s linear infinite;
  opacity: 0.85;
}

@keyframes route-flow {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: btn-shine 4s ease-in-out infinite;
}

@keyframes btn-shine {
  0%,
  60% {
    transform: translateX(-120%);
  }
  85% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--brand-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  margin-top: 0;
}

.hero-text p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.1rem;
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn.secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem;
}

.hero-card ul {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.1rem;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: rgba(17, 24, 42, 0.65);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.steps article {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
}

.steps span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--panel-light);
  color: var(--brand-2);
  font-weight: 800;
}

.steps p,
.note,
.faq p {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem;
}

.plan.featured {
  outline: 2px solid var(--brand);
}

.tag {
  display: inline-block;
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.price {
  font-size: 1.9rem;
  margin: 0.6rem 0;
  font-weight: 800;
}

.plan ul {
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.order-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.order-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.order-form label {
  font-weight: 600;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-row {
  margin-top: 0.25rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: #6aebff;
}

.checkbox-row span {
  line-height: 1.45;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0c1323;
  color: var(--text);
  padding: 0.7rem 0.75rem;
}

.form-message {
  min-height: 1.5rem;
  margin: 0.2rem 0 0;
  color: var(--brand-2);
  font-weight: 600;
}

.form-hint {
  margin: -0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.order-form select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq article {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.pillars {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
}

.pillar h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.pillar .step-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.pillar p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .order-wrap,
  .pricing-grid,
  .faq,
  .steps,
  .pillars,
  .carrier-grid,
  .carrier-grid-wide {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 0.7rem;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.9rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bg-aurora,
  .eyebrow-pulse,
  .scroll-hint,
  .scroll-hint-line,
  .carrier-brand,
  .carrier-brand-dhl,
  .carrier-brand-ups,
  .carrier-badge,
  .ship-route,
  .btn-shine::after {
    animation: none !important;
  }

  .hero-enter,
  .hero-enter-delay {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .reveal,
  .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .reveal.is-visible .reveal-child {
    transition-delay: 0s !important;
  }
}
