:root {
  --bg: #cbb57a;
  --panel: #9e8c5c;
  --panel-deeper: #6f6442;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.86);
  --muted2: rgba(255, 255, 255, 0.72);
  --accent: rgba(35, 35, 35, 0.55);

  --container: 980px;
  --radius-lg: 46px;
  --radius-md: 34px;
  --radius-sm: 18px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --border-soft: 1px solid rgba(255, 255, 255, 0.08);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: clamp(44px, 6vw, 72px) 0;
}

.section-tight {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(68px, 7vw, 96px);
}

.site-header {
  padding: 24px 0 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 0.95;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--text);
}

.header-spacer {
  width: 120px;
}

.hero {
  padding: clamp(54px, 7vw, 90px) 0 clamp(36px, 5vw, 60px);
}

.hero-inner {
  text-align: center;
}

.hero-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
}

.hero-accent {
  color: var(--accent);
  font-weight: 800;
}

.hero-subtitle {
  margin: 14px auto 26px;
  max-width: 720px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border: var(--border-soft);
}

.btn:hover {
  background: rgba(0, 0, 0, 0.32);
}

.section-title {
  margin: 0 0 clamp(18px, 3vw, 26px);
  text-align: center;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.feature-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(18px, 3vw, 28px);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 26px);
  box-shadow: var(--shadow);
  border: var(--border-soft);
  align-items: center;
}

.feature-media {
  background: var(--panel-deeper);
  border-radius: var(--radius-sm);
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.feature-media-text {
  font-weight: 800;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-align: left;
  width: 100%;
}

.feature-content {
  padding-right: clamp(6px, 2vw, 18px);
}

.feature-title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.feature-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.mini-card {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  box-shadow: var(--shadow);
  border: var(--border-soft);
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.mini-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.mini-text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  max-width: 310px;
  margin-inline: auto;
}

.site-footer {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.16);
  padding: 18px 0 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.footer-link:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 8px;
}

.copyright {
  color: var(--muted2);
  font-size: 11px;
}

@media (max-width: 820px) {
  .header-spacer {
    display: none;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 220px;
  }

  .feature-media-text {
    font-size: 34px;
  }

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

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