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

:root {
  --cf-orange: #f3501d;
  --cf-orange-light: #fc8851;
  --bg: #fafaf9;
  --text-primary: #000000;
  --text-secondary: #52525c;
  --text-muted: #6a7282;
  --border-color: #000000;
  --card-bg: #ffffff;
  --card-hover: #fafafa;
  --success: #22c55e;
  --font-sans: 'FTKunstGrotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'FTKunstGrotesk', Georgia, serif;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg: #0a0e14;
  --text-primary: #e6edf3;
  --text-secondary: #b8c0cc;
  --text-muted: #8b949e;
  --border-color: rgba(255, 255, 255, 0.12);
  --card-bg: #1a1f28;
  --card-hover: #22282f;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Canvas - only visible in marketing sections */
#backgroundCanvas {
  display: none;
}

/* Cloudflare Workers Style Background Lines */
#background-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: none;
}

@media (min-width: 768px) {
  #background-lines {
    display: block;
  }
}

.bg-lines-outer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1480px;
  height: 100%;
}

.bg-dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-lines-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
}

.bg-dash-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(235, 213, 193, 0.5) 50%, transparent 50%);
  background-size: 1px 32px;
  background-repeat: repeat-y;
}

.bg-dash-left {
  left: 0;
}

.bg-dash-right {
  right: 0;
}

/* Section Dash Line */
.section-dash-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  pointer-events: none;
}

/* Re-enable pointer events for interactive elements */
.header a,
.header button,
.header [role="button"],
.header input,
.header select,
.header textarea {
  pointer-events: auto;
}

.header.header-solid {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
}

/* Header edge decorations — hidden for card style */
.header::before,
.header::after {
  display: none;
}

.header-inner {
  max-width: calc(1200px + 64px);
  height: 80px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 66px;
  height: 30px;
  color: #fff;
  transition: color 0.2s;
}

.logo:hover .logo-icon {
  color: rgba(255, 255, 255, 0.8);
}

/* Logo text — CLOUDFLARE small + Registrar large */
.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  line-height: 1;
}

.logo-text-top {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 251, 245, 0.7);
  text-transform: uppercase;
  line-height: 1;
}

.logo-text-bottom {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 23px;
  font-weight: 500;
  color: #FFFBF5;
  letter-spacing: -0.02em;
  margin-top: 2px;
  line-height: 1;
  white-space: nowrap;
}

.header-solid .logo-icon {
  color: var(--cf-orange);
}

.header-solid .logo-text-top {
  color: var(--text-muted);
}

.header-solid .logo-text-bottom {
  color: var(--text-primary);
}

/* Header search outer frame - orange border only */
.header-search-frame {
  position: relative;
  display: none;
  flex: 0.8;
  margin: 0 auto;
  padding: 4px;
  border: 1px solid #ff500a;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  overflow: visible;
}

/* Header search inner - simple light gray */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: #fff;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Corner decorations removed */
.header-search-frame .corner-tl,
.header-search-frame .corner-tr,
.header-search-frame .corner-bl,
.header-search-frame .corner-br {
  display: none;
}

body.searching .header-search-frame,
.header-search-frame.header-search-visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search:focus-within {
  border-color: rgba(0, 0, 0, 0.2);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-search-prompt {
  display: flex;
  align-items: center;
  color: var(--cf-orange);
  margin-right: 10px;
}

.header-search-prompt svg {
  width: 18px;
  height: 18px;
}

.header-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  outline: none;
  caret-color: var(--cf-orange);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='32' viewBox='0 0 16 32'%3E%3Cline x1='8' y1='2' x2='8' y2='30' stroke='%23000' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='4' y1='2' x2='12' y2='2' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='4' y1='30' x2='12' y2='30' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 8 16, text;
}

.header-search-input::placeholder {
  color: var(--text-muted);
}

.header-search-cursor {
  display: none;
}

@keyframes headerCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.header-search-clear {
  display: none;
  width: 24px;
  height: 24px;
  border: none;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.header-search-clear:hover {
  background: rgba(0,0,0,0.2);
  color: var(--text-primary);
}

.header-search-frame.has-value .header-search-clear {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.95;
}

.nav-btn {
  font-size: 15px;
  font-weight: 500;
  color: var(--cf-orange);
  background: #fff;
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.95;
}

/* Solid header nav colors */
.header-solid .nav-link {
  color: var(--text-primary);
  border-color: transparent;
}

.header-solid .nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.header-solid .nav-btn {
  color: #fff;
  background: var(--cf-orange);
  border-color: var(--cf-orange);
}

.header-solid .nav-btn:hover {
  background: #db4517;
  opacity: 0.95;
}

/* Hero Card — rounded wrapper for header + hero */
.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  margin: 8px auto 36px;
  max-width: 1440px;
  height: 55vh;
  min-height: 500px;
  background: #f3501d;
  box-shadow: 1px 6px 6px 0 #fff3 inset, 0 0 0 0 #ffffff59 inset, 0 4px 12px 0 #00000005, 0 0 0 0 #00000005, 0 2px 12px 0 #00000008;
  z-index: 51;
  isolation: isolate;
}

/* Horizontal divider line below hero - Workers style */
.hero-divider {
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-image: repeating-linear-gradient(
    to right,
    rgba(235, 213, 193, 0.8) 0,
    rgba(235, 213, 193, 0.8) 16px,
    transparent 16px,
    transparent 32px
  );
  background-size: 32px 1px;
  background-repeat: repeat-x;
  background-position: 0 0;
}

/* Bottom glow removed */
.hero-card::after {
  display: none;
}

