/*
Theme Name: 0xhack
Theme URI: https://0xhack.fr
Author: Metin
Author URI: https://0xhack.fr
Description: Thème sombre minimaliste orienté hacking pour 0xhack.fr
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: 0xhack
*/

:root {
  --bg: #020617;
  --accent: #22c55e;
  --accent-alt: #06b6d4;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2933;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.7);

  color-scheme: dark;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, #020617 0, #020617 60%, #000 100%);
  background-size: cover;
  background-attachment: fixed;
  background-color: #020617; /* fallback sombre si le gradient ne passe pas */
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--text);
  font-family: system-ui, "Inter", sans-serif;
  line-height: 1.6;
  background: transparent; /* IMPORTANT : pas de fond qui écrase celui de <html> */
}


/* =========================== */
/* HEADER */
/* =========================== */

.site-header {
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  background: rgba(2,6,23,0.92);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.site-logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  background: radial-gradient(circle at 20% 10%, rgba(34,197,94,0.35), rgba(15,23,42,0.9));
  color: var(--accent);
  font-family:"Space Mono", monospace;
}

.site-title {
  margin:0;
  font-size:1.2rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-family:"Space Mono", monospace;
}

.site-title a {
  color:var(--text);
  text-decoration:none;
}

.site-description {
  margin:0;
  font-size:.8rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
}

/* Menu */

.primary-nav ul {
  list-style:none;
  display:flex;
  gap:.75rem;
  margin:0;
  padding:0;
}

.primary-nav a {
  color:var(--muted);
  text-decoration:none;
  font-size:.85rem;
  text-transform:uppercase;
  padding:.3rem .6rem;
  border-radius:999px;
  border:1px solid transparent;
  transition:.18s;
}

.primary-nav a::before {
  content: "> ";
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  opacity: 0.7;
}


.primary-nav a:hover {
  color:var(--accent);
  border-color:rgba(34,197,94,.4);
}

/* Mobile header compact */

@media(max-width:700px) {
  .header-inner {
    flex-direction:column;
    align-items:flex-start;
    gap:.4rem;
  }
  .site-description { display:none; }
  .primary-nav a {
    font-size:.75rem;
    padding:.25rem .55rem;
  }
}


/* =========================== */
/* LAYOUT */
/* =========================== */

.site-main {
  max-width:1100px;
  margin:0 auto;
  padding:1.5rem 1.2rem 2.5rem;
  display:grid;
  grid-template-columns:minmax(0,2.2fr) minmax(0,1fr);
  gap:1.75rem;
}

@media(max-width:900px) {
  .site-main { grid-template-columns:1fr; }
}

/* =========================== */
/* LISTE DES ARTICLES */
/* =========================== */

.post-list {
  display:flex;
  flex-direction:column;
  gap:1.4rem;
}

/* Carte */

.post-card {
  border-radius:var(--radius-lg);
  border:1px solid rgba(15,23,42,0.9);
  background:#020617;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  position:relative;
  padding:0;
}

/* Media image */

.post-card-media {
  position:relative;
}

.post-thumb {
  margin:0;
  line-height:0;
}

.post-thumb img {
  width:100%;
  height:auto;        /* image entière */
  object-fit:contain;
  display:block;
}

/* Overlay texte */

.post-overlay {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:1rem 1.1rem 1.1rem;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.85) 10%,
    rgba(0,0,0,0.55) 90%,
    transparent 100%
  );
  display:flex;
  flex-direction:column;
  gap:.45rem;
}

.post-card-header {
  display:flex;
  flex-direction:column;
}

