:root {
  --forest: #0f5132;
  --deep: #102820;
  --leaf: #2f7d4f;
  --gold: #f2bd32;
  --soil: #7a4420;
  --clay: #c96f38;
  --paper: #fbfaf4;
  --mist: #eef4ee;
  --ink: #1c2721;
  --muted: #5f6f66;
  --line: #dbe4d8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 40, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  font-weight: 800;
  letter-spacing: 0;
  flex: 1 0 auto;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16, 40, 32, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.language-toggle button {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: var(--mist);
  text-decoration: none;
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-toggle button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-toggle button.is-active {
  background: var(--forest);
  color: var(--white);
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(242, 189, 50, 0.2), transparent 34%),
    linear-gradient(135deg, var(--deep), var(--forest) 58%, #174a38);
  color: var(--white);
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: calc(100vh - 72px);
  padding: 72px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 56px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #ffe9a6;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  color: var(--deep);
}

h3 {
  font-size: 1.16rem;
  color: var(--deep);
}

.hero-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: #271d04;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button.light {
  background: var(--forest);
  color: var(--white);
}

.button.ghost {
  border-color: var(--line);
  color: var(--deep);
  background: var(--white);
}

.app-visual {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.app-icon-large {
  width: min(320px, 72vw);
  aspect-ratio: 1;
  border-radius: 32px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.review-note {
  width: min(360px, 100%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--mist);
}

.section.lead-section {
  padding-top: 56px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 40, 32, 0.06);
}

.card.highlight {
  border-color: rgba(242, 189, 50, 0.65);
  background: #fff9e6;
}

.card p,
.policy-block p,
.policy-block li {
  color: var(--muted);
}

.card p:last-child,
.policy-block p:last-child {
  margin-bottom: 0;
}

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

.metric-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.metric-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--clay);
  flex: 0 0 auto;
}

.policy-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 76px;
}

.policy-title {
  padding: 34px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.policy-title h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.policy-title p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.policy-block {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.policy-block h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.policy-block h3 {
  margin-top: 22px;
}

.policy-block ul,
.policy-block ol {
  padding-left: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: var(--white);
}

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

th {
  background: var(--mist);
  color: var(--deep);
}

.callout {
  padding: 18px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fff9e6;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--deep);
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

[data-lang] {
  display: none;
}

html[data-locale="en"] [data-lang="en"],
html[data-locale="id"] [data-lang="id"] {
  display: revert;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

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

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .policy-title,
  .policy-block,
  .card {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .action-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .nav-links a,
  .language-toggle button {
    font-size: 0.88rem;
    padding-inline: 10px;
  }
}
