:root {
  --bg: #fff7ec;
  --paper: #ffffff;
  --ink: #1f1b16;
  --muted: #6a5a4e;
  --line: #f3d0a3;
  --accent: #1d9bd1;
  --accent2: #f0ad4e;
  --note: #fff0d6;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg), #ffffff);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.mono {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.98em;
}

.beta {
  background: var(--accent2);
  color: #2b1c0b;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 10px 12px;
  font-size: 13px;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.kicker {
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

h1 {
  margin: 0 0 14px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.accent {
  color: #79bcd7;
}

.lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 42rem;
}

.cta {
  background: var(--paper);
  border-radius: 12px;
  border: 2px solid #e9e0d4;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(107, 84, 62, 0.12);
  max-width: 520px;
}

.cta-title {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}

.form {
  display: grid;
  gap: 10px;
}

.field input {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #dcd3c7;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.field input:focus {
  border-color: #9acfe6;
  box-shadow: 0 0 0 3px rgba(29, 155, 209, 0.15);
}

.btn {
  background: #6aa7d7;
  border: 0;
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.micro {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 12px;
  color: #6a5a4e;
  text-align: center;
}

.msg {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 13px;
  min-height: 18px;
  text-align: center;
  color: #2b1c0b;
}

.msg.ok {
  color: #2a6b2f;
}

.msg.err {
  color: #8a1d1d;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.pup-frame {
  background: #ffffff;
  border: 3px solid #dcd3c7;
  border-radius: 14px;
  padding: 10px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(107, 84, 62, 0.12);
}

.pup {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-title {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 18px;
  margin: 38px 0 16px;
  color: #1f1b16;
}

.features {
  margin-top: 20px;
}

.grid3 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border: 1px solid #eee3d6;
  border-radius: 12px;
  padding: 14px;
}

.icon {
  font-size: 18px;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 14px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.note {
  margin: 26px 0 6px;
  background: var(--note);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(107, 84, 62, 0.12);
}

.note-title {
  margin: 0 0 10px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: #b45309;
  font-size: 16px;
}

.note-body p {
  margin: 0 0 10px;
  color: #2f2a24;
  font-size: 14px;
  line-height: 1.55;
}

.note-body .sig {
  margin-top: 12px;
  font-family: "Trebuchet MS", Arial, sans-serif;
}

.samples {
  margin-top: 14px;
}

.issue-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: #ffffff;
  border: 1px solid #eee3d6;
  border-radius: 12px;
  padding: 12px;
}

.issue {
  background: #ffffff;
  border: 1px solid #eee3d6;
  border-radius: 12px;
  padding: 12px;
}

.issue-top img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #eee3d6;
}

.issue h3 {
  margin: 10px 0 8px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.issue ul {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.issue .link {
  display: inline-block;
  background: #f0ad4e;
  color: #2b1c0b;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 12px;
}

.faq {
  margin-top: 10px;
}

.qa {
  background: #ffffff;
  border: 1px solid #eee3d6;
  border-radius: 12px;
  padding: 14px;
}

.q {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  margin-top: 10px;
}

.q:first-child {
  margin-top: 0;
}

.a {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.55;
}

.foot {
  margin-top: 22px;
  padding-top: 10px;
}

.foot-inner {
  border-top: 1px solid #eee3d6;
  padding-top: 14px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--muted);
  font-size: 12px;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    order: -1;
    justify-content: flex-start;
  }
  .pup-frame {
    max-width: 360px;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .issue-row {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 38px;
  }
}
