:root {
  --navy: #10233f;
  --navy-2: #17375e;
  --ink: #182438;
  --muted: #617085;
  --line: #dce5ee;
  --panel: #ffffff;
  --base: #f6f9fc;
  --soft: #eef5f7;
  --line-green: #06c755;
  --line-green-dark: #04a947;
  --gold: #d79a2b;
  --gold-soft: #fff6e3;
  --red: #b64a42;
  --shadow: 0 18px 44px rgba(16, 35, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--base);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Segoe UI", sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: 0;
}

.notice {
  margin: 0;
  padding: 8px 16px;
  color: #65430d;
  background: #fff3d8;
  font-size: 12px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.88);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.header-nav a,
.text-link {
  text-decoration: none;
}

.header-nav a:hover,
.text-link:hover {
  color: var(--navy);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--line-green);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: calc(88svh - 78px);
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px) clamp(36px, 5vw, 62px);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(16, 35, 63, 0.96), rgba(23, 55, 94, 0.76)),
    url("assets/hero-ticket-buyback.png") center / cover;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #a9f1c7;
}

.lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.8vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--line-green);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.28);
}

.button.primary:hover,
.header-cta:hover,
.sticky-cta:hover {
  background: var(--line-green-dark);
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.54);
  background: #fff;
}

.button.small {
  min-height: 42px;
  padding: 9px 16px;
  color: #fff;
  background: var(--navy);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin: 0;
}

.hero-stats div {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  font-size: 19px;
  font-weight: 900;
}

.micro-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.quick-panel {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 2px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 35, 63, 0.9);
}

.quick-panel span,
.quick-panel small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.quick-panel strong {
  font-size: clamp(20px, 2.2vw, 28px);
}

.search-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: -24px auto 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.search-strip div {
  display: grid;
  gap: 2px;
}

.search-strip span,
.muted,
.section-heading p:not(.eyebrow),
.card-grid p,
.reason-card p,
.note,
details p,
.site-footer,
.company-list dt,
.flow-list span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 98px) clamp(20px, 5vw, 72px);
}

.section.soft {
  background: var(--soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.two-column,
.company {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.explain-panel,
.card-grid article,
.reason-card,
.pros-cons article,
details,
.company-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 32px rgba(16, 35, 63, 0.07);
}

.explain-panel {
  padding: clamp(22px, 3vw, 30px);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--line-green-dark);
  font-weight: 900;
}

.checks,
.alerts {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks li,
.alerts li {
  position: relative;
  padding-left: 25px;
  font-weight: 700;
}

.checks li::before {
  position: absolute;
  left: 0;
  color: var(--line-green);
  content: "✓";
  font-weight: 900;
}

.alerts li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "!";
  font-weight: 900;
}

.card-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid article,
.reason-card {
  padding: clamp(20px, 2.8vw, 28px);
}

.card-grid span,
.reason-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 900;
}

.reason-card.featured {
  grid-column: span 2;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.reason-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.reason-card.featured span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  counter-increment: flow;
}

.flow-list strong::before {
  content: counter(flow, decimal-leading-zero) " ";
  color: var(--line-green);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 35, 63, 0.08);
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  white-space: nowrap;
}

tr:last-child td {
  border-bottom: 0;
}

.highlight td {
  background: #f1fbf5;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pros-cons article {
  padding: clamp(20px, 2.8vw, 28px);
}

.pros-cons .caution {
  background: #fff8f4;
}

.company-list {
  margin: 0;
  overflow: hidden;
}

.company-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.company-list div:last-child {
  border-bottom: 0;
}

.company-list dt {
  font-weight: 900;
}

.company-list dd {
  margin: 0;
  font-weight: 800;
}

.faq {
  background: #f8fafc;
}

details {
  width: min(920px, 100%);
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  width: min(960px, calc(100% - 40px));
  margin: clamp(46px, 7vw, 78px) auto;
  padding: clamp(32px, 5vw, 52px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  text-align: center;
}

.final-cta p {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .button {
  margin-top: 8px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--line-green);
  box-shadow: 0 16px 34px rgba(6, 199, 85, 0.34);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px) 86px;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero,
  .two-column,
  .company {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-nav {
    justify-content: flex-start;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-stats,
  .card-grid,
  .reason-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .reason-card.featured {
    grid-column: auto;
  }

  .search-strip {
    align-items: stretch;
    flex-direction: column;
    margin-top: 18px;
  }

  .flow-list li,
  .company-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sticky-cta {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 33px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}
