/* İLKE FREIGHT — Homepage styles
   Mobile-first. Inherits tokens from colors_and_type.css */

html { scroll-behavior: auto; }
body { background: var(--navy-700); }

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ───────────────────── Header ───────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(14% 0.045 258 / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark { height: 28px; width: auto; }

.brand-word {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--offwhite);
  white-space: nowrap;
}

.brand-sig {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-gold);
  border-left: 1px solid var(--hairline);
  padding-left: 12px;
  white-space: nowrap;
}

.site-nav {
  display: none;
  flex: 1;
  gap: 28px;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy-100);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.site-nav a:hover { color: var(--offwhite); border-color: var(--hairline-strong); }

.header-cta { margin-left: 14px; }

/* ── Language switcher ── */.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  border: 1px solid var(--hairline);
  padding: 3px;
}

.lang-btn {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-300);
  padding: 5px 9px;
  transition: color 140ms ease, background 140ms ease;
}

.lang-btn:hover { color: var(--offwhite); }

.lang-btn.is-active {
  color: var(--navy-900, #0b1526);
  background: var(--offwhite);
}

/* ───────────────────── Buttons ───────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast), transform var(--duration-normal);
  min-height: 44px;
}

.btn-solid { background: var(--offwhite); color: var(--navy-700); }
.btn-solid:hover { background: var(--white); transform: scale(1.03); }

.btn-ghost { background: transparent; color: var(--accent-gold); border-color: var(--hairline-strong); }
.btn-ghost:hover { color: var(--gold-400); border-color: var(--gold-500); transform: scale(1.03); }

.btn-crimson { background: var(--crimson-500); color: var(--white); }
.btn-crimson:hover { background: var(--crimson-400); transform: scale(1.03); }

.btn-sm { padding: 10px 18px; min-height: 40px; }

/* On light sections */
.btn-outline-navy { background: transparent; color: var(--navy-700); border-color: oklch(22% 0.055 258 / 0.4); }
.btn-outline-navy:hover { border-color: var(--navy-700); transform: scale(1.03); }

/* ───────────────────── Section scaffolding ───────────────────── */

section { position: relative; }

.section-pad { padding: 80px 0; }

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.eyebrow-row .rule { height: 1px; width: 48px; background: var(--hairline-strong); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 18em;
}

.section-lede {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  max-width: 560px;
}

/* Light section variants */
.section-light { background: var(--bg-light); color: var(--navy-700); }
.section-light .eyebrow { color: var(--gold-700); }
.section-light .eyebrow-row .rule { background: oklch(58% 0.11 78 / 0.5); }
.section-light .section-lede { color: var(--navy-500); }

.section-dark { background: var(--navy-700); color: var(--offwhite); }
.section-dark .section-lede { color: var(--navy-200); }

.section-deep { background: var(--navy-900); color: var(--offwhite); }

/* ───────────────────── Hero ───────────────────── */

.hero {
  background: var(--navy-800);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 64px);
  border-bottom: 1px solid var(--hairline);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
    oklch(97% 0.006 258 / 0.015) 0px,
    oklch(97% 0.006 258 / 0.015) 1px,
    transparent 1px, transparent 44px);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/fleet.jpg');
  background-size: cover;
  background-position: center 78%;
  opacity: 0;
  transition: opacity var(--duration-slow);
  pointer-events: none;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(18% 0.052 258 / 0.88), oklch(18% 0.052 258 / 0.96));
}

html[data-hero-visual="photo"] .hero-photo { opacity: 1; }

.hero .container {
  position: relative;
  display: grid;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-eyebrow .rule { width: 40px; height: 1px; background: var(--hairline-strong); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 4.9rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  margin-bottom: 26px;
  max-width: 13em;
}

.hero-headline em { font-style: italic; color: var(--gold-400); }

.hero-sub {
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--offwhite);
  opacity: 0.88;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 0; }

.hero-content, .hero-map { min-width: 0; } /* prevent grid blowout from fixed-size globe canvas */

.hero-map { position: relative; }

.hero-globe { width: 100%; }
.hero-globe > div { max-width: 100%; overflow: hidden; }

.hero-map svg { width: 100%; height: auto; }

