:root {
  --gp-bg: #f6f7f2;
  --gp-card: #ffffff;
  --gp-ink: #161712;
  --gp-muted: #61645b;
  --gp-line: rgba(22, 23, 18, .12);
  --gp-soft: #fff7cf;
  --gp-yellow: #f3c80f;
  --gp-green: #1d7f47;
  --gp-blue: #153e75;
  --gp-radius: 22px;
}

.gp-page {
  background: var(--gp-bg);
  color: var(--gp-ink);
  min-height: 100vh;
}

.gp-shell {
  width: min(1480px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.gp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.gp-hero-main,
.gp-panel {
  background: var(--gp-card);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  box-shadow: 0 18px 46px rgba(22, 23, 18, .07);
}

.gp-hero-main {
  padding: clamp(28px, 4vw, 58px);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gp-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gp-soft);
  border: 1px solid rgba(243, 200, 15, .45);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.gp-title {
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: .95;
  letter-spacing: -.055em;
  margin: 18px 0 16px;
}

.gp-lead {
  color: var(--gp-muted);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
  max-width: 860px;
  margin: 0;
}

.gp-hero-side {
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(243, 200, 15, .28), transparent 35%),
    linear-gradient(145deg, #181915, #34362c);
  color: white;
  border-radius: var(--gp-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
}

.gp-side-title {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 12px;
}

.gp-side-text {
  color: rgba(255,255,255,.76);
  line-height: 1.55;
  margin: 0;
}

.gp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--gp-line);
  color: var(--gp-ink);
  background: white;
  text-decoration: none;
  font-weight: 800;
}

.gp-btn-primary {
  background: var(--gp-yellow);
  border-color: rgba(22, 23, 18, .18);
}

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

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

.gp-panel {
  padding: 24px;
}

.gp-panel h2,
.gp-panel h3 {
  margin: 0 0 12px;
  letter-spacing: -.03em;
}

.gp-panel h2 {
  font-size: clamp(28px, 2.5vw, 42px);
}

.gp-panel h3 {
  font-size: 24px;
}

.gp-panel p,
.gp-panel li {
  color: var(--gp-muted);
  line-height: 1.55;
}

.gp-panel ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.gp-card-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--gp-line);
  border-radius: 18px;
  background: #fff;
}

.gp-thumb {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(243, 200, 15, .8), rgba(255,255,255,.7)),
    radial-gradient(circle at bottom right, rgba(29,127,71,.28), transparent 50%);
  border: 1px solid var(--gp-line);
}

.gp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.gp-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f3ee;
  border: 1px solid var(--gp-line);
  color: var(--gp-muted);
  font-size: 13px;
  font-weight: 700;
}

.gp-warning {
  background: #fff8d7;
  border-color: rgba(243, 200, 15, .5);
}

.gp-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}

.gp-table th,
.gp-table td {
  border-bottom: 1px solid var(--gp-line);
  padding: 13px 10px;
  text-align: left;
  vertical-align: top;
}

.gp-table th {
  font-size: 13px;
  color: var(--gp-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .gp-shell {
    width: min(100% - 22px, 1480px);
    padding-top: 20px;
  }

  .gp-hero,
  .gp-grid,
  .gp-grid-2 {
    grid-template-columns: 1fr;
  }

  .gp-hero-main,
  .gp-hero-side {
    min-height: auto;
  }

  .gp-title {
    font-size: clamp(34px, 13vw, 54px);
  }

  .gp-card-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .gp-thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }
}
