:root {
  --bg: #f8f3ea;
  --paper: #fffdf8;
  --paper-soft: #f1eadf;
  --ink: #263126;
  --muted: #6a746b;
  --line: #ded5c8;
  --green: #2f6f4e;
  --green-dark: #204a35;
  --gold: #d99b45;
  --red: #9e4d3f;
  --shadow: 0 24px 80px rgba(49, 44, 36, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 10% 12%, rgba(217,155,69,.18), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(47,111,78,.14), transparent 32%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-height: 100%;
}

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  padding: 28px 0 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff7e8;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 10px 26px rgba(47,111,78,.25);
}

.brand-title {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.navlinks a,
.lang a {
  border: 1px solid var(--line);
  background: rgba(255,253,248,.72);
  color: var(--green-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.navlinks a.active,
.lang a.active {
  background: var(--green);
  color: #fff7e8;
  border-color: var(--green);
}

.lang {
  display: flex;
  gap: 6px;
  margin-left: 8px;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
  padding: 30px 0 56px;
}

.panel {
  background: rgba(255,253,248,.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-main {
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.hero-main:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(217,155,69,.18);
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 900;
}

h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .94;
  letter-spacing: -.07em;
  max-width: 760px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.info-card {
  background: rgba(241,234,223,.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.info-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.side {
  display: grid;
  gap: 18px;
}

.login {
  padding: 34px;
}

.login h2 {
  margin: 8px 0 10px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.login p {
  color: var(--muted);
  line-height: 1.6;
}

.form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 900;
}

input {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 15px 15px;
  font: inherit;
  color: var(--ink);
  outline: none;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47,111,78,.12);
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check input {
  width: auto;
  margin: 0;
}

button,
.button {
  border: 0;
  background: var(--green);
  color: #fff7e8;
  border-radius: 15px;
  padding: 15px 18px;
  font-weight: 900;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 12px 26px rgba(47,111,78,.22);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.button.secondary {
  background: #fffdf8;
  color: var(--green-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}

.notice {
  margin-top: 18px;
  background: #fff7dc;
  border: 1px solid #ead397;
  color: #72501d;
  border-radius: 16px;
  padding: 15px;
  line-height: 1.55;
  font-size: 14px;
}

.message {
  display: none;
  margin-top: 14px;
  border-radius: 14px;
  padding: 13px 14px;
  background: #eef7ed;
  border: 1px solid #bdd7c1;
  color: var(--green-dark);
  font-weight: 750;
}

.status-card {
  padding: 26px;
  display: grid;
  gap: 18px;
}

.status-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 12px;
  background: #e7f3e6;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 13px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2c9b57;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.timeline-item strong {
  color: var(--ink);
}

.page {
  padding: 34px 0 64px;
}

.page-card {
  padding: 42px;
}

.page-card h1 {
  font-size: clamp(38px, 5vw, 64px);
}

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

.content-box {
  border: 1px solid var(--line);
  background: rgba(241,234,223,.55);
  border-radius: 18px;
  padding: 20px;
}

.content-box h3 {
  margin: 0 0 10px;
}

.content-box p,
.page-card p {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  font-size: 13px;
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

  .info-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .login,
  .page-card {
    padding: 26px;
  }

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

  .navlinks {
    width: 100%;
  }
}
