
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --bg-alt: #000000;
  --panel: #000000;
  --panel-soft: #000000;
  --border-subtle: #000000;
  --text-main: #ffffff;
  --text-muted: #888888;
  --accent-gold: #888888;
  --accent-gold-soft: rgba(245, 166, 35, 0.12);
  --accent-blue: #888888;
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.85);
  --radius-lg: 18px;
  --radius-xl: 22px;
  --nav-height: 72px;
}

html,
body {
  background-color: #000000;

  margin: 0;
  padding: 0;
  height: 100%;
  
  color: var(--text-main);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.8));
  border-bottom: 1px solid rgba(39, 47, 59, 0.9);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Tomorrow", system-ui;
  font-weight: 700;
  letter-spacing: 2px;
  background: radial-gradient(circle at 30% 0%, #888888, #888888 45%, #000000 100%);
  
  color: #ffffff;
  font-size: 18px;
}

.brand-mark.small {
  width: 24px;
  height: 24px;
  font-size: 15px;
}

.nav {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  font-family: "Tomorrow", system-ui;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-link {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #ffffff;
  text-transform: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: "";
  display: block;
  margin-top: 4px;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent-gold), #ffffff);
  transition: width 0.2s ease;
}

.nav-item:hover .nav-link::after {
  width: 100%;
}

