/*
==========================================================
 SENTRASKY
 Hero / Fleet Preview / Request Flow
 Version: 1.2.0
==========================================================
*/

/*
==========================================================
 HERO BASE
==========================================================
*/

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 74% 24%,
      rgba(7, 176, 213, 0.15),
      transparent 29%
    ),
    radial-gradient(
      circle at 20% 12%,
      rgba(7, 176, 213, 0.07),
      transparent 30%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--wide-width), 92vw);
  margin: 0 auto;
  padding: 54px 0 26px;
}

/*
==========================================================
 HERO TOP
==========================================================
*/

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 650px;
}

.hero-content .eyebrow {
  margin-bottom: 18px;
  font-size: 0.86rem;
}

.hero-title {
  margin-bottom: 26px;
  color: rgba(242, 246, 251, 0.66);
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-title span {
  color: var(--accent);
}

.hero-description {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .primary-button {
  gap: 10px;
}

/*
==========================================================
 HERO VISUAL
==========================================================
*/

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(7, 176, 213, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(7, 176, 213, 0.09),
      rgba(7, 176, 213, 0.025) 50%,
      transparent 72%
    );
  box-shadow:
    0 0 90px rgba(7, 176, 213, 0.08),
    inset 0 0 70px rgba(7, 176, 213, 0.05);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 6%;
  left: 5%;
  height: 105px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(7, 176, 213, 0.18),
      transparent 68%
    );
  filter: blur(14px);
  opacity: 0.65;
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 800px);
  max-height: 470px;
  object-fit: contain;
  filter:
    drop-shadow(0 38px 55px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 24px rgba(7, 176, 213, 0.1));
}

/*
==========================================================
 AUDIENCE
==========================================================
*/

.hero-audience {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.audience-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.audience-icon {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
}

.audience-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-text {
  min-width: 0;
}

.audience-text strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

.audience-text span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

/*
==========================================================
 LOWER PANELS
==========================================================
*/

.hero-panels {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  margin-top: 28px;
}

.home-panel {
  min-width: 0;
  padding: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(14, 28, 42, 0.94),
      rgba(6, 18, 29, 0.95)
    );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.panel-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.panel-heading {
  min-width: 0;
}

.panel-heading h2 {
  position: relative;
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.panel-heading h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.panel-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/*
==========================================================
 FLEET PANEL
==========================================================
*/

.fleet-panel {
  position: relative;
  overflow: hidden;
}

.fleet-panel::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(7, 176, 213, 0.1),
      transparent 68%
    );
  pointer-events: none;
}

.fleet-panel > * {
  position: relative;
  z-index: 1;
}

.fleet-eyebrow {
  margin: 0 0 9px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/*
==========================================================
 FLEET CONTROLS
==========================================================
*/

.fleet-controls {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.fleet-control {
  width: 42px;
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.fleet-control:hover {
  border-color: rgba(7, 176, 213, 0.42);
  background: rgba(7, 176, 213, 0.1);
  color: var(--accent);
  transform: translateY(-2px);
}

.fleet-control:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.fleet-control.next {
  border-color: var(--accent);
  background: var(--accent);
  color: #031018;
}

.fleet-control.next:hover {
  background: #22bedf;
  color: #031018;
}

/*
==========================================================
 FLEET SLIDER
==========================================================
*/

.fleet-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(480px, 1fr);
  gap: 16px;
  padding: 4px 4px 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.fleet-scroll::-webkit-scrollbar {
  display: none;
}

/*
==========================================================
 FLEET CARD
==========================================================
*/

.fleet-card {
  position: relative;
  min-width: 0;
  min-height: 215px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.024)
    );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.fleet-card::after {
  content: "";
  position: absolute;
  top: -90px;
  left: -90px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.055),
      transparent 68%
    );
  pointer-events: none;
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 176, 213, 0.33);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(7, 176, 213, 0.05);
}

/*
==========================================================
 FEATURED FLEET CARD
==========================================================
*/

.fleet-card-featured {
  border-color: rgba(7, 176, 213, 0.27);
  background:
    linear-gradient(
      145deg,
      rgba(7, 176, 213, 0.105),
      rgba(255, 255, 255, 0.035) 48%,
      rgba(255, 255, 255, 0.02)
    );
  box-shadow:
    inset 0 0 34px rgba(7, 176, 213, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.fleet-card-featured::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(7, 176, 213, 0.55);
  pointer-events: none;
}

.fleet-card-featured:hover {
  border-color: rgba(7, 176, 213, 0.5);
  box-shadow:
    inset 0 0 38px rgba(7, 176, 213, 0.055),
    0 26px 54px rgba(0, 0, 0, 0.37),
    0 0 28px rgba(7, 176, 213, 0.08);
}

/*
==========================================================
 FLEET IMAGE
==========================================================
*/

.fleet-image {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 180px;

  overflow: hidden;

  background-color: #eef3f5;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;

  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 10px;

  cursor: zoom-in;

  box-shadow:
    inset 0 0 0 1px rgba(3, 16, 24, 0.05),
    0 14px 30px rgba(0, 0, 0, 0.2);
}

.fleet-image::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 3;

  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: inherit;

  pointer-events: none;
}

