:root {
  --bg: #060307;
  --ink: #fff4e8;
  --muted: rgba(255, 244, 232, 0.68);
  --line: rgba(255, 244, 232, 0.14);
  --gold: #f8b94e;
  --rose: #ff4f84;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 79, 132, 0.22), transparent 30vw),
    radial-gradient(circle at 82% 16%, rgba(248, 185, 78, 0.14), transparent 28vw),
    linear-gradient(180deg, #090408 0%, #060307 56%, #10070f 100%);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 58px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: block;
  object-fit: contain;
  box-shadow: 0 0 24px rgba(255, 79, 132, 0.36);
}

.brand {
  font-weight: 850;
}

.nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 244, 232, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.055);
}

main {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 92px) 0 90px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.54fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.kicker {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-top: 16px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 790px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.lead {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 50% 22%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 18px;
  color: #160b10;
  background: linear-gradient(135deg, #ffe2a3, var(--gold) 45%, #ff6b4d);
  font-weight: 900;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.content {
  display: grid;
  gap: 18px;
  margin-top: clamp(52px, 7vw, 90px);
}

.section-block {
  display: grid;
  gap: 16px;
  margin-top: clamp(38px, 5vw, 68px);
}

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

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

.intent-list li {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
  color: rgba(255, 244, 232, 0.74);
  background: rgba(255, 255, 255, 0.045);
  line-height: 1.55;
}

.intent-list strong {
  color: var(--ink);
}

.mini-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

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

.panel {
  padding: 22px;
}

.panel h3 {
  font-family: ui-serif, Georgia, serif;
  font-size: 25px;
  line-height: 1.05;
}

.panel p {
  margin-top: 12px;
  font-size: 15px;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.link-list a {
  border-bottom: 1px solid rgba(248, 185, 78, 0.55);
  color: #ffd187;
  font-weight: 850;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -24px 0 28px;
  color: rgba(255, 244, 232, 0.58);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumbs a {
  color: #ffd187;
}

.hero-single {
  display: block;
  max-width: 900px;
}

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

.guide-card {
  padding: 0;
}

.guide-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.guide-card h3,
.guide-card p,
.guide-card a {
  margin-left: 20px;
  margin-right: 20px;
}

.guide-card h3 {
  margin-top: 18px;
}

.guide-card a {
  display: inline-flex;
  margin-top: 14px;
  margin-bottom: 22px;
  color: #ffd187;
  font-weight: 900;
}

.site-footer {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 30px 0 44px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer a {
  color: #ffd187;
  font-weight: 800;
}

.site-footer p {
  margin-top: 18px;
  font-size: 14px;
}

@media (max-width: 820px) {
  .hero,
  .grid,
  .guide-grid,
  .copy-columns,
  .mini-faq {
    grid-template-columns: 1fr;
  }

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

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

  .hero-card img {
    height: min(640px, 132vw);
    object-position: 50% 18%;
  }
}