/* Main scroll container */
.main-scroll {
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

/* Scroll down hint — mobile only */
.hero-scroll-hint {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  animation: bounceDown 2s ease infinite;
  z-index: 5;
}

.hero-scroll-hint svg {
  stroke: rgba(255, 255, 255, 0.7);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Hero section overlay removed — orange gradient bg */
.hero-section::before {
  display: none;
}

/* Page edge decorative lines — aligned with hero-card edges */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 50;
}

body::before {
  left: 24px;
}

body::after {
  right: 24px;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  border-radius: 16px;
}

/* WebGL canvas fade-in */
canvas {
  opacity: 0;
  animation: canvas-fade-in 1s ease-out 0.2s both;
}

@keyframes canvas-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: calc(1130px + 64px);
  padding: 0 32px;
  padding-bottom: 80px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-title {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: clamp(34px, 4.25vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #fff;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}


/* Hero feature pills */
.hero-feature-pills {
  display: flex;
  gap: 12px;
  margin-top: 45px;
  align-items: stretch;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.hero-pill-icon svg {
  width: 20px;
  height: 20px;
}

.hero-pill-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary, #3D3229);
  opacity: 0.7;
  white-space: nowrap;
}

[data-theme="dark"] .hero-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .hero-pill-icon {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .hero-pill-icon svg {
  stroke: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .hero-pill-text {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .hero-subtitle {
  color: var(--text-muted, #8b949e);
}

/* Outer frame - solid orange border */
.title-search-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  margin-top: 0;
  margin-bottom: 8px;
  overflow: visible;
  width: 100%;
  max-width: 652px;
}

/* Inner input - dashed orange border */
.title-line-input {
  position: relative;
  display: flex;
  align-items: center;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='32' viewBox='0 0 16 32'%3E%3Cline x1='8' y1='2' x2='8' y2='30' stroke='%23000' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='4' y1='2' x2='12' y2='2' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='4' y1='30' x2='12' y2='30' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 8 16, text;
  padding: 16px 28px;
  width: 100%;
  height: 75px;
  border: 1.75px dashed rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  overflow: visible;
  outline: none;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
}

/* Corner squares on outer frame */
.title-search-frame .corner-tl,
.title-search-frame .corner-tr,
.title-search-frame .corner-bl,
.title-search-frame .corner-br {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 3;
}

.title-search-frame .corner-tl { top: -7px; left: -7px; }
.title-search-frame .corner-tr { top: -7px; right: -7px; }
.title-search-frame .corner-bl { bottom: -7px; left: -7px; }
.title-search-frame .corner-br { bottom: -7px; right: -7px; }

/* Blueprint-style L marks - hidden in Branch B */
.hero-title-wrapper::before,
.hero-title-wrapper::after,
.title-search-frame::before,
.title-search-frame::after {
  display: none;
}

/* Top-left: above "Look" - 4px gap */
.hero-title-wrapper::before {
  top: -4px;
  left: -4px;
  transform: translate(-100%, -100%);
  border-right: none;
  border-bottom: none;
}

/* Top-right: above "domain" - 4px gap */
.hero-title-wrapper::after {
  top: -4px;
  right: -4px;
  transform: translate(100%, -100%);
  border-left: none;
  border-bottom: none;
}

/* Bottom-left: below search bar - 4px gap */
.title-search-frame::before {
  bottom: -4px;
  left: -4px;
  transform: translate(-100%, 100%);
  border-right: none;
  border-top: none;
  z-index: 2;
}

/* Bottom-right: below search bar - 4px gap */
.title-search-frame::after {
  bottom: -4px;
  right: -4px;
  transform: translate(100%, 100%);
  border-left: none;
  border-top: none;
  z-index: 2;
}

.title-prompt {
  display: flex;
  align-items: center;
  color: var(--cf-orange);
  margin-right: 0.5em;
}

.title-prompt svg {
  width: 32px;
  height: 32px;
}

.title-typed {
  color: var(--text-primary);
  white-space: pre;
  font-weight: 400;
  order: 1;
}

.title-typed.typing-placeholder {
  color: #9ca3af;
}

.title-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--cf-orange);
  margin-left: 2px;
  margin-right: 0;
  animation: titleCursorBlink 1s ease-in-out infinite;
  vertical-align: baseline;
  border-radius: 1px;
  order: 2;
}

.title-cursor.cursor-left {
  order: 0;
  margin-left: 0;
  margin-right: 4px;
}

@keyframes titleCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-title-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: none;
  background: transparent;
  pointer-events: none;
}



body.searching .hero-section,
body.searching .features-section,
body.searching .why-section,
body.searching .pricing-section,
body.searching .ecosystem-section,
body.searching .footer-section {
  display: none;
}

/* Results Section */
.results-section {
  display: none;
  min-height: 100vh;
  padding: 120px 32px 80px;
  position: relative;
  background: 
    /* Subtle diagonal grid lines */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(0, 0, 0, 0.015) 80px,
      rgba(0, 0, 0, 0.015) 81px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(0, 0, 0, 0.015) 80px,
      rgba(0, 0, 0, 0.015) 81px
    ),
    /* Horizontal measurement lines */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 200px,
      rgba(251, 173, 130, 0.08) 200px,
      rgba(251, 173, 130, 0.08) 201px
    ),
    /* Vertical measurement lines */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 300px,
      rgba(251, 173, 130, 0.06) 300px,
      rgba(251, 173, 130, 0.06) 301px
    );
}

/* Blueprint corner marks for results section */
.results-section::before,
.results-section::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(251, 173, 130, 0.3);
  pointer-events: none;
  z-index: 0;
}

