/* Mina Entertainment — premium sports × culture */
:root {
  /* Olympic · Polo · Yacht — cool navy prestige */
  --bg: #0a1628;
  --bg-elevated: #0f1f35;
  --bg-soft: #132843;
  --line: rgba(186, 214, 240, 0.12);
  --line-strong: rgba(186, 214, 240, 0.22);
  --text: #f4f8fc;
  --text-muted: #a8b8c9;
  --text-dim: #6e8196;
  --gold: #c9a86c;
  --gold-soft: #e8d5a8;
  --gold-deep: #8f7340;
  --accent: #7eb6e8;
  --danger: #c47a6a;
  --ok: #7a9e7e;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  /* 본문·UI: SUIT / 제목: 마루부리 (한글 우선 조합) */
  --font: "SUIT Variable", "SUIT", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  --font-display: "MaruBuri", "Noto Serif KR", "Apple Myungjo", serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(126, 182, 232, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 168, 108, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.7;
  letter-spacing: -0.01em; /* 한글 기본: 영문식 자간 과다 방지 */
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 400; /* MaruBuri: 200/300/400/600/700 — 500 없음 */
  letter-spacing: -0.02em;
  line-height: 1.35;
  word-break: keep-all;
}

h3, h4 {
  font-weight: 600;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s, background 0.2s;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(10, 22, 40, 0.94);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.logo strong {
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em; /* 영문 워드마크만 소폭 */
}

.logo span {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  margin-left: 0.35rem !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)) !important;
  color: #14110c !important;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #16130e;
}

.btn-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 0 0 3.5rem;
}

.hero-banner {
  position: relative;
  min-height: clamp(320px, 48vw, 520px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.45) 52%, rgba(10, 22, 40, 0.28) 100%),
    linear-gradient(0deg, rgba(10, 22, 40, 0.72) 0%, transparent 55%);
}

.hero-banner .container {
  position: relative;
  z-index: 1;
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: end;
}

.hero-inline {
  padding: 4.5rem 0 3.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em; /* 영문 라벨용 — 한글 문장에는 .eyebrow-ko 사용 */
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow-ko {
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.15rem, 4.8vw, 3.55rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
  white-space: pre-line;
}

.lead {
  margin: 1.25rem 0 0;
  max-width: 38rem;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(160deg, rgba(196, 165, 116, 0.1), transparent 50%),
    var(--bg-elevated);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.stat-list {
  display: grid;
  gap: 0.85rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

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

.stat-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
}

.stat-item span {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 400;
  text-align: right;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.section-head p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.section-muted {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 1.4rem 1.45rem;
  transition: border-color 0.15s, transform 0.15s;
  overflow: hidden;
}

.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.card.card-media {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card-media .card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}

.card-media .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card-media:hover .card-thumb img {
  transform: scale(1.04);
}

.card-media .card-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.card-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.card .tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.card-icon-row .tag {
  margin-bottom: 0;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.card .card-link {
  display: inline-flex;
  margin-top: 1.1rem;
  font-family: var(--font);
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Photo panels */
.media-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-frame.ratio-16x9 {
  aspect-ratio: 16 / 9;
}

.media-frame.ratio-4x3 {
  aspect-ratio: 4 / 3;
}

.media-frame.ratio-1x1 {
  aspect-ratio: 1 / 1;
}

.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

@media (max-width: 920px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-grid .media-frame {
  aspect-ratio: 4 / 3;
}

.panel-with-media {
  padding: 0;
  overflow: hidden;
}

.panel-with-media .panel-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.panel-with-media .panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-with-media .panel-body {
  padding: 1.5rem;
}

/* Split / story */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 1.5rem;
}

.panel h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.panel p,
.prose p {
  color: var(--text-muted);
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

.prose h3 {
  font-weight: 600;
}

.prose ul {
  padding-left: 1.15rem;
  color: var(--text-muted);
}

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

.list-check li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.15);
}

/* Page hero */
.page-hero {
  padding: 3.25rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  margin-top: 1rem;
}

/* Product (APLOUNGE-like) */
.product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: 2.5rem 0 1rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-soft);
  min-height: 420px;
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.product-thumbs button {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}

.product-thumbs button.is-active {
  border-color: var(--gold);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-buy {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-elevated);
  padding: 1.6rem;
}

.product-buy .status {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 165, 116, 0.35);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.product-buy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.product-buy .subtitle {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.price-block {
  margin: 1.4rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-block .label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.price-block .amount {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.price-block .amount small {
  font-size: 1rem;
  margin-left: 0.2rem;
}

.price-block .note {
  margin-top: 0.45rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.meta-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
}

.meta-item .k {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.meta-item .v {
  font-size: 0.92rem;
  font-weight: 600;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

/* Tabs */
.tabs {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  z-index: 40;
  padding-top: 0.5rem;
}

.tab-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 600;
  font-size: 0.92rem;
}

.tab-btn.is-active {
  color: var(--text);
  border-bottom-color: var(--gold);
}

.tab-panel {
  display: none;
  padding: 2rem 0 3rem;
}

.tab-panel.is-active {
  display: block;
}

.detail-section + .detail-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.detail-section h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.detail-section p {
  margin: 0;
  color: var(--text-muted);
}

.phase-list {
  display: grid;
  gap: 0.85rem;
}

.phase-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.phase-item .phase {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.phase-item h4 {
  margin: 0 0 0.3rem;
}

.phase-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-item h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item .date {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
}

.timeline-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Compare table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 0.9rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table td {
  color: var(--text-muted);
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 0.8rem 0.9rem;
  outline: none;
  transition: border-color 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.86rem;
  color: var(--text-dim);
}

.form-success {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(122, 158, 126, 0.4);
  background: rgba(122, 158, 126, 0.1);
  color: #c5dec8;
}

.form-success.is-visible {
  display: block;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  background: #07101c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer p,
.site-footer li {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.site-footer li + li {
  margin-top: 0.4rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.step .n {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.step h4 {
  margin: 0 0 0.3rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.chip {
  font-size: 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-muted);
}

/* Utility */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--text-muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid,
  .product,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
    min-height: 280px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(10, 22, 40, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .nav a {
    padding: 0.85rem 0.75rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0 !important;
    text-align: center;
  }

  .card-grid,
  .meta-grid,
  .form-row,
  .product-actions,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

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

  .hero {
    padding-top: 3rem;
  }

  .tab-btn {
    padding: 0.85rem 0.7rem;
    font-size: 0.86rem;
  }
}


/* Partners strip (footer-adjacent) */
.partners-strip {
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 2.25rem;
  background:
    linear-gradient(180deg, rgba(126, 182, 232, 0.04), transparent 40%),
    var(--bg);
}

.partners-strip .section-head {
  margin-bottom: 1.35rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

.partner-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 200px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}

.partner-banner:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.partner-banner .media {
  position: relative;
  min-height: 200px;
  background: var(--bg-soft);
}

.partner-banner .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-banner .body {
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

.partner-banner .status {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 108, 0.4);
  color: var(--gold);
}

.partner-banner h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.partner-banner h3 small {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.partner-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.partner-banner .more {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.partner-card:hover {
  border-color: var(--line-strong);
}

.partner-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.partner-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .partner-banner {
    grid-template-columns: 1fr;
  }
  .partner-banner .media {
    min-height: 160px;
    aspect-ratio: 16 / 9;
  }
}
