/* ======================================== */
/* WAIVER GATEWAY PAGE                      */
/* ======================================== */

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

/* ======================================== */
/* BASE                                     */
/* ======================================== */

body {
  margin: 0;
  background: var(--orion-color-bg);
  font-family: "Inter", sans-serif;
  color: var(--orion-color-text);
}

.orion-waiver-gateway {
  padding: 28px;
}

.owg-container {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
}

/* ======================================== */
/* TYPE                                     */
/* ======================================== */

.owg-hero-main h1,
.owg-section h2,
.owg-card h3,
.owg-hero-panel h3,
.owg-final-box h2 {
  margin: 0;
  font-family: "Glacial Indifference", Inter, sans-serif;
  font-weight: 400;
}

.owg-section h2,
.owg-final-box h2 {
  color: var(--orion-color-dark);
  font-size: 54px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  text-align: center;
}

.owg-card h3 {
  color: var(--orion-color-dark);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.owg-card p,
.owg-final-box p,
.owg-card-list li,
.owg-final-box li {
  color: var(--orion-color-text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ======================================== */
/* HERO                                     */
/* ======================================== */

.owg-hero-wrap {
  padding: 0 0 48px;
}

.owg-hero-box {
  background: linear-gradient(135deg, #1f1f1f 0%, var(--orion-color-dark) 100%);
  border-radius: 34px;
  padding: 58px 38px;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
  overflow: hidden;
}

.owg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.owg-eyebrow {
  font-family: "Glacial Indifference", Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--orion-color-accent);
  margin-bottom: 16px;
  display: block;
  text-align: center;
  width: 100%;
}

.owg-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orion-color-accent);
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.owg-hero-main h1 {
  color: var(--orion-color-white);
  font-size: 74px;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 820px;
}

.owg-hero-copy {
  margin: 28px 0 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.75;
}

.owg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.owg-hero-actions .orion-btn {
  min-width: 330px;
  box-shadow: var(--orion-shadow-soft);
}

.owg-hero-actions .orion-btn-primary {
  min-width: 330px;
}

.owg-hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 34px 38px;
}

.owg-hero-panel h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 22px;
}

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

.owg-hero-list li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.5;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.owg-hero-list li:last-child {
  border-bottom: none;
}

/* ======================================== */
/* LAYOUT SECTIONS                          */
/* ======================================== */

.owg-section {
  padding: 30px 20px 56px;
  text-align: center;
}

/* ======================================== */
/* CARDS                                    */
/* ======================================== */

.owg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 34px;
}

.owg-card {
  background: var(--orion-color-white);
  padding: 34px 36px 36px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid var(--orion-color-border);
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: all 0.2s ease;
}

.owg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.08);
}

.owg-card p {
  margin: 0 0 22px;
  max-width: none;
  line-height: 1.6;
}

.owg-card .orion-btn {
  width: 100%;
  margin-top: auto;
  align-self: stretch;
}

.owg-path-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--orion-color-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.owg-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.owg-card-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.owg-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orion-color-primary);
  font-size: 18px;
  line-height: 1.4;
}

/* ======================================== */
/* FINAL CTA                                */
/* ======================================== */

.owg-final-box {
  background: var(--orion-color-white);
  padding: 54px 56px 48px;
  border-radius: 24px;
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
  border: 1px solid var(--orion-color-border);
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.04);
}

.owg-final-intro {
  max-width: 760px;
  margin: 0 auto;
}

.owg-final-box ul {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  display: inline-block;
  text-align: left;
}

.owg-final-box li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.owg-final-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orion-color-gradient);
}

.owg-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.owg-actions .orion-btn {
  width: auto;
  min-width: 220px;
  min-height: 56px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 18px;
  flex: 0 0 auto;
}

.owg-actions .orion-btn-primary {
  min-width: 280px;
}

/* ======================================== */
/* RESPONSIVE                               */
/* ======================================== */

@media (max-width: 1200px) {
  .owg-hero-main h1 {
    font-size: 60px;
  }

  .owg-hero-grid {
    grid-template-columns: 1fr;
  }

  .owg-hero-panel {
    max-width: none;
  }
}

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

  .owg-section h2,
  .owg-final-box h2 {
    font-size: 42px;
  }

  .owg-hero-main h1 {
    font-size: 50px;
  }
}

@media (max-width: 640px) {
  .orion-waiver-gateway {
    padding: 18px;
  }

  .owg-hero-box,
  .owg-card,
  .owg-final-box,
  .owg-hero-panel {
    padding: 24px;
  }

  .owg-hero-main h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .owg-section h2,
  .owg-final-box h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .owg-hero-actions,
  .owg-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .owg-hero-actions .orion-btn,
  .owg-actions .orion-btn {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .owg-hero-actions .orion-btn-primary,
  .owg-actions .orion-btn-primary {
    min-width: 0;
  }
}