.results-section::before {
  top: 100px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.results-section::after {
  top: 100px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

body.searching .results-section {
  display: block;
}

.results-container {
  max-width: 1130px;
  margin: 0 auto;
}

.results-group {
  margin-bottom: 48px;
}

.results-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Domain card */
.domain-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.domain-card:hover {
  border-color: var(--cf-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.domain-card.featured {
  border-color: var(--cf-orange);
  border-width: 2px;
  background: linear-gradient(135deg, rgba(244, 129, 32, 0.05) 0%, transparent 100%);
}

.domain-name {
  font-size: 16px;
  font-weight: 500;
  word-break: break-all;
  color: var(--text-primary);
}

.domain-tld {
  color: var(--cf-orange);
}

.domain-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.domain-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.domain-status {
  font-size: 11px;
  padding: 3px 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.domain-status.available {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

.domain-status.premium {
  background: rgba(244, 129, 32, 0.1);
  color: var(--cf-orange);
}

.domain-status.taken {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
}

/* Marketing sections - shared dotted line background */
.features-section,
.why-section,
.pricing-section,
.ecosystem-section {
  position: relative;
  overflow: hidden;
}


/* Features Section */
.features-section {
  padding: 72px 32px;
  min-height: 20vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1130px;
  margin: 0 auto;
  width: 100%;
}

.features-section-title {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.85px;
  color: #2e1c11;
  margin-bottom: 48px;
  text-align: center;
}

.features-cards-container {
  position: relative;
  border: 1px solid rgba(220, 180, 140, 0.25);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: visible;
}

.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.features-card-single {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(220, 180, 140, 0.25);
  overflow: visible;
  transition: background 0.3s ease;
}

.features-card-single:last-child {
  border-right: none;
}

.features-card-single:hover {
  background: rgba(255, 80, 10, 0.02);
}

/* Corner squares for features container */
.features-cards-container .corner-sq {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(220, 180, 140, 0.25);
  border-radius: 3px;
  background: #fff;
  z-index: 2;
}

.features-cards-container .corner-tl {
  top: -7px;
  left: -7px;
}

.features-cards-container .corner-tr {
  top: -7px;
  right: -7px;
}

.features-cards-container .corner-bl {
  bottom: -7px;
  left: -7px;
}

.features-cards-container .corner-br {
  bottom: -7px;
  right: -7px;
}

/* Corner brackets removed */
.features-card-single::before,
.features-card-single::after,
.features-card-single .features-col-icon::before,
.features-card-single .features-col-icon::after,
.features-card-single .features-card-desc::before,
.features-card-single .features-card-desc::after,
.features-card-single .features-card-title::before,
.features-card-single .features-card-title::after {
  display: none;
}

.features-card-title {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #521000;
}

.features-card-desc {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #999;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-title-serif {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.85px;
  color: #2e1c11;
}

.section-link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.section-link:hover {
  color: var(--cf-orange);
}

.features-col-icon {
  width: 24px;
  height: 24px;
}

.features-col-icon svg {
  width: 100%;
  height: 100%;
}

/* Toolbox hover - lid opens orange */
.toolbox-lid {
  transition: transform 0.3s ease, fill 0.3s ease;
  transform-origin: 5px 14px;
}

.features-card-single:hover .toolbox-lid {
  transform: translateY(-3px) rotate(-8deg);
  fill: #FF4801;
}

/* Rocket hover - flame ignites */
.rocket-flame {
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: center center;
}

.features-card-single:hover .rocket-flame {
  opacity: 0.8;
  transform: scaleY(1.2);
}

.icon-rocket svg {
  transition: filter 0.3s ease;
}

.features-card-single:hover .icon-rocket svg {
  filter: drop-shadow(0 3px 4px rgba(244, 129, 32, 0.25));
}

/* Shield hover - fortify with orange shadow */
.shield-fill {
  transition: opacity 0.3s ease, fill 0.3s ease;
}

.icon-shield svg {
  transition: filter 0.3s ease;
}

.features-card-single:hover .icon-shield svg {
  filter: drop-shadow(2px 2px 1px #FF4801);
}

.features-card-single:hover .shield-fill {
  opacity: 0.3;
  fill: #FF4801;
}

.features-col-title {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.44px;
  color: #4a3b32;
}

/* Why Section */
.why-section {
  padding: 72px 32px;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.why-header {
  text-align: center;
  margin-bottom: 32px;
}

.why-title {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.85px;
  color: #2e1c11;
  margin-bottom: 16px;
}

.why-desc {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 17px;
  color: #8c7b70;
  line-height: 1.5;
  letter-spacing: -0.45px;
  max-width: 640px;
  margin: 0 auto;
}

.why-grid-wrap {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.why-grid-4 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto) repeat(3, auto);
  gap: 16px;
}

/* Crosshair — perfectly centered in wrapper */
.bp-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 4;
}
.bp-crosshair::before,
.bp-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(255, 80, 10, 0.25);
}
.bp-crosshair::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-0.5px);
}
.bp-crosshair::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-0.5px);
}

/* Blueprint decorations */
.bp-cross, .bp-mark, .bp-line {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}


/* Corner + registration marks */
.bp-mark {
  display: none;
}
.bp-mark-tl { top: -14px; left: -6px; }
.bp-mark-tr { top: -14px; right: -6px; }
.bp-mark-bl { bottom: -14px; left: -6px; }
.bp-mark-br { bottom: -14px; right: -6px; }

/* Vertical dashed line through center gap */
.bp-line-v {
  left: 50%;
  top: -20px;
  bottom: -20px;
  width: 0;
  border-left: none;
  transform: translateX(-0.5px);
}

/* Horizontal dashed line through center gap */
.bp-line-h {
  top: 50%;
  left: -20px;
  right: -20px;
  height: 0;
  border-top: none;
  margin-top: -0.5px;
}

/* Card base */
.why-card {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  align-content: end;
  padding: 24px;
  padding-top: 54px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  gap: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.02),
    0 0 32px rgba(0,0,0,0.02),
    0 2px 12px rgba(0,0,0,0.03);
}

