:root {
  --brand-red: #d91526;
  --brand-red-deep: #b60f1d;
  --brand-gold: #d8a23a;
  --brand-gold-soft: #f0cf84;
  --ink: #2b1c14;
  --text: #3a2a1f;
  --muted: #6b5849;
  --line: #efe2cf;
  --surface: #ffffff;
  --shadow-soft: 0 18px 44px rgba(166, 106, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Be Vietnam Pro", "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 21, 38, 0.08), transparent 38%),
    radial-gradient(circle at 88% 5%, rgba(216, 162, 58, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.18;
}

h1,
h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.container {
  width: min(1160px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 162, 58, 0.22);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 56px;
  width: auto;
}

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

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-solid {
  color: #fff;
  background: linear-gradient(105deg, var(--brand-red-deep), var(--brand-red) 45%, var(--brand-gold));
  box-shadow: 0 10px 24px rgba(185, 73, 25, 0.25);
}

.btn-outline {
  border: 1px solid rgba(195, 121, 31, 0.35);
  color: #9b4f16;
}

.hero {
  padding: 4.8rem 0 3.2rem;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: start;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: #9f5717;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(2.25rem, 4.1vw, 4.2rem);
  background: linear-gradient(100deg, var(--brand-red) 10%, #ee6020 45%, var(--brand-gold) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.9rem;
}

.hero-subtitle {
  font-size: clamp(1.18rem, 2.1vw, 1.52rem);
  color: #7b3d0b;
  margin: 0 0 0.9rem;
  font-weight: 600;
}

.hero-copy p {
  margin-top: 0;
}

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

.hero-panel {
  background:
    linear-gradient(172deg, rgba(255, 245, 228, 0.9), rgba(255, 255, 255, 0.98)),
    var(--surface);
  border: 1px solid rgba(216, 162, 58, 0.4);
  border-radius: 28px;
  padding: 1.5rem 1.45rem;
  box-shadow: var(--shadow-soft);
}

.hero-photo {
  margin: 0 0 1rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 162, 58, 0.38);
}

.hero-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hero-panel h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  margin-bottom: 0.65rem;
}

.hero-panel ul {
  margin: 0.95rem 0 0;
  padding-left: 1.2rem;
}

.hero-panel li {
  margin-bottom: 0.35rem;
}

.intro,
.market,
.pillars,
.pricing,
.workflow,
.faq {
  padding: 3.85rem 0;
}

.intro-card {
  border: 1px solid rgba(216, 162, 58, 0.34);
  border-radius: 24px;
  padding: 1.6rem;
  background: #fff;
  box-shadow: 0 10px 26px rgba(178, 120, 34, 0.09);
}

.intro-card h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-head {
  max-width: 860px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 2.9vw, 2.7rem);
  margin-bottom: 0.65rem;
}

.section-head p {
  margin-top: 0;
  color: var(--muted);
}

.market-grid,
.pillar-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.pillar-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(192, 126, 42, 0.08);
}

.stat-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.85rem;
}

.stat-card h3,
.pillar-card h3,
.timeline h3 {
  font-size: 1.18rem;
  color: #8c3f0f;
  margin-bottom: 0.6rem;
}

.stat-card ul,
.pillar-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.stat-card li,
.pillar-card li {
  margin-bottom: 0.33rem;
}

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

.pillar-media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.9rem;
}

.sample-box {
  margin-top: 0.9rem;
  border: 1px solid rgba(217, 21, 38, 0.2);
  border-radius: 14px;
  padding: 0.8rem;
  background: linear-gradient(160deg, rgba(255, 240, 242, 0.65), rgba(255, 252, 245, 0.95));
}

.sample-box p {
  margin: 0.18rem 0;
}

.warning {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-left: 3px solid #cb5b16;
  background: rgba(255, 245, 228, 0.75);
  border-radius: 0 10px 10px 0;
}

.table-wrap {
  margin-top: 1.3rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.pricing-photo {
  margin: 1.2rem 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.pricing-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

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

thead th {
  text-align: left;
  font-size: 0.92rem;
  color: #fff;
  padding: 0.95rem 1rem;
  background: linear-gradient(100deg, var(--brand-red-deep), #cd4316, var(--brand-gold));
}

tbody td {
  padding: 0.88rem 1rem;
  border-top: 1px solid var(--line);
}

.pricing-note {
  margin-top: 0.95rem;
  border: 1px solid rgba(216, 162, 58, 0.36);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255, 253, 248, 0.9), rgba(255, 244, 226, 0.7));
  padding: 1rem;
}

.pricing-note p {
  margin: 0.45rem 0;
}

.timeline {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.timeline li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 8px 18px rgba(175, 108, 35, 0.08);
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, var(--brand-red), var(--brand-gold));
}

.timeline p {
  margin: 0.3rem 0 0;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.92rem 1rem;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #7f3508;
}

.faq-list p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.footer {
  margin-top: 0.8rem;
  padding: 2.4rem 0 1rem;
  border-top: 1px solid rgba(216, 162, 58, 0.35);
  background: linear-gradient(180deg, #fff, rgba(255, 249, 241, 0.75));
}

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

.footer-logo {
  width: min(340px, 100%);
  margin-bottom: 0.6rem;
}

.footer-tagline {
  font-weight: 700;
  color: #9c4110;
}

.contact-list h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.contact-list p {
  margin: 0.24rem 0;
}

.contact-list a:hover {
  color: var(--brand-red);
}

.copyright {
  margin: 1.6rem auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .pillar-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1160px, calc(100% - 1.1rem));
  }

  .topbar .btn {
    display: none;
  }

  .hero,
  .intro,
  .market,
  .pillars,
  .pricing,
  .workflow,
  .faq {
    padding: 3rem 0;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }

  .stat-card img,
  .pillar-media,
  .pricing-photo img {
    height: 200px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}
