:root {
  --ink: #2b2620;
  --ink-soft: #6b6358;
  --paper: #fbf3e6;
  --paper-2: #f1e2c8;
  --paper-3: #ead5ae;
  --accent: #d9643a;
  --gold: #e8a33d;
  --line: rgba(43, 38, 32, 0.14);
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--sans);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

a:hover {
  color: var(--ink);
}

button {
  font-family: var(--sans);
}

input, textarea {
  font-family: var(--sans);
}

input::placeholder, textarea::placeholder {
  color: var(--ink-soft);
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 32px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* NAV */
.site-nav {
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--ink);
  padding: 9px 18px;
  border-radius: 100px;
}

/* HERO */
.hero {
  padding-top: 88px;
  padding-bottom: 96px;
}

.hero-row {
  display: flex;
  gap: 56px;
  align-items: center;
}

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

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--paper-2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.08;
}

.hero-copy > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 480px;
}

.hero-art {
  flex-shrink: 0;
  width: 380px;
}

/* SIGNUP FORM */
.signup-form {
  margin-top: 34px;
  max-width: 480px;
}

.signup-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.signup-row input[type="text"],
.signup-row input[type="email"] {
  flex: 1 1 160px;
  min-width: 140px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: var(--ink);
}

.btn-primary {
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:disabled {
  background: var(--paper-3);
  color: var(--ink-soft);
  cursor: not-allowed;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}

.consent-row input[type="checkbox"] {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.fine-print {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
}

.form-error {
  color: var(--accent);
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

.form-error.visible {
  display: block;
}

.confirmation-card {
  margin-top: 34px;
  padding: 18px 20px;
  background: var(--paper-2);
  border-radius: 14px;
  border: 1px solid var(--line);
  max-width: 440px;
}

.confirmation-card .title {
  font-weight: 600;
}

.confirmation-card .sub {
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 4px;
}

/* STORY */
.story {
  width: 100%;
  background: var(--paper-2);
}

.story-inner {
  padding-block: 64px;
  display: flex;
  gap: 40px;
  max-width: 760px;
}

.story-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 4px;
  flex-shrink: 0;
}

.story p {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
}

/* FEATURES */
.features {
  padding-block: 88px;
}

.features .intro {
  max-width: 640px;
  margin-bottom: 16px;
}

.features h2 {
  font-size: 34px;
}

.features .intro p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.6;
}

.selected-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
}

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

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.feature-card input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.feature-card .title {
  font-weight: 600;
  font-size: 16px;
}

.feature-card .desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.5;
}

.feature-card .other-input {
  margin-top: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: var(--ink);
}

.feature-card .other-input:disabled {
  background: transparent;
  color: var(--ink-soft);
}

.priorities-submit {
  margin-top: 22px;
}

/* FEEDBACK */
.feedback-section {
  width: 100%;
  background: var(--ink);
}

.feedback-inner {
  padding-block: 80px;
  max-width: 640px;
}

.feedback-inner h2 {
  color: var(--paper);
  font-size: 30px;
}

.feedback-inner > p {
  color: rgba(251, 243, 230, 0.7);
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.6;
}

.feedback-form {
  margin-top: 26px;
}

.feedback-form textarea {
  width: 100%;
  max-width: 640px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(251, 243, 230, 0.25);
  background: rgba(251, 243, 230, 0.06);
  color: var(--paper);
  font-size: 15px;
  resize: vertical;
}

.btn-gold {
  margin-top: 14px;
  padding: 13px 22px;
  border: none;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

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

.feedback-confirmation {
  margin-top: 26px;
  padding: 18px 20px;
  background: rgba(251, 243, 230, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(251, 243, 230, 0.18);
}

.feedback-confirmation .title {
  color: var(--paper);
  font-weight: 600;
}

.feedback-confirmation .sub {
  color: rgba(251, 243, 230, 0.65);
  font-size: 15px;
  margin-top: 4px;
}

/* FOOTER */
.site-footer {
  width: 100%;
}

.footer-inner {
  padding-block: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-inner, .footer-links {
  font-size: 14px;
  color: var(--ink-soft);
}

.footer-links a {
  text-decoration: underline;
}

/* COOKIE BANNER */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 50;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar p {
  font-size: 14px;
  max-width: 640px;
  margin: 0;
}

.cookie-bar a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.cookie-decline {
  border: 1px solid rgba(251, 243, 230, 0.4);
  background: transparent;
  color: var(--paper);
}

.cookie-accept {
  border: none;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

/* PRIVACY PAGE */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding-inline: 32px;
}

.legal-wrap h1 {
  font-size: 36px;
}

.legal-wrap h2 {
  font-size: 22px;
  margin-top: 44px;
  margin-bottom: 12px;
}

.legal-wrap p, .legal-wrap li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

.legal-wrap ul {
  padding-left: 20px;
  margin: 10px 0;
}

.legal-wrap li {
  margin-bottom: 6px;
}

.legal-note {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

@media (max-width: 720px) {
  .hero-row {
    flex-direction: column-reverse;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-art {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .nav-row, .wrap, .legal-wrap {
    padding-inline: 20px;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .signup-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
  }
}