.btn-nav {
  font-family: "Tomorrow", system-ui;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* DROPDOWN */

.dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 14px);
  background: radial-gradient(circle at top, #000000 0, #000000 70%);
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  
  padding: 1.1rem 1.1rem 1rem;
  min-width: 420px;
  display: none;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.dropdown-card {
  padding: 0.7rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.dropdown-label {
  font-family: "Tomorrow", system-ui;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.dropdown-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-item.open > .dropdown {
  display: block;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Tomorrow", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn-gold {
  background: radial-gradient(circle at 30% 0%, #888888, #888888 40%, #888888 100%);
  
  color: #000000;
}

.btn-gold:hover {
  transform: translateY(-1px);
  
}

.btn-dark {
  background: #000000;
  border: 1px solid #888888;
  color: #ffffff;
}

.btn-dark:hover {
  background: #000000;
  
}

.btn-outline {
  background: transparent;
  border: 1px solid #888888;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-outline-gold {
  padding-inline: 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.9);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(0, 0, 0, 0.96));
  color: #ffffff;
  
}

.btn-outline-gold:hover {
  background: radial-gradient(circle at 30% 0%, rgba(248, 181, 45, 0.2), #000000);
}

/* HERO */

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at 50% -20%, #000000 0, #000000 40%, #000 80%);
  text-align: center;
}

.hero-compact {
  padding: 4rem 0 2.8rem;
}

.hero-inner {
  display: flex;
  justify-content: center;
}

.hero-center {
  max-width: 640px;
}

.hero-mark {
  font-family: "Tomorrow", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: #888888;
  margin-bottom: 1.2rem;
}

.hero-title {
  margin: 0 0 0.8rem;
  font-family: "Tomorrow", system-ui;
  font-weight: 600;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.hero-link {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Tomorrow", system-ui;
}

/* SECTIONS */

.section {
  padding: 4rem 0;
  background: radial-gradient(circle at top, #000000 0, #000000 40%, #000 80%);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

.section-copy h2 {
  font-family: "Tomorrow", system-ui;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

.section-copy p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.eyebrow {
  font-family: "Tomorrow", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #888888;
  margin-bottom: 0.6rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* VISUALS / WINDOW */

.section-visual {
  display: flex;
  justify-content: center;
}

.window {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #000000, #000000);
  border: 1px solid rgba(55, 65, 81, 0.95);
  
  overflow: hidden;
}

.window-bar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #000000;
  border-bottom: 1px solid #000000;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #888888;
}

.window-body {
  background-color: #000000;

  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  min-height: 260px;
}

.window-sidebar {
  background: radial-gradient(circle at top, #000000 0, #000000 70%);
  border-right: 1px solid #000000;
}

.window-main {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 80px;
}

.editor-canvas {
  position: relative;
  background: radial-gradient(circle at 10% 10%, #888888 0, #888888 35%, #000000 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-character {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 0%, #888888, #888888 35%, #888888 80%);
  
}

.editor-timeline {
  background: #000000;
  border-top: 1px solid #000000;
}

/* RUNTIMES */

.runtimes-grid-wrap {
  align-items: flex-start;
}

.runtimes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.runtime-pill {
  background: #000000;
  border-radius: 999px;
  border: 1px solid #888888;
  padding: 0.55rem 0.7rem;
  text-align: center;
  font-size: 0.78rem;
  color: #ffffff;
  font-family: "Tomorrow", system-ui;
}

/* RENDERER */

.renderer-card {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(55, 65, 81, 0.95);
  background: #000000;
  
  overflow: hidden;
}

.renderer-scene {
  position: relative;
  padding-bottom: 62%;
  background: radial-gradient(circle at 20% 0, #888888, #888888 40%, #000000 90%);
}

.blob {
  position: absolute;
  border-radius: 999px;
}

.blob-1 {
  width: 34%;
  height: 50%;
  background: #888888;
  left: -5%;
  top: 36%;
}

.blob-2 {
  width: 30%;
  height: 36%;
  background: #888888;
  right: 10%;
  top: 24%;
}

.blob-3 {
  width: 26%;
  height: 28%;
  background: #ffffff;
  left: 40%;
  top: 60%;
}

/* COMPANIES / TESTIMONIALS */

.center-heading {
  text-align: center;
  font-family: "Tomorrow", system-ui;
  letter-spacing: 0.16em;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}

.center-paragraph {
  max-width: 520px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  justify-content: center;
  margin-bottom: 2.1rem;
  font-size: 0.9rem;
  color: #888888;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #000000, #000000);
  border: 1px solid #000000;
  
  font-size: 0.85rem;
  color: var(--text-muted);
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #888888, #888888);
  margin-bottom: 0.4rem;
}

.name {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 600;
}

.handle {
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 0.5rem;
}

/* STRIP */

.strip-section {
  background: #000000;
  border-top: 1px solid #000000;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.strip-item {
  padding: 0.9rem 0.6rem;
  border-radius: 14px;
  background: #000000;
  border: 1px solid #000000;
}

.strip-label {
  font-family: "Tomorrow", system-ui;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.35rem;
}

.strip-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* PRICING */

.pricing-section {
  background: radial-gradient(circle at top, #000000 0, #000000 70%, #000 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.pricing-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: #000000;
  border: 1px solid #000000;
  text-align: left;
  
}

.pricing-card h3 {
  font-family: "Tomorrow", system-ui;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.price span {
  font-size: 0.85rem;
  font-weight: 500;
}

.price-note {
  margin: 0.1rem 0 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card li {
  margin-bottom: 0.4rem;
}

.pricing-card.highlight {
  border-color: var(--accent-gold);
  background: radial-gradient(circle at 0 0, var(--accent-gold-soft), #000000 60%);
}

/* BLOG */

.blog-hero {
  padding-bottom: 2.8rem;
}

.blog-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.blog-tab {
  border: none;
  background: transparent;
  color: #888888;
  font-family: "Tomorrow", system-ui;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.blog-tab.active {
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #000000;
  border-radius: var(--radius-lg);
  border: 1px solid #000000;
  
  overflow: hidden;
  padding-bottom: 1rem;
}

.blog-thumb {
  height: 190px;
  background: radial-gradient(circle at 0 0, #000000, #000000);
}

.thumb-1 { background: radial-gradient(circle at 10% 20%, #888888, #000000 70%); }
.thumb-2 { background: radial-gradient(circle at 80% 20%, #888888, #000000 70%); }
.thumb-3 { background: radial-gradient(circle at 10% 80%, #888888, #000000 70%); }
.thumb-4 { background: radial-gradient(circle at 50% 50%, #888888, #000000 70%); }

.blog-card h2 {
  font-family: "Tomorrow", system-ui;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.8rem 1rem 0.45rem;
}

.blog-card p {
  margin: 0 1rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-meta-line {
  margin: 0.7rem 1rem 0.2rem;
  font-size: 0.78rem;
  color: #888888;
}

/* FAQ */

.faq-section {
  background: radial-gradient(circle at top, #000000 0, #000000 70%, #000 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.faq-item {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid #000000;
  background: #000000;
  
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-family: "Tomorrow", system-ui;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.type-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: #000000;
  border: 1px solid #000000;
  
}

.type-sample-headline {
  font-family: "Tomorrow", system-ui;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.type-sample-body {
  background-color: #000000;

  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.type-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FORMS */

.brief-form .brief-field {
  margin-bottom: 0.7rem;
}

.brief-field label {
  display: block;
  font-size: 0.78rem;
  color: #888888;
  margin-bottom: 0.25rem;
}

.brief-field input,
.brief-field select,
.brief-field textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #888888;
  background: #000000;
  color: #ffffff;
  font-size: 0.85rem;
}

.brief-field textarea {
  resize: vertical;
}

.small-note {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* CTA CARD */

.cta-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: #000000;
  border: 1px solid #000000;
  
}

.cta-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Tomorrow", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
}

.cta-card p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* AGENT TAG */

.agent-tag {
  padding: 1.2rem 0 1.8rem;
  background: #000000;
  border-top: 1px solid #000000;
}

.agent-tag span {
  font-size: 0.8rem;
  color: #888888;
}

/* FOOTER */

.site-footer {
  background: #000000;
  border-top: 1px solid #000000;
  padding: 1.2rem 0 1.8rem;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: #888888;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #888888;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* WHATSAPP FAB */

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #888888, #888888 60%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  
  z-index: 60;
}

.wa-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  position: relative;
}

.wa-icon::before,
.wa-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
}

.wa-icon::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 4px;
  left: 4px;
}

.wa-icon::after {
  width: 8px;
  height: 6px;
  border-radius: 0 0 6px 6px;
  bottom: -4px;
  left: 5px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .two-col,
  .pricing-grid,
  .testimonial-grid,
  .strip-grid,
  .faq-grid,
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-col.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .dropdown {
    position: static;
    transform: none;
    min-width: auto;
    margin-top: 0.6rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #000000;
    border: 1px solid #000000;
    display: none;
    min-width: 220px;
  }

  .nav-links.open {
    display: flex;
  }

  .dropdown-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn-nav {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .pricing-section {
    padding-bottom: 3rem;
  }
}



/* --- Bento layout (black & white, minimalist) --- */
.bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bento-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Make sure text inside cards stays readable */
.bento-card h2,
.bento-card h3,
.bento-card h4 {
  margin: 0;
}

/* --- Signal light inside primary button (still black & white) --- */
.signal-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.signal-button::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #ffffff;
  opacity: 0.8;
  transform-origin: center;
  animation: signal-pulse 1.6s ease-in-out infinite;
}

@keyframes signal-pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.25;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

/* --- Minimal footer --- */
.site-footer {
  margin-top: 3rem;
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  opacity: 0.9;
}

.footer-brand {
  font-weight: 500;
}

.footer-availability {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .site-footer {
    padding-inline: 1rem;
  }
}

