
:root {
  --bg: #f5fbfa;
  --paper: #ffffff;
  --ink: #102523;
  --muted: #607571;
  --line: #d8e9e6;
  --teal: #b9f3ea;
  --teal-dark: #0f4a47;
  --warning: #fff8df;
  --shadow: 0 18px 55px rgba(16, 37, 35, .08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(185,243,234,.45), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255,248,223,.65), transparent 30%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: var(--teal-dark); font-weight: 800; text-decoration: none; }
a:hover { text-decoration: underline; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 14px; background: var(--teal); color: var(--teal-dark); font-weight: 950;
}
.brand strong, .brand span { display: block; }
.brand span, .muted, small { color: var(--muted); }
.nav { display: flex; flex-wrap: wrap; gap: 12px; }
.nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #f8fffe;
}
.hero {
  max-width: 1160px;
  margin: 34px auto 18px;
  padding: 0 22px;
}
.hero-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 54px);
}
.kicker {
  color: #0d7c66;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 950;
}
h1 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.06em;
  margin: 10px 0 16px;
}
h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.04em;
  margin: 0 0 12px;
}
h3 { margin: 0 0 8px; }
.grid {
  max-width: 1160px;
  margin: 18px auto 42px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card, .section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(185,243,234,.35), transparent 34%),
    #ffffff;
  box-shadow: 0 10px 30px rgba(16,37,35,.04);
  padding: 22px;
}
.section {
  max-width: 960px;
  margin: 18px auto;
}
ul { padding-left: 22px; }
li { margin: 7px 0; }
.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #e9fbf3;
  color: var(--teal-dark);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.notice {
  border: 1px solid rgba(216,174,49,.35);
  background: var(--warning);
  color: #6f4f00;
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 800;
}
.footer {
  max-width: 1160px;
  margin: 44px auto 20px;
  padding: 24px 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
@media (max-width: 860px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
}

/* === Support ticket form polish === */
.support-ticket-section {
  margin-top: 8px;
}

.support-ticket-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.ticket-grid {
  display: grid;
  gap: 16px;
}

.ticket-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ticket-grid-3 {
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field span {
  font-size: 14px;
  font-weight: 800;
  color: #123b37;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(12, 109, 96, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: #173634;
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.form-field input,
.form-field select {
  min-height: 48px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.45;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(12, 109, 96, 0.42);
  box-shadow: 0 0 0 4px rgba(123, 230, 207, 0.22);
}

.form-field-wide {
  width: 100%;
}

.support-ticket-help {
  font-size: 13px;
  line-height: 1.5;
  color: #5f7874;
  margin-top: -4px;
}

.support-ticket-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.support-ticket-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  min-height: 48px;
  background: linear-gradient(135deg, #7be6cf 0%, #baf8ea 52%, #9df0dc 100%);
  color: #0e2c29;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(74, 196, 168, 0.16);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.support-ticket-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(74, 196, 168, 0.22);
  filter: saturate(1.03);
}

.support-ticket-submit:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .ticket-grid-2,
  .ticket-grid-3 {
    grid-template-columns: 1fr;
  }
}


.public-safety-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px auto;
  max-width: 1120px;
  padding: 12px 16px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 18px;
  background: rgba(240, 253, 250, 0.92);
  color: #0f4a47;
  font-size: 14px;
}

.public-safety-strip .badge {
  font-weight: 800;
}
