/* ============================================================
   PQ TOKENIZATION — Domain For Sale · Editorial Light Aesthetic
   Palette: pure white · deep navy · electric blue · warm ink
   Fonts: Playfair Display + IBM Plex Sans + IBM Plex Mono
   ============================================================ */

:root {
  --white: #ffffff;
  --off-white: #f7f6f2;
  --ink: #0d0d14;
  --navy: #0a1628;
  --blue: #0057ff;
  --blue-light: #4488ff;
  --blue-pale: #e6eeff;
  --text: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --border: #e0dfda;
  --border-strong: #c8c7c0;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* SCAN LINES (subtle) */
.scan-lines {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,87,255,0.008) 3px,
    rgba(0,87,255,0.008) 4px
  );
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.2rem 3rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 1.1rem; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
}
.nav-logo em { font-style: normal; color: var(--blue); }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none; margin-left: auto;
}
.nav-links a {
  color: var(--text-mid); text-decoration: none; font-size: 13px;
  font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  color: var(--blue); text-decoration: none; font-size: 13px;
  font-weight: 600; letter-spacing: 0.03em;
  border: 1.5px solid var(--blue);
  padding: 0.45rem 1.2rem;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--blue); color: var(--white); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  max-width: 1200px; margin: 0 auto;
  gap: 4rem;
}

.hero-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  display: flex; flex-direction: column;
}
.italic-line { font-style: italic; font-weight: 400; }
.accent-blue { color: var(--blue); }

.hero-sub {
  color: var(--text-mid); font-size: 1.05rem;
  max-width: 520px; line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-fill {
  background: var(--ink); color: var(--white);
  padding: 0.85rem 2rem; font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.btn-fill:hover { background: var(--navy); transform: translateY(-2px); }
.btn-fill.large { font-size: 15px; padding: 1rem 2.5rem; }

.btn-line {
  color: var(--ink); text-decoration: none; font-size: 13px;
  font-weight: 600; border-bottom: 2px solid var(--ink);
  padding-bottom: 2px; letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s;
}
.btn-line:hover { color: var(--blue); border-color: var(--blue); }

/* ASSET MOSAIC */
.asset-mosaic {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 8px;
  aspect-ratio: 1;
  max-width: 420px; margin-left: auto;
}

.asset-tile {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 1.2rem 1rem;
  display: flex; flex-direction: column;
  gap: 0.3rem;
  transition: background 0.3s, border-color 0.3s;
  animation: fadeUp 0.6s ease both;
}
.asset-tile:nth-child(1) { animation-delay: 0.1s; }
.asset-tile:nth-child(2) { animation-delay: 0.2s; }
.asset-tile:nth-child(3) { animation-delay: 0.3s; }
.asset-tile:nth-child(4) { animation-delay: 0.4s; }
.asset-tile:nth-child(5) { animation-delay: 0.5s; }
.asset-tile:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.asset-tile.highlight {
  background: var(--ink); color: var(--white);
  border-color: var(--ink);
}
.asset-tile.highlight .at-label { color: rgba(255,255,255,0.6); }
.asset-tile.highlight .at-tag { color: var(--blue-light); }

.asset-tile:hover:not(.highlight) { background: var(--blue-pale); border-color: var(--blue); }

.at-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light);
}
.at-value {
  font-family: var(--font-serif); font-size: 1.4rem;
  font-weight: 700; line-height: 1.1;
  color: inherit;
}
.at-tag {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.1em; color: var(--blue);
}

/* MANIFESTO BAND */
.manifesto-band {
  background: var(--navy); color: var(--white);
  padding: 3rem;
  text-align: center;
}
.manifesto-band p {
  font-family: var(--font-serif); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic; max-width: 860px; margin: 0 auto;
  line-height: 1.5;
}

/* SECTIONS */
.section { padding: 7rem 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 3rem; }

.section-header {
  display: flex; gap: 2rem; align-items: flex-start;
  margin-bottom: 4rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.section-num {
  font-family: var(--font-mono); font-size: 2.5rem;
  color: var(--border-strong); font-weight: 300;
  flex-shrink: 0; margin-top: 0.3rem;
}
.label-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.5rem;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
}

/* THREE COL */
.three-col {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border);
}
.feature-block {
  background: var(--white); padding: 2.5rem 2rem;
  transition: background 0.25s;
}
.feature-block:hover { background: var(--blue-pale); }
.feature-num {
  font-size: 1.5rem; color: var(--blue); margin-bottom: 1rem;
}
.feature-block h3 {
  font-family: var(--font-sans); font-size: 1rem;
  font-weight: 600; margin-bottom: 0.8rem;
}
.feature-block p { color: var(--text-mid); font-size: 13.5px; }

/* SPECTRUM SECTION */
.spectrum-section { background: var(--off-white); }
.intro-text {
  color: var(--text-mid); font-size: 1.05rem;
  max-width: 700px; margin-bottom: 3rem;
}
.spectrum-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.spec-item {
  background: var(--white); padding: 2rem 1.5rem;
  transition: background 0.25s;
}
.spec-item:hover { background: var(--blue-pale); }
.spec-icon { font-size: 1.5rem; display: block; margin-bottom: 0.8rem; }
.spec-item h4 {
  font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem;
}
.spec-item p { color: var(--text-mid); font-size: 12.5px; line-height: 1.6; }

