/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at center, #0a0f2c, #02030a);
  color: white;
}

/* =========================
   SECTION
========================= */
.json {
  padding: 100px 40px;
  text-align: center;
}

/* TAG */
.tag {
  color: #ff9900;
  letter-spacing: 3px;
  font-size: 12px;
}

/* TITLE */
.title {
  font-size: 50px;
  color: #ff7a00;
  margin: 10px 0;
}

/* SUB */
.subtitle {
  color: #9aa3b2;
  margin-bottom: 10px;
}

.desc {
  color: #6b7280;
  margin-bottom: 40px;
}

/* =========================
   TOOLBAR
========================= */
.toolbar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(20,20,40,0.5);
  color: #cbd5e1;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  border-color: #00eaff;
  color: white;
}

.btn.orange {
  border-color: #ff7a00;
  color: #ff7a00;
}

.btn.red {
  border-color: #ff4d4d;
  color: #ff4d4d;
}

/* =========================
   STATUS
========================= */
.status {
  margin: 20px auto;
  max-width: 1000px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0,255,100,0.1);
  color: #00ff88;
  font-size: 14px;
}

/* =========================
   EDITOR
========================= */
.editor {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  width: 45%;
  text-align: left;
}

.box p {
  margin-bottom: 8px;
  color: #7c8bb3;
  font-size: 12px;
}

/* TEXTAREA */
textarea {
  width: 100%;
  height: 300px;
  border-radius: 10px;

  background: rgba(10,10,30,0.7);
  border: 1px solid rgba(255,255,255,0.05);

  color: #00eaff;
  padding: 15px;
  font-family: monospace;

  outline: none;
}

/* =========================
   WHY SECTION
========================= */
.why {
  padding: 120px 60px;
}

.why h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #ff7a00;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  padding: 25px;
  border-radius: 16px;

  background: rgba(10,10,30,0.6);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.05);

  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* TEXT */
.why-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.why-card p {
  font-size: 13px;
  color: #9aa3b2;
  line-height: 1.6;
}

/* NEON BORDER */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;

  background: linear-gradient(120deg, transparent, currentColor);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  opacity: 0;
  transition: 0.4s;
}