.post-meta {
  font-size:.75rem;
  color:var(--muted);
  display:flex;
  gap:.4rem;
  flex-wrap:wrap;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.post-meta span::before {
  content: "> ";
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  color: var(--accent-alt);
}


.post-title {
  margin:0;
  font-size:1.15rem;
}

.post-title a {
  color:var(--text);
  text-decoration:none;
}

.post-title a:hover {
  color:var(--accent);
}

.post-excerpt {
  font-size:.9rem;
  color:var(--muted);
  max-height:4.6em; /* ~3 lignes */
  overflow:hidden;
}

/* Hover */

.post-card:hover .post-thumb img {
  transform:scale(1.02);
  transition:transform .28s ease-out;
}


/* =========================== */
/* PAGE ARTICLE / SINGLE */
/* =========================== */

.post-single {
  border-radius:var(--radius-lg);
  border:1px solid rgba(15,23,42,0.9);
  background:#020617;
  box-shadow:var(--shadow-soft);
  padding:1.4rem;
}
/* Articles de blog en full width (sans sidebar) */
.single .site-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.2rem 2.5rem;
  display: block; /* on retire la grille 2 colonnes */
}

.single .post-single {
  max-width: 900px;
  margin: 0 auto;
}
/* Bloc Articles récents sous un post */
/* Pages (mentions légales, à propos, etc.) en full width */
.page .site-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.2rem 2.5rem;
  display: block;
}

.page .page-single {
  max-width: 900px;
  margin: 0 auto;
}

.recent-posts {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.2rem 1.3rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,0.9);
  background: radial-gradient(circle at top left, rgba(34,197,94,0.16), #020617);
  box-shadow: var(--shadow-soft);
}

.recent-posts-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.recent-posts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.recent-post-item {
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.9);
  background: rgba(15,23,42,0.98);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.recent-post-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.recent-post-content {
  padding: 0.7rem 0.8rem 0.9rem;
}

.recent-post-meta {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.recent-post-title {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.recent-post-title a {
  color: var(--text);
  text-decoration: none;
}

.recent-post-title a:hover {
  color: var(--accent);
}

.recent-post-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  max-height: 3.6em;
  overflow: hidden;
}


/* Image à la une plus petite et centrée (60%) */
.single-thumb {
  width: 60%;
  margin: 1rem auto 1.6rem; /* centrée */
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  display: flex;
  justify-content: center;
}

.single-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain; /* conserve les proportions */
  display: block;
}


.post-content p {
  margin-bottom:1rem;
}


/* =========================== */
/* CODE */
/* =========================== */

pre, code {
  font-family:"Space Mono", monospace;
}

pre {
  background:rgba(34,197,94,.12);
  border-radius:var(--radius-md);
  padding:.75rem .85rem;
  font-size:.85rem;
  overflow-x:auto;
  border:1px solid rgba(15,23,42,0.9);
}

/* =========================== */
/* SIDEBAR */
/* =========================== */

.sidebar {
  position:sticky;
  top:4.8rem;
  display:flex;
  flex-direction:column;
  gap:1.1rem;
}

/* Liens de sidebar (widgets) */
.sidebar a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.2s ease;
}

.sidebar a:hover {
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.4);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(34,197,94,0.25);
}


.widget {
  border-radius:var(--radius-lg);
  border:1px solid rgba(15,23,42,0.9);
  background:linear-gradient(145deg, rgba(15,23,42,.95), rgba(15,23,42,.98));
  padding:1rem;
}

.widget-title {
  font-size:.95rem;
  margin:0 0 .6rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--accent);
}

/* Masquer le widget Recherche */
.widget_search { display:none; }

/* Réseaux sociaux dans sidebar */

/* Réseaux sociaux : logos seuls, en ligne */

.widget-social .social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  border: none;
  background: transparent;
}

