/*
 * vim: expandtab filetype=css
 */
:root {
  --background: #07111f;
  --background-light: #0d1b2d;
  --card: #102238;
  --card-hover: #142b46;
  --text: #f4f8fc;
  --muted: #9fb2c7;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #7df2c5;
  --accent-dark: #071b20;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
  "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--text);
}

.nav-button,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-button {
  color: var(--accent-dark);
  background: var(--accent);
}

.button:hover,
.nav-button:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 110px 0 100px;
  background:
  radial-gradient(circle at 75% 20%, rgba(125, 242, 197, 0.12), transparent 28%),
  linear-gradient(135deg, #07111f 0%, #0d1d31 100%);
}

.hero-grid,
.ebook-grid,
.partner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 4.2rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin: 8px 0 14px;
  font-size: 1.45rem;
}

.hero-text {
  max-width: 580px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-primary {
  color: var(--accent-dark);
  background: var(--accent);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: transparent;
}

.hero-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, #122b43, #0b1728);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.chart-line {
  height: 150px;
  margin-bottom: 28px;
  background:
  linear-gradient(145deg, transparent 47%, var(--accent) 48%, var(--accent) 49%, transparent 50%),
  linear-gradient(165deg, transparent 51%, rgba(125, 242, 197, 0.35) 52%, rgba(125, 242, 197, 0.35) 53%, transparent 54%);
  border-bottom: 1px solid var(--line);
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.metric:last-child {
  border-bottom: 0;
}

.metric span {
  color: var(--muted);
}

.metric strong {
  text-align: right;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--background-light);
}

.trust-items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.section-heading > p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
}

.article-card:hover {
  background: var(--card-hover);
}

.article-card p {
  color: var(--muted);
}

.article-date {
  color: var(--accent) !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-author {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.read-more {
  color: var(--accent);
  font-weight: 800;
}

.empty-state {
  padding: 40px;
  border: 1px dashed var(--line);
  color: var(--muted);
}

.ebook-section,
.partner-section {
  padding: 100px 0;
  background: var(--background-light);
}

.ebook-cover {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: var(--accent-dark);
  background: var(--accent);
  border-radius: 12px;
  transform: rotate(-2deg);
}

.ebook-cover span {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.ebook-cover strong {
  margin: 12px 0;
  font-size: 3.4rem;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.ebook-cover small {
  max-width: 230px;
  font-weight: 700;
}

.check-list {
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  margin: 10px 0;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--accent);
}

.small-print {
  color: var(--muted);
  font-size: 0.8rem;
}

.article-page {
  padding: 90px 0 120px;
}

.article-container {
  max-width: 850px;
}

.article-container h1 {
  margin-bottom: 50px;
		font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.article-content {
  color: #dce7f1;
  font-size: 1.1rem;
}

.article-content h2 {
  margin-top: 50px;
  font-size: 2rem;
}

.article-content h3 {
  margin-top: 35px;
}

.article-content a {
  color: var(--accent);
  text-decoration: underline;
}

.article-content blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  background: var(--card);
}

.article-cta {
  margin-top: 70px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 800px) {
  .nav {
  align-items: flex-start;
  padding: 18px 0;
  flex-direction: column;
  }

  nav {
  width: 100%;
  flex-wrap: wrap;
  gap: 14px;
  }

  .hero {
  padding: 75px 0;
  }

  .hero-grid,
  .ebook-grid,
  .partner-grid {
  grid-template-columns: 1fr;
  gap: 45px;
  }

  .section-heading {
  display: block;
  }

  .section-heading > p {
  margin-top: 20px;
  }

  .article-grid {
  grid-template-columns: 1fr;
  }

  .trust-items,
  .footer-grid {
  flex-direction: column;
  display: flex;
  }
}

.legal-page {
  padding: 90px 0 120px;
}

.legal-container {
  max-width: 850px;
}

.legal-container h1 {
  max-width: 800px;
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.legal-updated {
  margin: 0 0 52px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content {
  color: #dce7f1;
  font-size: 1.05rem;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.legal-content h3 {
  margin-top: 32px;
}

.legal-content p {
  margin: 0 0 22px;
}

.legal-content ul {
  margin: 0 0 28px;
  padding-left: 24px;
}

.legal-content li {
  margin: 10px 0;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--text);
}

.contact-address {
  margin: 0 0 28px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

@media (max-width: 800px) {
  .footer-links {
    justify-content: flex-start;
  }
}
.contact-form {
  max-width: 620px;
  margin-top: 2rem;
}

.contact-form .form-field {
  margin: 1.25rem 0;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 0.75rem;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  font: inherit;
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form button {
  padding: 0.75rem 1.25rem;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  font: inherit;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus {
  opacity: 0.7;
}

.form-success,
.form-error {
  padding: 0.75rem;
  border: 1px solid currentColor;
}

.form-error {
  color: #a33;
  border-color: #a33;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
