* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #1a1a2e;
  color: #ccc;
  line-height: 1.6;
}

a { color: #6366f1; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

nav {
  border-bottom: 1px solid #333;
  padding: 16px 24px;
}
nav .inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
nav .nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
nav .logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
nav a { color: #888; font-size: 14px; }
nav a:hover { color: #fff; }

h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 32px 0 12px;
}
h3 {
  font-size: 16px;
  font-weight: 600;
  color: #a5b4fc;
  margin: 16px 0 6px;
}

p { margin-bottom: 12px; }

.subtitle {
  font-size: 18px;
  color: #888;
  margin-bottom: 32px;
}

.last-updated {
  font-size: 12px;
  color: #888;
  margin-bottom: 24px;
}

ul {
  margin: 8px 0 12px 20px;
}
ul li {
  margin-bottom: 6px;
}
ul li::marker {
  color: #6366f1;
}

.hero {
  text-align: center;
  padding: 80px 24px;
}
.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}
.hero .subtitle {
  font-size: 20px;
  max-width: 500px;
  margin: 0 auto 32px;
}
.hero .cta {
  display: inline-block;
  padding: 14px 32px;
  background: #6366f1;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}
.hero .cta:hover {
  background: #4f46e5;
  text-decoration: none;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.feature {
  background: #16213e;
  border-radius: 12px;
  padding: 24px;
}
.feature h3 {
  color: #fff;
  margin: 0 0 8px;
}
.feature p {
  font-size: 14px;
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 14px;
}
th, td {
  padding: 10px 14px;
  border: 1px solid #333;
  text-align: left;
}
th {
  background: #16213e;
  color: #fff;
  font-weight: 600;
}
td {
  color: #ccc;
}

footer {
  border-top: 1px solid #333;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: #666;
}
footer a { color: #888; margin: 0 12px; }

/* Form styles */
form {
  margin-top: 24px;
}
label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
  margin-top: 16px;
}
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 16px;
  background: #16213e;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
}
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1;
}
textarea { min-height: 100px; resize: vertical; }
button[type="submit"] {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
button[type="submit"]:hover {
  background: #b91c1c;
}
.note {
  font-size: 13px;
  color: #888;
  margin-top: 16px;
}
