:root {
  --bg: #071411;
  --bg-soft: #0f211b;
  --panel: #ffffff;
  --text: #17211c;
  --muted: #65726b;
  --line: #dbe8df;
  --primary: #55c879;
  --primary-dark: #1ab993;
  --primary-soft: #e9f9ed;
  --accent: #7bdb6d;
  --warning-bg: #fff7df;
  --warning-border: #f0b84e;
  --warning-text: #735214;
  --shadow: 0 24px 70px rgba(3, 29, 20, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(85, 200, 121, 0.2), transparent 34rem),
    linear-gradient(180deg, var(--bg), #10241d 34rem, #f5faf6 34rem);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 232, 223, 0.14);
  background: rgba(7, 20, 17, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner,
.page-shell,
.footer-inner {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand:hover,
.footer-brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px;
}

.brand-text {
  font-size: 1.28rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #d2ddd6;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(85, 200, 121, 0.16);
  color: #ffffff;
  text-decoration: none;
}

.page-shell {
  padding: 64px 0 72px;
}

.intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-copy {
  max-width: 710px;
  margin-bottom: 0;
  color: #d8e5dc;
  font-size: 1.08rem;
}

.updated {
  flex: 0 0 auto;
  margin-bottom: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #edf6ef;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.content-panel {
  scroll-margin-top: 112px;
  margin-bottom: 28px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(85, 200, 121, 0.18);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section-heading {
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.content-panel > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.policy-list {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.policy-item {
  padding-left: 18px;
  border-left: 4px solid var(--primary);
}

.policy-item h3,
.notice h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.policy-item p,
.policy-item ul,
.notice ul {
  margin-bottom: 0;
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 8px;
}

strong {
  color: var(--text);
}

.notice {
  margin: 28px 0;
  padding: 20px;
  border-left: 5px solid var(--warning-border);
  border-radius: 8px;
  background: var(--warning-bg);
}

.notice h3 {
  color: var(--warning-text);
}

.notice ul {
  color: #805f1f;
}

.delete-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: #2f3c35;
  font-size: 0.94rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfded4;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(85, 200, 121, 0.18);
}

.submit-button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #052017;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  letter-spacing: 0;
  padding: 0 22px;
  box-shadow: 0 14px 32px rgba(26, 185, 147, 0.28);
  transition:
    filter 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.submit-button:hover {
  filter: saturate(1.08) brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(26, 185, 147, 0.34);
}

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

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(219, 232, 223, 0.12);
  background: #071411;
  color: #d8e5dc;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  justify-content: center;
  margin-bottom: 10px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 5px;
}

.site-footer p {
  margin-bottom: 12px;
  color: #aabbb1;
}

.site-footer small {
  color: #73827a;
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 14px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link {
    flex: 1 1 150px;
    justify-content: center;
  }

  .page-shell {
    padding-top: 42px;
  }

  .intro {
    display: grid;
    gap: 18px;
  }

  .updated {
    width: fit-content;
    margin-bottom: 0;
  }
}

@media (max-width: 460px) {
  .header-inner,
  .page-shell,
  .footer-inner {
    width: min(100% - 22px, 1080px);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 1.12rem;
  }

  .content-panel {
    padding: 20px;
  }

  .policy-item {
    padding-left: 14px;
  }
}
