:root {
  color-scheme: dark;
  --green-950: #051611;
  --green-900: #082116;
  --green-800: #0d341f;
  --green-700: #15542b;
  --green-500: #45bc36;
  --gold-500: #e4ae31;
  --gold-300: #f5d46f;
  --cream: #f4f8ee;
  --muted: #cde3c8;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--green-950);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 24% 8%, rgba(69, 188, 54, 0.24), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(245, 212, 111, 0.18), transparent 26rem),
    linear-gradient(180deg, #0b2c1d 0%, #051611 74%);
}

a {
  color: var(--gold-300);
}

.page {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(20px, 4vw, 34px);
}

.brand {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(245, 212, 111, 0.58);
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff;
  background: rgba(8, 33, 22, 0.82);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #8ee046;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-style: italic;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.94;
}

.hero p,
.section-intro {
  color: #eaf6e7;
  font-weight: 700;
  line-height: 1.35;
}

.hero p {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero img {
  width: min(100%, 360px);
  border: 1px solid rgba(245, 212, 111, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.privacy-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.privacy-strip span {
  border: 1px solid rgba(245, 212, 111, 0.52);
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffffff;
  background: rgba(8, 33, 22, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.section {
  margin-top: clamp(28px, 5vw, 54px);
}

.section h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1;
}

.section-intro {
  max-width: 840px;
  margin: 12px 0 0;
  font-size: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.card,
.notice,
.policy-section {
  border: 1px solid rgba(245, 212, 111, 0.38);
  border-radius: 8px;
  background: rgba(5, 24, 15, 0.74);
}

.card,
.notice {
  padding: 16px;
}

.card h3,
.notice h3,
.policy-section h2 {
  color: var(--gold-300);
  font-size: 22px;
  line-height: 1;
}

.card p,
.notice p,
.policy-section p,
.policy-section li {
  color: #eaf6e7;
  font-size: 15px;
  line-height: 1.38;
}

.card p,
.notice p {
  margin: 10px 0 0;
}

.field-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.field-list li {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  padding: 10px;
  color: #eaf6e7;
  background: rgba(16, 66, 31, 0.56);
  font-size: 15px;
  line-height: 1.35;
}

.field-list strong {
  color: var(--gold-300);
}

.notice {
  border-color: rgba(245, 212, 111, 0.56);
  background:
    linear-gradient(135deg, rgba(47, 152, 38, 0.26), rgba(5, 24, 15, 0.84)),
    rgba(5, 24, 15, 0.74);
}

.contact-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid rgba(245, 212, 111, 0.70);
  border-radius: 8px;
  padding: clamp(16px, 2.5vw, 22px);
  background:
    linear-gradient(135deg, rgba(47, 152, 38, 0.34), rgba(5, 24, 15, 0.88)),
    rgba(5, 24, 15, 0.76);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.contact-card h3 {
  color: #ffffff;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
}

.contact-address {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  border: 2px solid rgba(245, 212, 111, 0.78);
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  background: rgba(8, 33, 22, 0.86);
  font-size: clamp(17px, 2.8vw, 23px);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-note {
  margin: 0;
  color: #eaf6e7;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.38;
}

.support-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid rgba(245, 212, 111, 0.48);
  border-radius: 8px;
  padding: clamp(16px, 2.5vw, 22px);
  background: rgba(5, 24, 15, 0.78);
}

.support-form h3 {
  color: #ffffff;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
}

.support-form p {
  margin: 0;
  color: #eaf6e7;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.38;
}

.support-return {
  display: grid;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(245, 212, 111, 0.44);
  border-radius: 8px;
  padding: 12px;
  background: rgba(16, 66, 31, 0.46);
}

.support-return button {
  justify-self: start;
  min-height: 40px;
  border: 1px solid rgba(245, 212, 111, 0.76);
  border-radius: 999px;
  padding: 8px 15px;
  color: #ffffff;
  background: rgba(8, 33, 22, 0.90);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.support-return span {
  color: #dbeeda;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

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

.support-form label,
.support-form fieldset {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  color: #dbeeda;
  font-size: 13px;
  font-weight: 900;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(245, 212, 111, 0.50);
  border-radius: 6px;
  padding: 10px;
  color: #122915;
  background: #f7d692;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
}

.support-form textarea {
  min-height: 104px;
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.checkbox-line {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(245, 212, 111, 0.38);
  border-radius: 8px;
  padding: 12px;
  background: rgba(16, 66, 31, 0.56);
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: #45bc36;
}

.checkbox-line span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.snapshot-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(245, 212, 111, 0.70);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(47, 152, 38, 0.24), rgba(5, 24, 15, 0.86)),
    rgba(5, 24, 15, 0.78);
}

.snapshot-panel[hidden] {
  display: none;
}

.snapshot-panel h4 {
  margin: 0;
  color: #ffffff;
  font-size: 21px;
  font-style: italic;
  line-height: 1;
}

.snapshot-panel p {
  margin: 0;
}

.snapshot-review {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(245, 212, 111, 0.34);
  border-radius: 6px;
}

.snapshot-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1fr);
  gap: 8px;
  padding: 9px 10px;
  background: rgba(16, 66, 31, 0.58);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.28;
}

.snapshot-row span:first-child {
  color: var(--gold-300);
  font-weight: 900;
}

.snapshot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.snapshot-actions button {
  min-height: 40px;
  border: 1px solid rgba(245, 212, 111, 0.70);
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(8, 33, 22, 0.86);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.snapshot-actions button:first-child {
  background: #2f9826;
}

.snapshot-status {
  color: var(--gold-300);
  font-size: 14px;
  font-weight: 900;
}

.no-attachments {
  border-color: rgba(245, 212, 111, 0.64);
  background: rgba(89, 70, 25, 0.32);
}

.submit-preview {
  justify-self: start;
  min-height: 46px;
  border: 2px solid rgba(245, 212, 111, 0.82);
  border-radius: 999px;
  padding: 10px 20px;
  color: #ffffff;
  background: #2f9826;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.submit-preview:disabled {
  cursor: not-allowed;
  opacity: 0.86;
}

.form-status.error {
  color: #ffde8a;
}

.policy-section {
  margin-top: 14px;
  padding: 16px;
}

.policy-section h2 {
  margin-bottom: 10px;
}

.policy-section ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.footer {
  margin-top: 34px;
  border-top: 1px solid rgba(245, 212, 111, 0.28);
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .hero,
  .card-grid,
  .two-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero img {
    order: -1;
    width: min(100%, 310px);
  }
}

@media (max-width: 520px) {
  .page {
    padding: 14px 8px 28px;
  }

  .top-nav,
  .nav-links {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-strip span,
  .nav-links a,
  .button,
  .contact-address {
    width: 100%;
    text-align: center;
  }

  .snapshot-row {
    grid-template-columns: 1fr;
  }
}