.social-link:hover .social-logo {
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Cercles logos */

.social-logo {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Space Mono", monospace;
  color: #0b1120;
}

/* On cache le texte, le logo suffit */
.social-text {
  display: none;
}

/* couleurs logos */

.social-linkedin .social-logo { background:#0ea5e9; }
.social-youtube .social-logo { background:#ef4444; }
.social-github  .social-logo { background:#e5e7eb; }
.social-x       .social-logo { background:#f9fafb; }



/* couleurs logos */

.social-linkedin .social-logo { background:#0ea5e9; }
.social-youtube .social-logo { background:#ef4444; }
.social-github  .social-logo { background:#e5e7eb; }
.social-x       .social-logo { background:#f9fafb; }

/* =========================== */
/* FOOTER */
/* =========================== */

.site-footer {
  border-top:1px solid var(--border);
  padding:1rem 1.2rem 1.4rem;
  font-size:.85rem;
  color:var(--muted);
  background:#020617;
}

.footer-inner {
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-inner span::before {
  content:"#";
  font-family:"Space Mono", monospace;
  color:var(--accent);
  margin-right:.35rem;
}

/* =========================== */
/* LINKS */
/* =========================== */

a { color:var(--accent); }
a:hover { text-decoration:underline; }


/* Hover : renforcer la lisibilité du résumé */
.post-card:hover .post-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.75) 40%,
    rgba(0,0,0,0.35) 90%,
    transparent 100%
  );
  backdrop-filter: blur(2px);
  transition: background .25s ease-out;
}

.post-card:hover .post-excerpt {
  color: var(--text);
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
}


/* Derniers articles - sidebar Gutenberg */
.wp-block-latest-posts__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wp-block-latest-posts__post-title {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.35rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  text-decoration: none !important;
  transition: 0.2s ease;
  position: relative;
}

.wp-block-latest-posts__post-title::after {
  content: "↗";
  margin-left: auto;
  opacity: 0.3;
  transition: 0.2s ease;
}

.wp-block-latest-posts__post-title:hover {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.4);
  color: var(--accent);
  padding-left: 0.75rem;
}

.wp-block-latest-posts__post-title:hover::after {
  opacity: 0.8;
  transform: translateX(3px);
}
/* =========================== */
/* WIDGET CATÉGORIES BEAUTIFIÉ */
/* =========================== */

.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.widget_categories ul li {
  margin: 0;
  padding: 0;
}

.widget_categories a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  padding: 0.32rem 0.55rem;
  border-radius: 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--text);
  transition: 0.18s ease;
  position: relative;
}

.widget_categories a::before {
  content: ">";
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  color: var(--accent-alt);
  opacity: 0.9;
}

.widget_categories a:hover {
  background: rgba(34,197,94,0.25);
  border-color: rgba(34,197,94,0.5);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(34,197,94,0.25);
  transform: translateX(2px);
}

.widget-title::before {
  content: "0x";
  color: var(--accent);
  margin-right: 0.45rem;
  font-family: "Space Mono", monospace;
}


/* Intro des pages d'archive (catégorie, tag, etc.) */
.archive-intro {
  padding: 1.1rem 1.3rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(34,197,94,0.18), #020617);
}

.archive-intro .post-title {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.archive-intro .post-excerpt {
  max-height: none;
  color: var(--muted);
}


/* Titres dans les articles */
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
  color: var(--accent);
  font-weight: 600;
}

/* H2 : section principale */
.post-content h2 {
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.3rem;
}

.post-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* H3 : sous-section */
.post-content h3 {
  font-size: 1.2rem;
}

/* H4 / H5 : plus discrets mais lisibles */
.post-content h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-content h5 {
  font-size: 0.95rem;
  color: #cbd5f5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Listes */
.post-content ul,
.post-content ol {
  margin: 0 0 1rem 1.4rem;
  padding: 0;
}

.post-content li {
  margin-bottom: 0.35rem;
}

/* Blockquote */
.post-content blockquote {
  margin: 1.2rem 0;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--accent-alt);
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0 10px 10px 0;
  color: #e5e7eb;
  font-style: italic;
}

/* HR */
.post-content hr {
  border: 0;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  margin: 2rem 0;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-content a:hover {
  text-decoration-thickness: 2px;
}
/* =================================== */
/* WIDGET GUIDES EVERGREEN             */
/* =================================== */

.widget-evergreen {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34,197,94,0.45);
  background: radial-gradient(circle at top left,
    rgba(34,197,94,0.18),
    rgba(15,23,42,0.98)
  );
  box-shadow: 0 0 22px rgba(0,0,0,0.65);
}

.widget-evergreen .widget-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.widget-evergreen .widget-title::after {
  content: "●";
  font-size: 0.6rem;
  color: var(--accent-alt);
  opacity: 0.8;
}

/* Liste */

.evergreen-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.evergreen-item {
  margin: 0;
}

/* Lien + bullet + texte */

.evergreen-link {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  transition: 0.2s ease;
  width: 100%;
  max-width: 100%;
}

.evergreen-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent), var(--accent-alt));
  box-shadow: 0 0 8px rgba(34,197,94,0.9);
  flex-shrink: 0;
  margin-top: 0.32rem; /* aligne le point avec la 1ère ligne */
}

.evergreen-title {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;        /* autorise les retours à la ligne */
  overflow-wrap: break-word;  /* coupe proprement si nécessaire */
  line-height: 1.45;
}

/* Hover */

.evergreen-link:hover {
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.45);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(34,197,94,0.3);
  transform: translateX(2px);
}


