/*
Theme Name: Egogentix
Theme URI: https://egogentix.com
Author: Egogentix
Author URI: https://egogentix.com
Description: Own Your Own Vibe - A creativity-first ecosystem theme for WordPress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: egogentix
Tags: custom, modern, dark, gradient, responsive
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
  background-color: #0b1020;
  line-height: 1.5;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, #48c6ef 0, #6f86d6 35%, #0b1020 80%);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 6vw;
  position: relative;
  z-index: 10;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #f9fafb;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.9rem;
  color: #e5e7eb;
}

nav ul li a {
  opacity: 0.85;
}

nav ul li a:hover {
  opacity: 1;
}

.login-link {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.25);
  font-size: 0.85rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 6vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-copy {
  color: #f9fafb;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d1fae5;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.btn-primary {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #22c55e, #a3e635);
  color: #052e16;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.5);
  filter: brightness(1.05);
}

.ghost-link {
  font-size: 0.9rem;
  color: #e5e7eb;
  opacity: 0.9;
}

.ghost-link span {
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.hero-footnote {
  font-size: 0.8rem;
  color: #d1d5db;
  max-width: 30rem;
}

.hero-visual {
  position: relative;
  height: 320px;
}

.visual-card {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  color: #e5e7eb;
  box-shadow:
    0 18px 60px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.6);
}

.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.visual-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f9fafb;
}

.status-pill {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.6);
  font-size: 0.7rem;
  color: #99f6e4;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.25), transparent 60%);
}

.visual-body {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
}

.metric-label {
  color: #9ca3af;
}

.metric-value {
  font-weight: 600;
  color: #e5e7eb;
}

.vibe-bar {
  margin-top: 0.5rem;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #a3e635, #facc15);
  position: relative;
  overflow: hidden;
}

.vibe-bar::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 50%, rgba(249, 250, 251, 0.65), transparent 65%);
  mix-blend-mode: screen;
  animation: sweep 4s linear infinite;
}

@keyframes sweep {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(120%); }
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.5rem;
  font-size: 0.75rem;
}

.tag-pill {
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  background: rgba(15, 118, 110, 0.45);
  border: 1px solid rgba(45, 212, 191, 0.5);
  color: #ccfbf1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-glow {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 360px;
  height: 120px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent 70%);
  filter: blur(20px);
  opacity: 0.85;
  pointer-events: none;
}

.sections {
  background-color: #020617;
  color: #e5e7eb;
  padding: 2.5rem 6vw 3rem;
}

.sections-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.section-block h2 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.section-block h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.section-block p {
  font-size: 0.9rem;
  color: #d1d5db;
  max-width: 32rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.step-card {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at top left, rgba(55, 65, 81, 0.55), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.85rem;
}

.step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a5b4fc;
  margin-bottom: 0.35rem;
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.who-card {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(75, 85, 99, 0.9);
  font-size: 0.85rem;
}

.who-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #67e8f9;
  margin-bottom: 0.3rem;
}

.who-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.why-list {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  padding-left: 1rem;
}

.why-list li {
  margin-bottom: 0.35rem;
}

.footer {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  margin-top: 1.75rem;
  padding-top: 1rem;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.footer a {
  color: #9ca3af;
}

.page-content {
  font-size: 0.9rem;
  color: #d1d5db;
  line-height: 1.7;
}

.page-content h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #f9fafb;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content a {
  color: #48c6ef;
  text-decoration: underline;
}

.page-content a:hover {
  color: #6f86d6;
}

@media (max-width: 900px) {
  main {
    padding-top: 2.5rem;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
    margin-bottom: 1.5rem;
  }
  
  .footer {
    padding-top: 1.25rem;
    gap: 1rem;
  }
  
  .footer-links {
    gap: 0.5rem;
    font-size: 0.7rem;
  }
}

/* Contact Page Two-Column Layout */
.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .contact-columns {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-columns {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-columns {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.contact-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0; /* Prevents grid overflow issues */
}

.contact-column h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 1rem;
  margin-top: 0;
}

@media (max-width: 640px) {
  .contact-column h2 {
    font-size: 1.2rem;
  }
}

.contact-column-left h2 {
  margin-top: 0;
}

.contact-column-right h2 {
  margin-top: 0;
}

.contact-column p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #d1d5db;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .contact-column p {
    font-size: 0.85rem;
  }
}

.contact-column a {
  color: #48c6ef;
  text-decoration: underline;
}

.contact-column a:hover {
  color: #6f86d6;
}

/* Contact Form Styles - Consistent across all screen sizes */
.contact-form-placeholder {
  display: none;
}

.contact-form-wrapper {
  margin-top: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-column-right .contact-form-wrapper {
  margin-top: 1.5rem;
}

.contact-form {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group .required {
  color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(75, 85, 99, 0.5);
  border-radius: 0.375rem;
  color: #f9fafb;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #48c6ef;
  background-color: rgba(31, 41, 55, 0.95);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
}

.contact-success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.contact-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Additional responsive adjustments for contact columns */
@media (max-width: 900px) {
  .contact-columns {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-column p {
    font-size: 0.85rem;
  }
  
  .footer {
    font-size: 0.7rem;
    padding-top: 1rem;
    gap: 0.75rem;
  }
  
  .footer-links {
    font-size: 0.65rem;
    gap: 0.4rem;
  }
  
  .footer-links span {
    margin: 0 0.2rem;
  }
}