/* COLORS */
.why-card.orange { color: #ff7a00; }
.why-card.green { color: #00ff88; }
.why-card.purple { color: #a855f7; }
.why-card.blue { color: #00eaff; }
.why-card.pink { color: #ff4dd2; }

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 10px currentColor;
}

.why-card:hover::before {
  opacity: 1;
}

/* GLOW LINE EFFECT */
.why-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  top: 0;
  left: -100%;
  opacity: 0;
}

.why-card:hover::after {
  animation: scan 1s linear;
  opacity: 1;
}

@keyframes scan {
  from { left: -100%; }
  to { left: 100%; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .box {
    width: 100%;
  }

  .title {
    font-size: 32px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at center, #0a0f2c, #02030a);
  color: white;
}

/* SECTION */
.schema {
  padding: 100px 60px;
  text-align: center;
}

/* TAG */
.tag {
  color: #7b61ff;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* TITLE */
.schema h1 {
  font-size: 48px;
  color: #a855f7;
  margin-bottom: 10px;
}

/* SUB */
.subtitle {
  font-size: 18px;
  color: #9aa3b2;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #7c8699;
  margin-bottom: 40px;
}

/* HEADER */
.types-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.types-header span {
  font-size: 12px;
  color: #7c8699;
  letter-spacing: 2px;
}

/* LOAD BTN */
.load-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #7b61ff;
  background: transparent;
  color: #7b61ff;
  cursor: pointer;
}

/* TYPES */
.schema-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.type {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(20,20,40,0.4);
  color: #aaa;
  cursor: pointer;
  transition: 0.3s;
}

/* ACTIVE */
.type.active {
  border-color: #7b61ff;
  color: #fff;
  box-shadow: 0 0 10px rgba(123,97,255,0.5);
}

/* HOVER */
.type:hover {
  border-color: #7b61ff;
  color: #fff;
}

/* PROGRESS */
.progress-box {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 15px;
  border-radius: 12px;
  background: rgba(10,10,30,0.6);
  margin-bottom: 20px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00eaff, #7b61ff);
}

.percent {
  font-size: 12px;
  color: #aaa;
}

/* ERROR */
.error-box {
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.3);
  padding: 15px;
  border-radius: 10px;
  color: #ff4d6d;
}

.error-box small {
  display: block;
  color: #ff7b8a;
  margin-top: 5px;
}

/* =========================
   SCHEMA INFO SECTION
========================= */
.schema-info {
  padding: 120px 60px;
}

.schema-info h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #cbd5ff;
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.info-card {
  padding: 25px;
  border-radius: 16px;

  background: rgba(10,10,30,0.6);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.05);

  position: relative;
  transition: 0.4s;
}

/* TITLE */
.info-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXT */
.info-card p {
  font-size: 13px;
  color: #9aa3b2;
  line-height: 1.6;
}

/* BORDER GLOW */
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;

  background: linear-gradient(120deg, transparent, currentColor);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  opacity: 0;
  transition: 0.4s;
}

/* COLORS */
.info-card.blue { color: #7aa2ff; }
.info-card.purple { color: #a855f7; }
.info-card.pink { color: #ff4dd2; }
.info-card.cyan { color: #00eaff; }
.info-card.orange { color: #ff9900; }
.info-card.green { color: #00ff88; }

/* HOVER */
.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px currentColor;
}

.info-card:hover::before {
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   COLORFORGE
========================= */
.colorforge {
  padding: 120px 60px;
  text-align: center;
}

.colorforge h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.subtitle {
  color: #9aa3b2;
  margin-bottom: 40px;
}

/* PALETTE */
.palette {
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 40px;
}

.color-box {
  flex: 1;
  height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
}

.color-box span {
  font-size: 12px;
  color: white;
}

.color-box button {
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: white;
  cursor: pointer;
}

/* CONTROLS */
.color-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* BOX */
.control-box {
  padding: 20px;
  border-radius: 16px;

  background: rgba(10,10,30,0.6);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.05);
  text-align: left;
}

.control-box h4 {
  font-size: 12px;
  margin-bottom: 15px;
  color: #a855f7;
}

/* SEED */
.seed-row {
  display: flex;
  gap: 10px;
}

.seed-preview {
  width: 40px;
  height: 40px;
  background: #6366f1;
  border-radius: 8px;
}

.seed-row input {
  flex: 1;
  padding: 10px;
  background: #02030a;
  border: none;
  color: white;
}

.small-btn {
  padding: 10px;
  background: #1f1f2e;
  border: none;
  color: white;
  cursor: pointer;
}

/* HARMONY */
.harmony-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.harmony-grid button {
  padding: 10px;
  background: #02030a;
  border: 1px solid rgba(255,255,255,0.05);
  color: #aaa;
  cursor: pointer;
}

.harmony-grid button.active {
  border-color: #a855f7;
  color: white;
}

/* ACTIONS */
.regen-btn {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #7b61ff, #ff00ff);
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

/* FORMAT */
.formats {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.formats button {
  flex: 1;
  padding: 8px;
  background: #02030a;
  border: none;
  color: #aaa;
}

.formats button.active {
  background: #111;
  color: white;
}

/* EXPORT */
.export {
  display: flex;
  gap: 10px;
}

.export button {
  flex: 1;
  padding: 10px;
  background: #1f1f2e;
  border: none;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .color-controls {
    grid-template-columns: 1fr;
  }

  .palette {
    flex-direction: column;
  }
}

/* =========================
   COLOR THEORY SECTION
========================= */
.color-theory {
  padding: 120px 60px;
  text-align: center;
}

/* TAG */
.section-tag {
  color: #a855f7;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

/* TITLE */
.color-theory h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

/* GRID */
.theory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.theory-card {
  padding: 30px;
  border-radius: 18px;

  background: rgba(10,10,30,0.6);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.05);

  text-align: left;
  transition: 0.4s;

  position: relative;
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(123,97,255,0.1);
  border-radius: 12px;

  font-size: 22px;
  margin-bottom: 15px;
}

/* TEXT */
.theory-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.theory-card p {
  font-size: 13px;
  color: #9aa3b2;
  line-height: 1.6;
}

/* NEON BORDER */
.theory-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;

  background: linear-gradient(120deg, transparent, #a855f7);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.theory-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(168,85,247,0.3);
}

.theory-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .theory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .theory-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.seo {
  padding: 120px 20px;
  text-align: center;
}

/* BADGE */
.seo-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #00ff88;
  color: #00ff88;
  font-size: 12px;
  margin-bottom: 20px;
}

/* TITLE */
.seo-title {
  font-size: 60px;
  font-weight: 800;
}

.seo-title span {
  background: linear-gradient(90deg, #7b61ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.seo-sub {
  color: #888;
  margin: 20px 0;
  line-height: 1.6;
}

/* PROGRESS */
.seo-progress-text {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
}

.seo-progress-bar {
  width: 250px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

.seo-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #7b61ff, #ff00ff);
}

/* CARD */
.seo-card {
  margin: 60px auto;
  max-width: 900px;
  padding: 30px;
  border-radius: 15px;

  background: rgba(10,10,30,0.6);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.05);
}

/* TOP */
.seo-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

/* TOGGLE */
.toggle {
  display: flex;
  gap: 5px;
  background: #050510;
  padding: 5px;
  border-radius: 8px;
}

.toggle span {
  padding: 6px 12px;
  font-size: 12px;
  color: #888;
  border-radius: 6px;
  cursor: pointer;
}

.toggle .active {
  background: #111;
  color: #fff;
}

/* INPUT */
.seo-card label {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
}

.seo-card input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  background: #050510;
  color: white;
  margin-bottom: 20px;
}

/* BUTTON */
.generate-btn {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  border: none;

  background: linear-gradient(90deg, #7b61ff, #5a3cff);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.generate-btn:hover {
  box-shadow: 0 0 20px #7b61ff;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .seo-title {
    font-size: 40px;
  }

  .seo-card-top {
    flex-direction: column;
    gap: 15px;
  }
}

/* =========================
   SEO OUTPUT GRID PREMIUM
========================= */

.seo-output {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px;

  border-radius: 16px;
  background: rgba(10, 10, 30, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 0 40px rgba(0, 234, 255, 0.05);
}

/* TITLE */
.seo-output h3 {
  font-size: 22px;
  margin-bottom: 30px;
  text-align: center;

  background: linear-gradient(90deg, #00eaff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* META BOX */
.meta-box {
  padding: 15px;
  border-radius: 12px;

  background: rgba(0,0,20,0.6);
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: 0.3s;
}

/* HOVER */
.meta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,234,255,0.2);
}

/* LABEL */
.meta-box label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 8px;
}

/* TEXTAREA */
.meta-box textarea {
  width: 100%;
  height: 100px;
  resize: none;

  padding: 10px;
  border-radius: 8px;

  background: rgba(0,0,30,0.6);
  border: 1px solid rgba(255,255,255,0.05);

  color: #fff;
  font-size: 12px;

  outline: none;
}

/* COPY BUTTON */
.meta-box button {
  margin-top: 10px;
  padding: 6px;
  font-size: 11px;

  border-radius: 6px;
  border: 1px solid #7b61ff;
  color: #7b61ff;

  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.meta-box button:hover {
  background: #7b61ff;
  color: #fff;
  box-shadow: 0 0 10px #7b61ff;
}

/* COLORS PER BOX */
#metaTitle { border-top: 2px solid #00eaff; }
#metaDesc { border-top: 2px solid #00ff88; }
#metaKeywords { border-top: 2px solid #a855f7; }
#metaOG { border-top: 2px solid #ff00ff; }
#metaTwitter { border-top: 2px solid #ffaa00; }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.resume-section {
  padding: 120px 60px;
  text-align: center;
}

/* BADGE */
.badge {
  display: inline-block;
  color: #00ff88;
  border: 1px solid #00ff88;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

/* TITLE */
.resume-title {
  font-size: 60px;
  font-weight: 800;
}

.resume-title span {
  color: #00eaff;
}

/* SUB */
.resume-sub {
  color: #888;
  margin-bottom: 60px;
}

/* CONTAINER */
.resume-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* FORM */
.resume-form {
  background: rgba(10,10,30,0.6);
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  backdrop-filter: blur(20px);
}

/* STEPS */
.steps {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #777;
}

.steps span.active {
  color: #00ff88;
}

/* INPUTS */
label {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-top: 15px;
}

input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  background: #050510;
  color: white;
}

/* ROW */
.row {
  display: flex;
  gap: 15px;
}

/* BUTTON */
.next-btn {
  margin-top: 25px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #00ff88;
  color: black;
  font-weight: 600;
  cursor: pointer;
}

/* PREVIEW */
.resume-preview {
  background: #f5f5f5;
  border-radius: 15px;
  overflow: hidden;
}

/* PREVIEW TOP */
.preview-top {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  font-size: 12px;
  color: #00aa55;
  background: #eaeaea;
}

.preview-top .modern {
  background: #00ff88;
  padding: 3px 10px;
  border-radius: 10px;
  color: black;
}

/* CONTENT */
.preview-content {
  padding: 30px;
  text-align: left;
  color: black;
}

.preview-content h2 {
  font-size: 26px;
}

/* MOBILE */
@media (max-width: 768px) {
  .resume-container {
    grid-template-columns: 1fr;
  }
}

