/* === CYAN OVERRIDES (file page uses cyan accent instead of primary) === */
.eyebrow .dot {
  background: var(--cyan);
}

.hero-badges span::before {
  background: var(--cyan);
}

.section-kicker {
  color: var(--cyan);
  font-weight: 850;
}

/* === CYAN BUTTON === */
.btn-cyan {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}

.btn-cyan:hover {
  background: #0e7490;
}

/* === HERO SPACING (hero-actions followed by hero-badges needs bottom margin) === */
.hero-actions {
  margin-bottom: 28px;
}

/* === HERO TRANSFER === */
.hero-transfer {
  padding: 74px 0 62px;
  background:
    linear-gradient(90deg, rgba(8, 145, 178, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 145, 178, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 10%, rgba(8, 145, 178, 0.12), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  border-bottom: 1px solid var(--line);
}

.transfer-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.hero-transfer h1 {
  max-width: 640px;
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 1.03;
  letter-spacing: -3.2px;
  font-weight: 850;
  margin-bottom: 24px;
}

.hero-transfer p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-transfer p strong {
  color: var(--text);
  font-weight: 750;
}

/* === TRANSFER CONSOLE === */
.transfer-console {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.console-head {
  min-height: 58px;
  padding: 14px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.console-title span {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: var(--cyan);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.console-status {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.console-body {
  padding: 22px;
}

/* === DROP ZONE === */
.drop-zone {
  border: 1.5px dashed #67e8f9;
  background:
    radial-gradient(circle at 16% 20%, rgba(8, 145, 178, 0.08), transparent 34%),
    #ecfeff;
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.drop-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.drop-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 24px rgba(8, 145, 178, 0.12);
}

.drop-main h3 {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.drop-main p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.upload-chip {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

/* === FILE STACK === */
.file-stack {
  display: grid;
  gap: 12px;
}

.file-row {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #fff;
}

.file-type {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.file-type.zip {
  background: var(--purple-soft);
  color: var(--purple);
}

.file-type.mp4 {
  background: var(--orange-soft);
  color: var(--orange);
}

.file-type.apk {
  background: var(--primary-soft);
  color: var(--primary);
}

.file-row h4 {
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 5px;
}

.file-row p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.file-state {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  min-width: 92px;
}

.file-state b {
  color: var(--green);
  font-size: 12px;
}

.mini-progress {
  width: 88px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.mini-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--cyan);
}

/* === CAPABILITY GRID (3 cols, cyan-themed) === */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: 0.18s ease;
}

.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.cap-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  background: var(--cyan-soft);
  color: var(--cyan);
}

.cap-card h3 {
  font-size: 19px;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.cap-card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* === FLOW BOARD === */
.flow-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.flow-head {
  padding: 18px 22px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.flow-head h3 {
  font-size: 20px;
  letter-spacing: -0.4px;
}

.flow-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.flow-body {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

.flow-step {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  position: relative;
  min-height: 160px;
}

.flow-step::before {
  content: attr(data-step);
  position: absolute;
  right: 16px;
  top: 14px;
  color: #e2e8f0;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.flow-step b {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.flow-step h4 {
  font-size: 16px;
  margin-bottom: 7px;
  position: relative;
  z-index: 2;
}

.flow-step p {
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 2;
}

/* === LIFECYCLE CARD === */
.lifecycle-card {
  background: #0f172a;
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.lifecycle-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.22);
}

.life-title {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.life-title h3 {
  font-size: 24px;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.life-title p {
  color: #cbd5e1;
  font-size: 15px;
  margin: 0;
}

.life-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.life-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.life-item i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 22px;
  color: #67e8f9;
}

.life-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.life-item span {
  color: #94a3b8;
  font-size: 12px;
}

.life-item b {
  color: #86efac;
  font-size: 12px;
  white-space: nowrap;
}

/* === FORMAT GRID (6 cols) === */
.format-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.format-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.format-card b {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 400;
}

.format-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* === SCENARIO GRID (4 cols) === */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.scenario-card h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
  margin-bottom: 9px;
}

.scenario-card p {
  color: var(--muted);
  font-size: 14px;
}

/* === FILE-SPECIFIC RESPONSIVE === */
@media (max-width: 1060px) {
  .transfer-hero-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-body {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .hero-transfer {
    padding: 56px 0 48px;
  }

  .hero-transfer h1 {
    letter-spacing: -2px;
  }

  .hero-transfer p {
    font-size: 16px;
  }

  .drop-zone {
    align-items: flex-start;
    flex-direction: column;
  }

  .file-row {
    grid-template-columns: 44px 1fr;
  }

  .file-state {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .capability-grid,
  .flow-body,
  .format-grid,
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .flow-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .life-item {
    grid-template-columns: 44px 1fr;
  }

  .life-item b {
    grid-column: 2;
  }
}