/* TIMELINE */
.timeline-section { background: var(--white); }
.timeline {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--border); border: 1px solid var(--border);
  margin-top: 1rem;
}
.tl-item {
  background: var(--white); padding: 2.5rem 2rem;
}
.tl-item.tl-danger { background: var(--navy); color: var(--white); }
.tl-year {
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.1em; color: var(--blue); display: block;
  margin-bottom: 1rem; font-weight: 500;
}
.tl-danger .tl-year { color: #ff6b6b; font-weight: 700; font-size: 1rem; }
.tl-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.6rem; }
.tl-danger h4 { color: var(--white); }
.tl-item p { color: var(--text-mid); font-size: 12.5px; line-height: 1.6; }
.tl-danger p { color: rgba(255,255,255,0.7); }

/* CTA SECTION */
.hero-cta-section {
  background: var(--blue); color: var(--white);
  padding: 6rem 3rem; text-align: center;
}
.hero-cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 700px; margin: 0 auto 2.5rem;
  font-style: italic;
}
.hero-cta-section .btn-fill {
  background: var(--white); color: var(--blue);
}
.hero-cta-section .btn-fill:hover { background: var(--off-white); }

/* PAGE HEADER */
.page-header {
  padding: 10rem 0 5rem; background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05; max-width: 700px;
  margin-bottom: 1.5rem;
}
.page-header p {
  color: var(--text-mid); max-width: 600px;
  font-size: 1.1rem; line-height: 1.7;
}

/* CONTENT BLOCKS */
.content-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.content-section:last-child { border-bottom: none; }
.content-section h2 { margin-bottom: 1.5rem; }
.content-section p { color: var(--text-mid); max-width: 720px; margin-bottom: 1rem; }
.content-section em { color: var(--text); font-style: italic; }

/* TECH TABLE */
.tech-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.tech-table th {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); text-align: left;
  padding: 0.8rem 1.2rem; background: var(--off-white);
  border-bottom: 2px solid var(--border);
}
.tech-table td {
  padding: 1rem 1.2rem; border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--text-mid);
  vertical-align: top;
}
.tech-table tr:hover td { background: var(--blue-pale); }
.td-name { font-family: var(--font-mono); color: var(--blue) !important; font-size: 12px !important; }

/* TWO COL */
.two-col-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  padding: 4rem 0; border-bottom: 1px solid var(--border);
}
.two-col-content:last-child { border-bottom: none; }
.two-col-content h3 {
  font-family: var(--font-serif); font-size: 1.8rem;
  margin-bottom: 1rem;
}
.two-col-content p { color: var(--text-mid); margin-bottom: 0.8rem; font-size: 14px; }

/* FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text); font-family: var(--font-sans); font-size: 14px;
  padding: 0.75rem 1rem;
  outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  background: var(--ink); color: var(--white);
  border: none; padding: 0.9rem 2.5rem;
  font-family: var(--font-sans); font-size: 13px;
  font-weight: 600; letter-spacing: 0.04em;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--navy); }
.form-note { font-size: 11.5px; color: var(--text-light); margin-top: 1rem; font-family: var(--font-mono); }

/* SUBMISSIONS */
.submissions-section { background: var(--off-white); border-top: 1px solid var(--border); }
.submissions-section h2 { margin-bottom: 0.5rem; }
.submissions-intro { color: var(--text-mid); font-size: 14px; margin-bottom: 2.5rem; }
.submissions-list { list-style: none; display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.submissions-empty { color: var(--text-light); font-family: var(--font-mono); font-size: 13px; margin-top: 1rem; }
.submission-item { background: var(--white); transition: background 0.2s; }
.submission-link { display: block; padding: 1.5rem 2rem; text-decoration: none; color: inherit; transition: background 0.2s; }
.submission-link:hover { background: var(--blue-pale); }
.submission-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.submission-name { font-weight: 600; font-size: 15px; color: var(--text); }
.submission-date { font-family: var(--font-mono); font-size: 11px; color: var(--text-light); letter-spacing: 0.05em; }
.submission-meta { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.submission-topic { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.submission-org { font-size: 12px; color: var(--text-mid); }
.submission-preview { color: var(--text-mid); font-size: 13px; line-height: 1.5; }
.submission-contact { font-family: var(--font-mono); font-size: 11px; color: var(--text-mid); letter-spacing: 0.03em; margin-bottom: 0.3rem; }
.submission-offer { font-family: var(--font-mono); font-size: 12px; color: var(--blue); font-weight: 500; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.submission-view-link { display: inline-block; margin-top: 0.8rem; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); font-weight: 500; transition: color 0.2s; }
.submission-link:hover .submission-view-link { color: var(--ink); }

/* SIDEBAR INFO */
.sidebar-info h3 {
  font-family: var(--font-serif); font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-list { list-style: none; }
.info-list li {
  padding: 1.2rem 0; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.info-list li:last-child { border-bottom: 1px solid var(--border); }
.il-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue);
}
.il-desc { color: var(--text-mid); font-size: 13px; }

/* ABOUT GRID */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.value-card {
  border-top: 3px solid var(--blue);
  padding: 2rem 0;
}
.value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; }
.value-card p { color: var(--text-mid); font-size: 13px; }

/* FOOTER */
.footer {
  background: var(--ink); color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 2rem;
}
.footer .nav-logo { color: var(--white); }
.footer .nav-logo em { color: var(--blue-light); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 0.6rem; max-width: 320px; }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 12px; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  color: rgba(255,255,255,0.25); font-family: var(--font-mono);
  font-size: 11px; border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

/* DOMAIN FOR SALE — HERO STYLES */
.domain-name-display {
  font-family: var(--font-mono);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.for-sale-line {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.5rem;
}
.hero-sub strong {
  color: var(--blue);
  font-weight: 600;
}

/* DOMAIN SALE BADGE */
.sale-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-right { display: none; }
  .three-col, .spectrum-grid { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .contact-grid, .two-col-content { grid-template-columns: 1fr; gap: 3rem; }
  .value-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.5rem; }
  .three-col, .spectrum-grid, .timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}