.hero-map-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  margin-top: 14px;
  padding-top: 12px;
}

.hero-map-caption .caption { color: var(--navy-300); }

.map-legend { display: flex; gap: 18px; flex-wrap: wrap; }

.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-200);
}

.legend-dot { width: 8px; height: 8px; flex-shrink: 0; }

/* ───────────────────── Corridors ───────────────────── */

.corridor-grid {
  display: grid;
  gap: 1px;
  background: oklch(22% 0.055 258 / 0.16);
  border: 1px solid oklch(22% 0.055 258 / 0.16);
  margin-top: 48px;
}

.corridor-card {
  background: var(--bg-light);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.corridor-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.corridor-tag .swatch { width: 10px; height: 10px; }

.corridor-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy-700);
  margin-bottom: 12px;
}

.corridor-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--navy-500);
  margin-bottom: 24px;
}

.corridor-countries {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.corridor-countries li {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-600);
  border: 1px solid oklch(22% 0.055 258 / 0.22);
  padding: 5px 12px;
}

.hub-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid oklch(58% 0.11 78 / 0.4);
}

.hub-line p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--navy-600);
}

.hub-line .hub-dot {
  width: 12px; height: 12px;
  background: var(--crimson-500);
  border-radius: 50%;
  outline: 1px solid oklch(49% 0.25 5 / 0.35);
  outline-offset: 4px;
  flex-shrink: 0;
}

/* ───────────────────── Capabilities ───────────────────── */

.cap-grid {
  display: grid;
  gap: 1px;
  background: var(--border-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-top: 48px;
}

.cap-block {
  background: var(--navy-700);
  padding: 36px 28px;
}

.cap-index {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.cap-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.cap-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--navy-200);
}

.cap-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cap-docs span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold-400);
  border: 1px solid var(--hairline);
  padding: 4px 10px;
}

/* ───────────────────── Process ───────────────────── */

.process-track {
  display: grid;
  gap: 0;
  margin-top: 56px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 0 0 36px 32px;
  border-left: 1px solid oklch(22% 0.055 258 / 0.25);
}

.process-step:last-child { padding-bottom: 0; }

.process-step::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px; height: 11px;
  background: var(--bg-light);
  border: 1px solid var(--gold-700);
  border-radius: 50%;
}

.process-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 8px;
}

.process-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--navy-700);
  margin-bottom: 8px;
}

.process-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--navy-500);
  max-width: 420px;
}

/* ───────────────────── Trust strip ───────────────────── */

.trust {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.trust .container {
  display: grid;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.trust-photo {
  position: relative;
  min-height: 320px;
  aspect-ratio: 3 / 4;
  max-height: 560px;
  overflow: hidden;
}

.trust-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.7) contrast(1.02);
}

.trust-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(14% 0.045 258 / 0.25), oklch(14% 0.045 258 / 0.05) 55%);
  pointer-events: none;
}

.trust-photo .photo-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: oklch(14% 0.045 258 / 0.85);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
  margin-top: 44px;
}

.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--offwhite);
  margin-bottom: 8px;
}

.stat .stat-num em { font-style: italic; color: var(--gold-400); }

.stat .stat-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-300);
}

/* ───────────────────── Closing CTA ───────────────────── */

.closing { text-align: left; }

.closing .container { padding-top: 96px; padding-bottom: 96px; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  margin-bottom: 20px;
  max-width: 14em;
}

.closing-sub {
  font-size: var(--text-md);
  color: var(--navy-200);
  max-width: 520px;
  margin-bottom: 40px;
}

/* Two columns: copy left, contact card right */
.closing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.contact-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.03);
  padding: 28px;
}

.contact-card-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-300);
  margin-bottom: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
  transition: background 140ms ease;
}

.contact-row:hover { background: rgba(255, 255, 255, 0.04); }

.contact-icn {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--navy-300);
}

.contact-icn svg { width: 100%; height: 100%; }

.contact-row-wa .contact-icn { color: var(--crimson-300); }

.contact-row:hover .contact-icn { color: var(--offwhite); }

.contact-row-wa:hover .contact-icn { color: var(--crimson-200); }

.contact-lbl {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-300);
  white-space: nowrap;
}

