/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Color Variables - Sunset Coral & Cyber Rose Theme */
:root {
  --bg-primary: #070509;
  --bg-secondary: #0e0a12;
  --bg-glass: rgba(18, 12, 24, 0.45);
  --bg-glass-card: rgba(22, 14, 30, 0.55);
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glass-hover: rgba(255, 255, 255, 0.12);
  --border-glass-focus: rgba(255, 107, 74, 0.35);
  
  --text-primary: #ffffff;
  --text-secondary: #a09bab;
  --text-muted: #6a6475;
  
  --accent-cyan: #ff6b4a; /* Sunset Coral */
  --accent-purple: #ff1b6b; /* Cyber Rose Fuchsia */
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.25);
  --accent-glow: radial-gradient(circle, rgba(255, 107, 74, 0.15) 0%, rgba(255, 27, 107, 0.05) 70%, transparent 100%);
  
  --font-display: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Canvas Background */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, #20101b 0%, var(--bg-primary) 70%);
}

/* Outer Wrapper & Grid */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 107, 74, 0.3);
}

.logo-icon svg {
  fill: #fff;
  width: 18px;
  height: 18px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green);
  box-shadow: 0 0 15px var(--accent-green-glow);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-green);
  border-radius: 50%;
  animation: ripple 1.6s infinite ease-in-out;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Language Toggle Button */
.lang-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.lang-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
}

.domain-display-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  min-height: 280px;
}

/* Acoustic Waves behind domain */
.soundwave-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.wave-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 74, 0.04);
  background: radial-gradient(circle, rgba(255, 107, 74, 0.02) 0%, rgba(255, 27, 107, 0.005) 75%, transparent 100%);
  animation: pulseWave 10s infinite linear;
}

.wave-circle:nth-child(1) {
  width: 320px;
  height: 320px;
  animation-duration: 6s;
  border-color: rgba(255, 107, 74, 0.08);
}

.wave-circle:nth-child(2) {
  width: 480px;
  height: 480px;
  animation-duration: 9s;
  animation-delay: -2s;
  border-style: dashed;
  border-color: rgba(255, 27, 107, 0.06);
}

.wave-circle:nth-child(3) {
  width: 640px;
  height: 640px;
  animation-duration: 12s;
  animation-delay: -4s;
  border-color: rgba(255, 107, 74, 0.04);
}

@keyframes pulseWave {
  0% {
    transform: scale(0.85) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05) rotate(180deg);
    opacity: 0.9;
  }
  100% {
    transform: scale(0.85) rotate(360deg);
    opacity: 0.3;
  }
}

/* Sound Bars (Faux Visualizer) */
.sound-bars {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 60px;
}

.bar {
  width: 3px;
  height: 10px;
  background: linear-gradient(to top, var(--accent-purple), var(--accent-cyan));
  border-radius: 3px;
  animation: soundBounce 1.2s ease-in-out infinite alternate;
}

/* Stagger animation delays for natural wave look */
.bar:nth-child(1) { height: 15px; animation-delay: -0.1s; }
.bar:nth-child(2) { height: 35px; animation-delay: -0.3s; }
.bar:nth-child(3) { height: 20px; animation-delay: -0.6s; }
.bar:nth-child(4) { height: 45px; animation-delay: -0.2s; }
.bar:nth-child(5) { height: 25px; animation-delay: -0.8s; }
.bar:nth-child(6) { height: 12px; animation-delay: -0.4s; }
.bar:nth-child(7) { height: 40px; animation-delay: -0.5s; }
.bar:nth-child(8) { height: 30px; animation-delay: -0.7s; }
.bar:nth-child(9) { height: 15px; animation-delay: -0.9s; }

@keyframes soundBounce {
  0% { transform: scaleY(0.3); opacity: 0.3; }
  100% { transform: scaleY(1); opacity: 1; }
}

.domain-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 30%, #d8c3df 70%, #ff6b4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px rgba(255, 107, 74, 0.15);
  position: relative;
  z-index: 5;
  transition: var(--transition-smooth);
}

.domain-name:hover {
  transform: scale(1.03);
  text-shadow: 0 0 100px rgba(255, 107, 74, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
}

/* Quick Stats Row */
.quick-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.quick-stats span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 100px;
}

/* CTA & Info Panel */
.main-offer-panel {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto 80px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.main-offer-panel::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 27, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.price-section {
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 40px;
}

.price-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.price-value-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price-currency {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.price-amount {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-display);
  background: linear-gradient(to right, #ffffff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-tag-sub {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

.contact-section {
  text-align: left;
}

.contact-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.owner-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.owner-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.1), rgba(255, 27, 107, 0.1));
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.owner-details {
  display: flex;
  flex-direction: column;
}

.owner-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.owner-role {
  font-size: 12px;
  color: var(--text-muted);
}

.email-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.email-address {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-primary);
  user-select: all;
}

.copy-btn {
  background: transparent;
  border: none;
  color: var(--accent-cyan);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.copy-btn:hover {
  background: rgba(255, 107, 74, 0.08);
  transform: scale(1.05);
}

.copy-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.action-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
}

.btn {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 30px rgba(255, 107, 74, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 107, 74, 0.4);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Bento Grid Highlights */
.bento-section {
  padding: 40px 0 80px;
}

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 48px;
}

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

.bento-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card-1 {
  grid-column: span 7;
}

.bento-card-2 {
  grid-column: span 5;
}

.bento-card-3 {
  grid-column: span 5;
}

.bento-card-4 {
  grid-column: span 7;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
}

.bento-card:nth-child(even) .card-icon {
  color: var(--accent-purple);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.card-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact / Offer Section */
.inquiry-section {
  padding: 80px 0 120px;
}

.inquiry-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.inquiry-header {
  text-align: center;
  margin-bottom: 36px;
}

.inquiry-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.inquiry-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.form-label span {
  font-weight: 400;
  color: var(--text-muted);
}

.input-field {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

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

.input-field:focus {
  border-color: var(--border-glass-focus);
  box-shadow: 0 0 15px rgba(255, 107, 74, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.price-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.price-prefix {
  position: absolute;
  left: 18px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
}

.price-input-wrapper .input-field {
  padding-left: 36px;
}

.price-tip {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  transition: var(--transition-fast);
}

.price-tip.active {
  color: var(--accent-cyan);
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  background: rgba(22, 14, 30, 0.95);
  border: 1px solid var(--border-glass-focus);
  border-radius: 12px;
  padding: 14px 24px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--accent-cyan);
  display: flex;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 3, 5, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #0e0a12;
  border: 1px solid var(--border-glass-focus);
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.show .modal {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.modal p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.security-tip {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .main-offer-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  
  .price-section {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 32px;
  }
  
  .bento-card-1, .bento-card-2, .bento-card-3, .bento-card-4 {
    grid-column: span 12;
  }
}

@media (max-width: 600px) {
  header {
    padding: 24px 0;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .domain-display-container {
    min-height: 200px;
    margin-bottom: 20px;
  }
  
  .inquiry-container {
    padding: 32px 24px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
