:root {
  --bg: #f4f1ea;
  --paper: #fffdf8;
  --ink: #14201c;
  --muted: #5b6763;
  --line: #d9d3c4;
  --green: #0b3b2e;
  --green-deep: #072a21;
  --gold: #b8952e;
  --gold-soft: #e9dcb4;
  --danger: #a33a2a;
  --radius: 14px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.5 "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green);
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
.top {
  background: var(--green);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}
.top-row {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font: 700 18px/1 Georgia, "Times New Roman", serif;
}
.wordmark {
  font: 600 20px/1 Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
}
.nav {
  display: flex;
  gap: 22px;
  margin-left: 12px;
}
.nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover {
  border-bottom-color: var(--gold);
  color: #fff;
}
.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.link-quiet {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  text-decoration: none;
}
.pill {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

/* Main */
.main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  padding: 64px 0 72px;
  align-items: start;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
h1 {
  margin: 0 0 14px;
  font: 600 44px/1.1 Georgia, "Times New Roman", serif;
  color: var(--green-deep);
}
.lede {
  margin: 0 0 26px;
  max-width: 52ch;
  color: var(--muted);
}
.perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}
.perks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.dot {
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.notice {
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
  padding: 14px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  color: var(--green-deep);
}

/* Card */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  box-shadow: 0 18px 40px rgba(11, 59, 46, 0.09);
}
.card h2 {
  margin: 0 0 18px;
  font: 600 26px/1.2 Georgia, "Times New Roman", serif;
  color: var(--green-deep);
}
.field {
  display: block;
  margin-bottom: 16px;
}
.field span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font: inherit;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 59, 46, 0.14);
}
/* The password field is a masked text input, so the browser never offers to save it. */
.masked {
  -webkit-text-security: disc;
}
.remember {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin: 4px 0 14px;
}
.msg {
  min-height: 1.4em;
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--danger);
}
.btn {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font: 600 16px/1 inherit;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover {
  background: var(--green-deep);
}
.btn:active {
  transform: translateY(1px);
}
.btn[disabled] {
  opacity: 0.6;
  cursor: default;
}
.links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
}
.fine {
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Download strip */
.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 56px;
  padding: 26px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.download h2 {
  margin: 0 0 8px;
  font: 600 26px/1.2 Georgia, "Times New Roman", serif;
  color: var(--green-deep);
}
.download p:last-child {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
}
.btn-download {
  display: inline-flex;
  align-items: center;
  width: auto;
  flex: none;
  padding: 0 24px;
  text-decoration: none;
}
@media (max-width: 860px) {
  .download {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 36px;
  }
  .btn-download {
    justify-content: center;
  }
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  font-size: 13px;
  color: var(--muted);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot nav {
  display: flex;
  gap: 18px;
}
.foot a {
  color: var(--muted);
  text-decoration: none;
}
.foot a:hover {
  color: var(--green);
}

@media (max-width: 860px) {
  .nav,
  .link-quiet {
    display: none;
  }
  .main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 0 56px;
  }
  h1 {
    font-size: 34px;
  }
}