.fleet-image img {
  position: relative;
  z-index: 1;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  opacity: 1;

  transition: opacity 0.2s ease;

  pointer-events: none;
  user-select: none;
}

.fleet-image.is-zoomed {
  background-size: 180%;
}

.fleet-image.is-zoomed img {
  opacity: 0;
}


.fleet-card-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.45));
}

/*
==========================================================
 FLEET CONTENT
==========================================================
*/

.fleet-card-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 4px 4px 4px 0;
}

.fleet-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.fleet-card-heading > div {
  min-width: 0;
}

.fleet-card-heading h3,
.fleet-card-content > h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.fleet-card-type {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-status {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(7, 176, 213, 0.24);
  border-radius: 999px;
  background: rgba(7, 176, 213, 0.09);
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.fleet-status::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px rgba(7, 176, 213, 0.65);
}

.fleet-card-description,
.fleet-card-content > p {
  min-height: 48px;
  margin: 0;
  color: rgba(242, 246, 251, 0.78);
  font-size: 0.8rem;
  line-height: 1.55;
}

/*
==========================================================
 FLEET TAGS
==========================================================
*/

.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.fleet-tags span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(242, 246, 251, 0.9);
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/*
==========================================================
 REQUEST FLOW
==========================================================
*/

.request-panel {
  position: relative;
  overflow: hidden;
}

.request-panel::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: 52%;
  height: 76%;
  background:
    radial-gradient(
      circle,
      rgba(7, 176, 213, 0.09),
      transparent 68%
    );
  opacity: 0.7;
  pointer-events: none;
}

.request-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.request-intro {
  max-width: 430px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.55;
}

.request-steps {
  display: grid;
  gap: 12px;
}

.request-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.84rem;
}

.request-step-icon {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #031018;
  font-size: 0.72rem;
  font-weight: 800;
}

/*
==========================================================
 TRUST BAR
==========================================================
*/

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: rgba(255, 255, 255, 0.12);
}

.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 1rem;
}

.trust-item strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}

.trust-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

/*
==========================================================
 TABLET
==========================================================
*/

@media (max-width: 1120px) {
  .hero-top {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    gap: 30px;
  }

  .hero-visual::before {
    width: 440px;
    height: 440px;
  }

  .hero-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panels {
    grid-template-columns: 1fr;
  }

  .fleet-scroll {
    grid-auto-columns: minmax(460px, 74%);
  }
}

/*
==========================================================
 MOBILE
==========================================================
*/

@media (max-width: 820px) {
  .hero {
    padding-top: 128px;
  }

  .hero-inner {
    padding-top: 42px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 370px;
  }

  .hero-visual::before {
    width: 360px;
    height: 360px;
  }

  .hero-image {
    max-height: 390px;
  }

  .hero-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-heading-row {
    align-items: center;
  }

  .fleet-scroll {
    grid-auto-columns: minmax(420px, 88%);
  }

  .fleet-card {
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 205px;
    gap: 15px;
    padding: 15px;
  }

  .fleet-image,
  .fleet-card-image {
    height: 165px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-item:not(:last-child)::after {
    top: auto;
    right: 5%;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
  }
}

/*
==========================================================
 SMALL MOBILE
==========================================================
*/

@media (max-width: 560px) {
  .hero {
    padding-top: 116px;
  }

  .hero-inner {
    width: 90vw;
    padding-top: 32px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-description {
    font-size: 0.97rem;
  }

  .hero-actions .primary-button {
    width: 100%;
  }

  .hero-audience {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual::before {
    width: 285px;
    height: 285px;
  }

  .hero-image {
    max-height: 310px;
  }

  .hero-panels {
    margin-top: 18px;
  }

  .home-panel {
    padding: 18px;
  }

  .panel-heading-row {
    align-items: flex-start;
  }

  .panel-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }

  .fleet-controls {
    gap: 7px;
  }

  .fleet-control {
    width: 38px;
    height: 38px;
  }

  .fleet-scroll {
    grid-auto-columns: 92%;
    gap: 12px;
    padding-right: 0;
    padding-left: 0;
  }

  .fleet-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
    padding: 14px;
  }

  .fleet-image,
  .fleet-card-image {
    height: 190px;
  }

  .fleet-card-content {
    padding: 2px;
  }

  .fleet-card-description,
  .fleet-card-content > p {
    min-height: auto;
  }

  .fleet-status {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.6rem;
  }

  .trust-item {
    padding: 16px 8px;
  }
}

/*
==========================================================
 REDUCED MOTION
==========================================================
*/

@media (prefers-reduced-motion: reduce) {
  .fleet-control,
  .fleet-card,
  .fleet-image img {
    transition: none;
  }

  .fleet-card:hover {
    transform: none;
  }
}