/* Warm card variant — TL & BR */
.why-card-dark {
  background: #fff;
  border: 1px solid rgba(220, 180, 140, 0.35);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.why-card-dark::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: none;
  border-radius: 10px;
  pointer-events: none;
  z-index: 0;
}

.why-card-dark .why-card-title {
  color: #FF500A;
}

.why-card-dark .why-card-desc {
  color: rgba(61, 50, 41, 0.6);
}

.why-card-dark .why-card-icon {
  filter: none;
}

/* Light card variant — TR & BL */
.why-card-cream {
  background: #fff;
  border: 1px solid rgba(180, 155, 130, 0.25);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.why-card-cream::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: none;
  border-radius: 10px;
  pointer-events: none;
  z-index: 0;
}

.why-card-cream .why-card-title {
  color: #3D3229;
}

.why-card-cream .why-card-desc {
  color: rgba(61, 50, 41, 0.65);
}

.why-card-cream .why-card-icon {
  filter: none;
}

/* Card content — title and desc are separate grid rows via subgrid */
.why-card-content {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 6px;
}

.why-card-title {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.24px;
}

.why-card-desc {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

/* Card icon */
.why-card-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: left bottom;
  align-self: end;
}

/* Pricing Section */
.pricing-section {
  padding: 72px 32px;
  background: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.pricing-section-header {
  text-align: center;
  max-width: 600px;
}

.pricing-section-title {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.85px;
  color: #2e1c11;
  margin-bottom: 16px;
}

.pricing-section-desc {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  color: #8c7b70;
  line-height: 1.6;
  letter-spacing: -0.45px;
}

.pricing-bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  max-width: 1000px;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(200, 170, 140, 0.25);
  border-radius: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(0, 0, 0, 0.06) 6px,
      rgba(0, 0, 0, 0.06) 7.5px
    ),
    #fff;
}

.pricing-bento-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(220, 180, 140, 0.25);
  border-radius: 12px;
  overflow: visible;
  transition: box-shadow 0.3s ease;
}

.pricing-bento-card:last-child {
  background: #fff;
  border-color: rgba(232, 100, 20, 0.3);
}

.pricing-bento-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Corner decoration squares — hidden */
.corner-sq {
  display: none;
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(180, 150, 120, 0.4);
  background: #FEF7ED;
  z-index: 2;
  pointer-events: none;
}
.corner-tl { top: -6px; left: -6px; }
.corner-tr { top: -6px; right: -6px; }
.corner-bl { bottom: -6px; left: -6px; }
.corner-br { bottom: -6px; right: -6px; }

/* Pricing Box (bar chart card) */
.pricing-box {
  padding: 32px;
}

.pricing-box-header {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(200, 170, 140, 0.15);
}

.pricing-box-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.pricing-box-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 170, 140, 0.15);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.pricing-bars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.price-bar-item {
  position: relative;
}

.price-bar-item.competitor {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.price-bar-item.competitor:hover {
  opacity: 1;
}

.price-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.price-bar-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.price-bar-label.muted {
  font-weight: 400;
  color: #71717b;
}

.price-bar-item.cloudflare:hover .price-bar-label {
  color: var(--cf-orange);
}

.price-bar-value {
  font-family: 'SF Mono', 'Monaco', monospace;
  font-size: 16px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
}

.price-bar-value.green {
  background: #e8f0fe;
  color: #2563eb;
}

.price-bar-value.red {
  color: #333;
}

.price-bar-track {
  width: 100%;
  height: 16px;
  border-radius: 4px;
  border: 2px dashed rgba(37, 99, 235, 0.4);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(37, 99, 235, 0.08) 6px,
      rgba(37, 99, 235, 0.08) 7.5px
    ),
    #fff;
  position: relative;
  overflow: hidden;
}

.price-bar-track.muted {
  border-color: rgba(100, 100, 100, 0.2);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(100, 100, 100, 0.06) 6px,
      rgba(100, 100, 100, 0.06) 7.5px
    );
}

.price-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 1s ease-out;
}

.price-bar-fill.orange {
  background: #2563eb;
}

.price-bar-fill.gray {
  background: #333;
}

.price-bar-item.animated .price-bar-fill {
  width: var(--target-width);
}

/* TLD Card */
.tld-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: transparent;
}

.tld-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 0;
}

.tld-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  transition: all 0.15s ease;
}

.tld-pill:hover {
  border-color: #999;
  color: #111;
  background: #f5f5f5;
}

.tld-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
}

.tld-count-number {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 56px;
  font-weight: 500;
  color: #222;
  line-height: 1;
  letter-spacing: -2px;
}