.contact-val {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--offwhite);
  text-align: right;
  overflow-wrap: anywhere;
}

.contact-row-wa .contact-val { color: var(--crimson-300, #e8638d); }

.contact-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--navy-300);
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}

/* ───────────────────── Footer ───────────────────── */

.site-footer { background: var(--navy-900); border-top: 1px solid var(--hairline); }

.footer-main {
  display: grid;
  gap: 44px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-brand .brand-mark { height: 34px; margin-bottom: 14px; }

.footer-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: var(--text-sm);
  color: var(--navy-300);
  line-height: var(--leading-relaxed);
  max-width: 280px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.footer-col a,
.footer-col span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--navy-200);
  text-decoration: none;
  line-height: 1.5;
}

.footer-col a:hover { color: var(--offwhite); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 22px;
  padding-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.footer-bottom span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--navy-400);
}

/* ───────────────────── Breakpoints ───────────────────── */

@media (min-width: 720px) {
  .container { padding-left: 48px; padding-right: 48px; }
  .site-header .container { height: 72px; }
  .brand-mark { height: 32px; }
  .brand-sig { display: block; }
  .section-pad { padding: 112px 0; }
  .corridor-grid { grid-template-columns: repeat(3, 1fr); }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1fr 1.4fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }

  .process-track {
    grid-template-columns: repeat(4, 1fr);
    counter-reset: none;
  }
  .process-step {
    border-left: none;
    border-top: 1px solid oklch(22% 0.055 258 / 0.25);
    padding: 28px 28px 0 0;
  }
  .process-step::before {
    left: 0;
    top: -6px;
  }
}

@media (min-width: 1080px) {
  .site-nav { display: flex; }
  .closing-grid { grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); gap: 80px; }
  .contact-card { padding: 36px; }
  /* hero stacks: headline block first, globe below it, full width */
  .hero .container { gap: 24px; }
  .trust .container {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 72px;
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .trust-photo { min-height: 420px; }
}

/* Reveal-friendly: every section is a clean block; no transforms applied by default. */

/* Scroll-reveal (subtle fade + slide up, triggers once) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Staggered child reveal inside corridor and capability grids */
.corridor-grid > .corridor-card,
.cap-grid > .cap-block {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible .corridor-grid > .corridor-card,
.reveal.is-visible .cap-grid > .cap-block {
  opacity: 1;
  transform: none;
}
.corridor-grid > .corridor-card:nth-child(1),
.cap-grid > .cap-block:nth-child(1) { transition-delay: 80ms; }
.corridor-grid > .corridor-card:nth-child(2),
.cap-grid > .cap-block:nth-child(2) { transition-delay: 200ms; }
.corridor-grid > .corridor-card:nth-child(3),
.cap-grid > .cap-block:nth-child(3) { transition-delay: 320ms; }
.cap-grid > .cap-block:nth-child(4) { transition-delay: 440ms; }

/* Subtle lift on hover for corridor cards and capability blocks */
.reveal.is-visible .corridor-grid > .corridor-card:hover {
  transform: translateY(-4px);
}
.reveal.is-visible .cap-grid > .cap-block:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .corridor-grid > .corridor-card,
  .cap-grid > .cap-block {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ═══════════════ Latest news section ═══════════════ */
.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 560px) { .latest-grid { grid-template-columns: 1fr; } }

.latest-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.latest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.28);
  border-color: rgba(212, 67, 116, 0.4);
}
.latest-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.latest-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.latest-badge-li { background: #0A66C2; }
.latest-badge-wa { background: #25D366; }
.latest-cap {
  padding: 16px 18px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #1a2540;
}

.status-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 56px 0 18px;
}
.status-dot {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  position: relative;
  flex-shrink: 0;
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 999px;
  background: #25D366;
}
.status-title { margin: 0; font-size: 17px; font-weight: 600; color: #0f1a33; }
.status-sub { margin: 2px 0 0; font-size: 13px; color: #5a6478; }

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .status-grid { grid-template-columns: repeat(2, 1fr); } }

.status-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 55%);
}
.status-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #25D366;
}
.status-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(15, 23, 42, 0.35);
}
.status-cap {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  z-index: 1;
}