/* =================================== */
/* PAGINATION 0XHACK                    */
/* =================================== */

.pagination {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.page-link a,
.page-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 0.6rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.18s ease;
}

/* Page active */
.page-link .current {
  background: rgba(34,197,94,0.35);
  border-color: rgba(34,197,94,0.5);
  color: var(--accent);
  font-weight: 700;
}

/* Hover */
.page-link a:hover {
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.4);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(34,197,94,0.25);
}
@supports (padding: max(0px)) {
  body {
    padding-top: env(safe-area-inset-top);
  }
}

/* =========================== */
/* CTA BUTTON – ACCÈS RESSOURCES */
/* =========================== */

.page-template-page-cta .btn {
  height: 52px;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;

  border-radius: 999px;
  border: 1px solid rgba(34,197,94,0.6);

  background:
    radial-gradient(circle at 30% 20%,
      rgba(34,197,94,0.55),
      rgba(2,6,23,0.35) 60%
    );

  color: var(--text);
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* glow interne */
.page-template-page-cta .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%,
      rgba(255,255,255,0.25),
      transparent 55%
    );
  opacity: 0.6;
  pointer-events: none;
}

/* effet hover */
.page-template-page-cta .btn:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(34,197,94,0.9);
  box-shadow:
    0 0 22px rgba(34,197,94,0.35),
    0 8px 22px rgba(0,0,0,0.6);
}

/* effet click */
.page-template-page-cta .btn:active {
  transform: translateY(0);
  box-shadow:
    0 0 10px rgba(34,197,94,0.25);
}

/* mobile : encore plus tappable */
@media (max-width: 600px) {
  .page-template-page-cta .btn {
    height: 56px;
    font-size: 1rem;
  }
}


/* =========================== */
/* PAGE CTA 0XHACK             */
/* =========================== */

.page-template-page-cta .site-main {
  display: block;
  max-width: none;
  padding: 0;
}

.cta-shell {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 2.5rem 1.2rem;
}

.cta-card {
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,0.9);
  background: radial-gradient(circle at top left,
    rgba(34,197,94,0.18),
    #020617
  );
  box-shadow: var(--shadow-soft);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  padding: 1.8rem;
}

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
}

.cta-kicker {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-kicker::before {
  content: "> ";
  color: var(--accent-alt);
}

.cta-title {
  margin: 0.6rem 0;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
}

.cta-lead {
  color: var(--muted);
  max-width: 60ch;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.cta-list li {
  margin-bottom: 0.4rem;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* FORM */

.cta-form {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,0.9);
  background: rgba(15,23,42,0.9);
  padding: 1.2rem;
}

.cta-form-title {
  margin: 0 0 0.8rem;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-form-grid {
  display: grid;
  gap: 0.7rem;
}

.cta-form label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-form input {
  height: 42px;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  background: #020617;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
}

.cta-form input:focus {
  border-color: rgba(34,197,94,0.6);
  outline: none;
}

.hp {
  position: absolute;
  left: -9999px;
}