.tld-count-label {
  font-family: 'FTKunstGrotesk', var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Ecosystem Section */
.ecosystem-section {
  position: relative;
  padding: 72px 32px;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Card wrapper - positioning parent for lines */
.ecosystem-card-wrap {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  overflow: visible;
}

/* Dashed background lines - positioned relative to card */
.eco-line {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.eco-line-left {
  top: -9999px;
  bottom: -9999px;
  left: 0;
  width: 0;
  border-left: none;
}

.eco-line-right {
  top: -9999px;
  bottom: -9999px;
  right: 0;
  width: 0;
  border-left: none;
}

.eco-line-top {
  left: -9999px;
  right: -9999px;
  top: 0;
  height: 0;
  border-top: none;
}

.eco-line-bottom {
  left: -9999px;
  right: -9999px;
  bottom: 0;
  height: 0;
  border-top: none;
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 48px;
}

.ecosystem-title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.85px;
  color: #2e1c11;
  margin-bottom: 24px;
}

.ecosystem-desc {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.6;
  color: #8c7b70;
  max-width: 712px;
  margin: 0 auto;
  letter-spacing: -0.45px;
}

.ecosystem-card-outline {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid #e6dcd3;
  background: #fff;
  pointer-events: none;
  z-index: 1;
}

.ecosystem-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6dcd3;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1), 0px 1px 2px -1px rgba(0,0,0,0.1);
  overflow: visible;
  z-index: 2;
}

.ecosystem-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ecosystem-col {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-right: 1px solid #e6dcd3;
}

.ecosystem-col-top {
  min-height: 110px;
  margin-bottom: 24px;
}

.ecosystem-col:last-child {
  border-right: none;
}

.ecosystem-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ecosystem-col-header h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  color: #2e1c11;
  letter-spacing: -0.45px;
}

.ecosystem-col-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.625;
  color: #8c7b70;
  letter-spacing: -0.15px;
  margin-bottom: 0;
}

.ecosystem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ecosystem-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #fdfcfb;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #4a3b32;
  letter-spacing: -0.14px;
}

.ecosystem-list li svg,
.ecosystem-list li .ecosystem-item-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.ecosystem-header-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ecosystem-btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ecosystem-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: #faf7f5;
  border-top: 1px solid #e6dcd3;
}

.ecosystem-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #e6dcd3;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: #4a3b32;
  text-decoration: none;
  letter-spacing: -0.31px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1), 0px 1px 2px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.ecosystem-btn:hover {
  background: #f5f0eb;
  border-color: #d4c9be;
}

.ecosystem-btn svg {
  flex-shrink: 0;
}

.ecosystem-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #fff;
  border: 1px solid #e6dcd3;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: #4a3b32;
  text-decoration: none;
  letter-spacing: -0.31px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1), 0px 1px 2px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.ecosystem-cta-btn:hover {
  background: #f5f0eb;
  border-color: #d4c9be;
  transform: translateY(-1px);
  box-shadow: 0px 2px 6px rgba(0,0,0,0.12);
}

[data-theme="dark"] .ecosystem-cta-btn {
  background: var(--card-bg);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  box-shadow: none;
}

[data-theme="dark"] .ecosystem-cta-btn:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Footer Section */
.footer-section {
  position: relative;
  background: #2a211b;
  padding: 120px 32px 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footerCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #3f342d;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 40px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-bottom: 80px;
}

.footer-cta:hover {
  background: #f5f0ec;
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-legal {
  font-style: normal;
}

.footer-copyright {
  white-space: nowrap;
}

/* Loading animation */
.loading {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  grid-column: 1 / -1;
}

.loading-dot {
  width: 6px;
  height: 6px;
  background: var(--cf-orange);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
.loading-dot:nth-child(3) { animation-delay: 0; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-card {
    border-radius: 0;
    margin: 0;
  }
  
  .hero-section {
    min-height: 640px;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-card {
    grid-template-columns: 1fr;
  }

  .features-col {
    border-right: none;
    border-bottom: 1px solid #e6dcd3;
  }

  .features-col:last-child {
    border-bottom: none;
  }
  
  .why-grid-4 {
    grid-template-columns: 1fr;
    max-width: 496px;
    gap: 0;
  }
  
  .why-card {
    border-radius: 0;
  }
  .why-card + .why-card {
    border-top: none;
  }
  .why-card:first-of-type { border-radius: 24px 24px 0 0; }
  .why-card:last-of-type { border-radius: 0 0 24px 24px; }
  
  .why-line { display: none; }
  .why-center-square { display: none; }
  .why-corner { display: none; }
  .why-plus { display: none; }
  
  .ecosystem-columns {
    grid-template-columns: 1fr;
  }
  
  .ecosystem-col {
    border-right: none;
    border-bottom: 1px solid #e6dcd3;
  }
  
  .ecosystem-col:last-child {
    border-bottom: none;
  }
  
  .ecosystem-card-outline {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-column: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 16px;
  }
  
  .hero-section,
  .results-section,
  .features-section,
  .why-section,
  .ecosystem-section,
  .footer-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .ecosystem-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .ecosystem-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .ecosystem-desc {
    font-size: 16px;
  }
  
  .ecosystem-col {
    padding: 24px;
  }
  
  .ecosystem-card-outline {
    display: none;
  }
  
  .eco-line {
    display: none;
  }
  
  .ecosystem-footer {
    flex-direction: column;
    gap: 12px;
  }
  
  .ecosystem-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .header-inner {
    padding: 0 16px;
    height: 56px;
    gap: 12px;
  }
  
  .header-nav {
    gap: 12px;
    flex-shrink: 0;
  }
  
  .nav-link {
    font-size: 12px;
    padding: 8px 12px;
    white-space: nowrap;
  }
  
  .nav-btn {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
  
  .logo {
    flex-shrink: 0;
  }
  
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  
  .logo-text-top {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  
  .logo-text-bottom {
    font-size: 16px;
  }
  
  .hero-card {
    margin: 0;
    border-radius: 0 0 16px 16px;
    max-width: none;
  }
  
  /* Hide logo and auth when scrolled past hero on mobile */
  body.header-scrolled-mobile .logo,
  body.header-scrolled-mobile .header-nav,
  body.searching .logo,
  body.searching .header-nav {
    display: none !important;
  }
  
  body.header-scrolled-mobile .header-search-frame,
  body.searching .header-search-frame {
    display: block !important;
    flex: 1 !important;
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  
  body.header-scrolled-mobile .header-inner,
  body.searching .header-inner {
    justify-content: center;
    padding: 0 16px;
  }
  
  /* Hero section mobile */
  .hero-section {
    padding-top: 80px;
    min-height: 100vh;
    padding-bottom: 40px;
  }
  
  .tld-count-number {
    font-size: 45px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .hero-feature-pills {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }
  
  .hero-pill {
    padding: 6px 10px;
  }
  
  .hero-pill-text {
    font-size: 11px;
    white-space: normal;
  }
  
  .hero-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 4px;
  }
  
  .title-cursor {
    width: 2px;
    height: 1em;
  }
  
  .title-search-frame {
    padding: 6px;
  }
  
  .title-line-input {
    width: 100%;
    padding: 12px 16px;
    height: 56px;
    font-size: clamp(16px, 4vw, 20px);
  }
  
  .title-prompt svg {
    width: 20px;
    height: 20px;
  }
  
  /* Corner squares smaller on mobile */
  .title-search-frame .corner-tl,
  .title-search-frame .corner-tr,
  .title-search-frame .corner-bl,
  .title-search-frame .corner-br {
    width: 10px;
    height: 10px;
    border-radius: 2px;
  }
  
  .title-search-frame .corner-tl { top: -5px; left: -5px; }
  .title-search-frame .corner-tr { top: -5px; right: -5px; }
  .title-search-frame .corner-bl { bottom: -5px; left: -5px; }
  .title-search-frame .corner-br { bottom: -5px; right: -5px; }
  
  /* L marks smaller on mobile */
  .hero-title-wrapper::before,
  .hero-title-wrapper::after,
  .title-search-frame::before,
  .title-search-frame::after {
    width: 12px;
    height: 12px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Pricing section mobile */
  .pricing-section {
    padding: 60px 16px;
    min-height: 100vh;
    gap: 32px;
  }
  
  .pricing-bento-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-box {
    padding: 24px 20px;
  }
  
  .pricing-section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .pricing-section-desc {
    font-size: 14px;
  }
  
  .tld-card {
    padding: 32px 20px;
  }
  
  /* Why section mobile */
  .why-section {
    padding: 60px 16px;
    min-height: 100vh;
  }
  
  .why-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .why-desc {
    font-size: 14px;
  }
  
  .why-card {
    padding: 20px;
  }
  
  .why-card-title {
    font-size: 18px;
  }
  
  .why-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .why-card-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .hero-scroll-hint {
    display: flex;
  }
  
  /* Features section mobile */
  .features-section {
    padding: 24px 16px;
    min-height: auto;
  }
  
  .features-grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .features-card-single {
    padding: 20px 16px;
  }
  
  .features-section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 16px;
  }
  
  .features-header h2 {
    font-size: clamp(28px, 7vw, 40px);
  }
  
  .features-col {
    padding: 24px 20px;
  }
  
  .features-col-title {
    font-size: 16px;
  }
  
  /* Footer mobile */
  .footer-section {
    padding: 60px 16px 32px;
  }
  
  .footer-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  .footer-cta {
    font-size: 13px;
    padding: 10px 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
  }
  
  /* Theme toggle mobile */
  .theme-toggle {
    bottom: 70px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  
  .theme-icon {
    width: 18px;
    height: 18px;
  }
  
  /* Header search mobile */
  .header-search-frame {
    padding: 3px;
  }
  
  .header-search {
    padding: 8px 12px;
    height: 36px;
    font-size: 14px;
  }
  
  .header-search-frame .corner-tl,
  .header-search-frame .corner-tr,
  .header-search-frame .corner-bl,
  .header-search-frame .corner-br {
    width: 6px;
    height: 6px;
  }
  
  .header-search-frame .corner-tl { top: -3px; left: -3px; }
  .header-search-frame .corner-tr { top: -3px; right: -3px; }
  .header-search-frame .corner-bl { bottom: -3px; left: -3px; }
  .header-search-frame .corner-br { bottom: -3px; right: -3px; }
}

/* Small mobile screens (480px and below) */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 10px;
    height: 52px;
    gap: 6px;
  }
  
  .logo-icon {
    width: 36px;
    height: 18px;
  }
  
  .header-nav {
    gap: 6px;
  }
  
  .nav-link {
    font-size: 11px;
    padding: 7px 10px;
  }
  
  .nav-btn {
    padding: 7px 12px;
    font-size: 11px;
  }
  
  .hero-title {
    font-size: 22px;
  }
  
  .title-line-input {
    padding: 10px 12px;
    height: 48px;
    font-size: 14px;
  }
}

/* Very small screens (375px and below - iPhone SE, Galaxy Z Fold, etc.) */
@media (max-width: 375px) {
  .header-inner {
    padding: 0 8px;
    height: 48px;
    gap: 4px;
  }
  
  .logo-icon {
    width: 32px;
    height: 16px;
  }
  
  .header-nav {
    gap: 4px;
  }
  
  .nav-link {
    font-size: 10px;
    padding: 6px 8px;
  }
  
  .nav-btn {
    padding: 6px 10px;
    font-size: 10px;
  }
  
  .hero-title {
    font-size: 20px;
  }
  
  .title-line-input {
    padding: 8px 10px;
    height: 44px;
    font-size: 13px;
  }
  
  .title-prompt svg {
    width: 16px;
    height: 16px;
  }
  
  .pricing-title {
    font-size: 22px;
  }
  
  .why-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .features-header h2 {
    font-size: 26px;
  }
  
  /* Header search on extra small screens */
  .header-search-frame {
    padding: 2px;
  }
  
  .header-search {
    padding: 6px 10px;
    height: 32px;
    font-size: 12px;
  }
}

/* Extremely small screens (Galaxy Z Fold 5, etc. - 344px) */
@media (max-width: 360px) {
  .header-inner {
    padding: 0 6px;
    height: 44px;
    gap: 3px;
  }
  
  .logo-icon {
    width: 28px;
    height: 14px;
  }
  
  .header-nav {
    gap: 3px;
  }
  
  .nav-link {
    font-size: 9px;
    padding: 5px 6px;
  }
  
  .nav-btn {
    padding: 5px 8px;
    font-size: 9px;
  }
}

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theme-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.theme-icon.moon {
  color: #1a1a2e;
}

.theme-icon.sun {
  display: none;
  color: #ffd700;
}

[data-theme="dark"] .theme-icon.moon {
  display: none;
}

[data-theme="dark"] .theme-icon.sun {
  display: block;
}

[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

[data-theme="dark"] .logo-icon {
  color: #ffffff;
}

[data-theme="dark"] .nav-btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: none;
}

[data-theme="dark"] .nav-btn:hover {
  background: #f0f0f0 !important;
}

[data-theme="dark"] .title-search-frame {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .title-line-input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .title-typed,
[data-theme="dark"] .title-typed.typing-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .title-search-frame .corner-tl,
[data-theme="dark"] .title-search-frame .corner-tr,
[data-theme="dark"] .title-search-frame .corner-bl,
[data-theme="dark"] .title-search-frame .corner-br {
  display: none;
}

[data-theme="dark"] .header-search-frame {
  border-color: rgba(255, 80, 10, 0.6);
  background: rgba(255, 80, 10, 0.05);
}

[data-theme="dark"] .header-search {
  background: rgba(20, 34, 56, 0.9);
  border-color: rgba(255, 80, 10, 0.4);
}

[data-theme="dark"] .header-search-frame .corner-tl,
[data-theme="dark"] .header-search-frame .corner-tr,
[data-theme="dark"] .header-search-frame .corner-bl,
[data-theme="dark"] .header-search-frame .corner-br {
  background: var(--bg);
  border-color: rgba(255, 80, 10, 0.4);
}

[data-theme="dark"] .hero-title-wrapper::before,
[data-theme="dark"] .hero-title-wrapper::after,
[data-theme="dark"] .title-search-frame::before,
[data-theme="dark"] .title-search-frame::after {
  display: none;
}

[data-theme="dark"] .domain-card {
  background: var(--card-bg);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .domain-card:hover {
  background: var(--card-hover);
  border-color: rgba(251, 173, 130, 0.3);
}

[data-theme="dark"] .nav-btn {
  background: var(--cf-orange);
  color: #fff;
}

[data-theme="dark"] .results-section {
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.02) 80px,
      rgba(255, 255, 255, 0.02) 81px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.02) 80px,
      rgba(255, 255, 255, 0.02) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 200px,
      rgba(100, 149, 237, 0.06) 200px,
      rgba(100, 149, 237, 0.06) 201px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 300px,
      rgba(147, 112, 219, 0.04) 300px,
      rgba(147, 112, 219, 0.04) 301px
    );
}

[data-theme="dark"] .results-section::before,
[data-theme="dark"] .results-section::after {
  border-color: rgba(100, 149, 237, 0.3);
}

[data-theme="dark"] body::before,
[data-theme="dark"] body::after {
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(100, 149, 237, 0.08) 4px,
      rgba(100, 149, 237, 0.08) 5px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(147, 112, 219, 0.06) 2px,
      rgba(147, 112, 219, 0.06) 3px
    );
}

[data-theme="dark"] .hero-section::before {
  border-color: rgba(100, 149, 237, 0.08);
}

/* Dark mode hero card - dark navy with pink-purple gradient */
[data-theme="dark"] body {
  background-color: #0a0e14;
}

/* Dark mode background lines */
[data-theme="dark"] .bg-dot-pattern circle {
  fill: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .bg-lines-inner {
  background-color: #0a0e14;
}

[data-theme="dark"] .bg-dash-line {
  background: linear-gradient(to bottom, rgba(255,255,255,0.06) 50%, transparent 50%);
  background-size: 1px 32px;
}

[data-theme="dark"] .section-dash-line line {
  stroke: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .hero-card {
  background: linear-gradient(
    180deg,
    #0a0e14 0%,
    #0c1018 30%,
    #0e1420 50%,
    #12182a 70%,
    #1a1a35 85%,
    #251a38 100%
  );
}

[data-theme="dark"] .hero-divider {
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.15) 0,
    rgba(255, 255, 255, 0.15) 40px,
    transparent 40px,
    transparent 60px
  );
}

[data-theme="dark"] .hero-section {
  background: transparent;
}

/* Hide WebGL background in dark mode */
[data-theme="dark"] .hero-section > div[data-us-project] {
  display: none;
}

/* Dark mode marketing sections - with background interaction */
[data-theme="dark"] .features-section,
[data-theme="dark"] .why-section,
[data-theme="dark"] .pricing-section,
[data-theme="dark"] .ecosystem-section {
  background: transparent;
}

[data-theme="dark"] .features-section-title {
  color: #fff;
}

[data-theme="dark"] .features-card-single {
  background: var(--card-bg);
  border-color: rgba(255, 80, 10, 0.4);
}

[data-theme="dark"] .features-card-title {
  color: #fff;
}

[data-theme="dark"] .features-card {
  background: var(--card-bg);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .features-col {
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .features-col-title {
  color: var(--text-primary);
}

[data-theme="dark"] .features-col-icon svg path {
  fill: #fff;
}

[data-theme="dark"] .features-col-icon svg rect,
[data-theme="dark"] .features-col-icon svg line {
  stroke: #fff;
}

[data-theme="dark"] .toolbox-lid {
  fill: #6b7280;
}

[data-theme="dark"] .rocket-flame {
  fill: #FF4801;
}

[data-theme="dark"] .why-title {
  color: var(--text-primary);
}

[data-theme="dark"] .why-desc {
  color: var(--text-muted);
}

[data-theme="dark"] .why-card-dark {
  background: var(--card-bg);
  border-color: rgba(255, 80, 10, 0.3);
}

[data-theme="dark"] .why-card-dark::before {
  border-color: rgba(255, 80, 10, 0.15);
}

[data-theme="dark"] .why-card-cream {
  background-color: var(--card-bg);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .why-card-cream::before {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .why-card-dark .why-card-title {
  color: #FF500A;
}

[data-theme="dark"] .why-card-cream .why-card-title {
  color: #fff;
}

[data-theme="dark"] .why-card-desc {
  color: var(--text-muted);
}

[data-theme="dark"] .why-card-dark .why-card-icon {
  filter: none;
}

[data-theme="dark"] .why-card-cream .why-card-icon {
  filter: brightness(0) invert(1) opacity(0.7);
}

[data-theme="dark"] .bp-crosshair::before,
[data-theme="dark"] .bp-crosshair::after {
  background: rgba(255, 80, 10, 0.3);
}

[data-theme="dark"] .bp-line-v {
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .bp-line-h {
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .bp-mark {
  color: rgba(255, 255, 255, 0.15);
}



[data-theme="dark"] .pricing-section-title {
  color: var(--text-primary);
}

[data-theme="dark"] .pricing-section-desc {
  color: var(--text-muted);
}

[data-theme="dark"] .price-bar-value.green {
  background: #2563eb;
  color: #fff;
}

[data-theme="dark"] .pricing-bento-grid {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(255, 255, 255, 0.03) 6px,
      rgba(255, 255, 255, 0.03) 7.5px
    ),
    var(--card-bg);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Dark mode pricing section */
[data-theme="dark"] .pricing-bento-card {
  background: rgba(10, 14, 20, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .pricing-box-header,
[data-theme="dark"] .pricing-box-footer {
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .pricing-box-label {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .price-bar-name {
  color: #fff;
}

[data-theme="dark"] .price-bar-value.red {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .price-bar-track {
  border-color: rgba(37, 99, 235, 0.3);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(37, 99, 235, 0.08) 6px,
      rgba(37, 99, 235, 0.08) 7.5px
    );
}

[data-theme="dark"] .price-bar-track.muted {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(255, 255, 255, 0.03) 6px,
      rgba(255, 255, 255, 0.03) 7.5px
    );
}

[data-theme="dark"] .price-bar-fill.gray {
  background: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .tld-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .tld-count-number {
  color: #fff;
}

[data-theme="dark"] .tld-count-label {
  color: #fff;
}

[data-theme="dark"] .corner-sq {
  background: var(--card-bg);
  border-color: rgba(255, 80, 10, 0.3);
}



[data-theme="dark"] .ecosystem-section {
  background: transparent;
}


[data-theme="dark"] .eco-line {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .ecosystem-card-outline {
  background: var(--bg);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .ecosystem-title {
  color: var(--text-primary);
}

[data-theme="dark"] .ecosystem-desc {
  color: var(--text-muted);
}

[data-theme="dark"] .ecosystem-card {
  background: var(--card-bg);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .ecosystem-col {
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .ecosystem-col-header h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .ecosystem-col-desc {
  color: var(--text-muted);
}

[data-theme="dark"] .ecosystem-list li {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

[data-theme="dark"] .ecosystem-list li svg {
  color: var(--text-muted);
}

[data-theme="dark"] .ecosystem-item-icon {
  filter: invert(0.7);
}

[data-theme="dark"] .ecosystem-btn-icon {
  filter: invert(0.8);
}

[data-theme="dark"] .ecosystem-col-title {
  color: var(--text-primary);
}

[data-theme="dark"] .ecosystem-item-label {
  color: var(--text-secondary);
}

[data-theme="dark"] .ecosystem-footer {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .ecosystem-btn {
  background: var(--card-bg);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  box-shadow: none;
}

[data-theme="dark"] .ecosystem-btn:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .footer-section {
  background: #0a0e14;
}


/* Dark mode background canvas - visible in marketing sections */
[data-theme="dark"] #backgroundCanvas {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1 !important;
}

[data-theme="dark"] .header-search-input {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='32' viewBox='0 0 16 32'%3E%3Cline x1='8' y1='2' x2='8' y2='30' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='4' y1='2' x2='12' y2='2' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='4' y1='30' x2='12' y2='30' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 8 16, text;
}

[data-theme="dark"] .title-line-input {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='32' viewBox='0 0 16 32'%3E%3Cline x1='8' y1='2' x2='8' y2='30' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'/%3E%3Cline x1='4' y1='2' x2='12' y2='2' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='4' y1='30' x2='12' y2='30' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 8 16, text;
}

[data-theme="dark"] .hero-title {
  color: #ffffff;
}

[data-theme="dark"] .title-prompt {
  color: rgba(255, 255, 255, 0.7);
}
