/* ============================================
   SQUIDWERKS — Tattoo Umami
   ============================================ */

@font-face {
  font-family: 'MightySouly';
  src: url('MightySouly.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: rgba(255,255,255,0.1);
  --accent: #4004d1;
  --accent-light: #5a1ef5;
  --accent-dim: rgba(64, 4, 209, 0.15);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --text-dim: rgba(255,255,255,0.75);
  --white: #ffffff;
  --black: #000000;
  --font-display: 'MightySouly', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(64, 4, 209, 0.45);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 12px 16px; font-size: 16px; }

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* ============ HERO ============ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: #000;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 260px);
  color: rgba(64, 4, 209, 0.07);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.hero-tentacles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.t {
  position: absolute;
  font-size: 80px;
  opacity: 0.07;
  animation: float 8s ease-in-out infinite;
}
.t1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 60px; }
.t2 { top: 60%; right: 4%; animation-delay: 3s; font-size: 100px; }
.t3 { bottom: 10%; left: 12%; animation-delay: 5s; font-size: 50px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============ SECTION COMMON ============ */

section { padding: 100px 0; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 60px;
  text-align: center;
}

/* ============ PRODUCT ============ */

.product {
  background: var(--bg-2);
  text-align: center;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
  margin-top: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/* CSS Ink Bottle */
.ink-bottle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 20px 40px rgba(64, 4, 209, 0.3));
}

.bottle-cap {
  width: 36px;
  height: 28px;
  background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.bottle-body {
  width: 110px;
  height: 220px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #0a0a0a 100%);
  border-radius: 8px 8px 16px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bottle-body::before {
  content: '';
  position: absolute;
  top: 0; left: 12px;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), transparent);
  border-radius: 4px;
}

.bottle-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 10px;
  background: rgba(64, 4, 209, 0.12);
  border: 1px solid rgba(64, 4, 209, 0.3);
  border-radius: 6px;
  width: 80px;
  text-align: center;
}

.label-logo { font-size: 20px; }
.label-name {
  font-family: var(--font-display);
  font-size: 7px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
}
.label-variant {
  font-size: 6px;
  letter-spacing: 0.1em;
  color: #7a4fff;
  font-weight: 600;
}
.label-ml {
  font-size: 7px;
  color: rgba(255,255,255,0.3);
}

.product-name {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 28px;
}

.product-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 4px;
}

.product-quote {
  border-left: 2px solid var(--accent);
  padding: 12px 0 12px 20px;
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}

.product-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.product-price {
  margin-bottom: 24px;
}

.price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--white);
}

.price-unit {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 8px;
}

.product-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ============ ABOUT ============ */

.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.about-text strong { color: var(--white); }

.about-text .btn-ghost { margin-top: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ TESTIMONIALS ============ */

.testimonials {
  background: var(--bg-2);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  font-size: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: 50%;
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 14px;
  color: var(--white);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============ FOUNDERS ============ */

.founders {
  background: var(--bg);
  text-align: center;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 60px auto 0;
}

.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  border: 2px solid var(--accent);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-photo {
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 2px dashed var(--border);
}

.placeholder-photo span { font-size: 28px; }

.placeholder-photo p {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.founder-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
}

.founder-title {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.founder-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.founder-handle {
  color: var(--accent-light);
  text-decoration: none;
  transition: opacity 0.2s;
}
.founder-handle:hover { opacity: 0.75; }

/* ============ FINAL CTA ============ */

.final-cta {
  background: var(--accent);
  text-align: center;
  padding: 100px 24px;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.final-cta .btn-primary {
  background: var(--white);
  color: var(--accent);
}

.final-cta .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ============ FOOTER ============ */

.footer {
  padding: 60px 24px;
  text-align: center;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============ MODAL ============ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--surface);
  border: 1px solid rgba(64, 4, 209, 0.4);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s ease;
  box-shadow: 0 0 80px rgba(64, 4, 209, 0.15), 0 24px 60px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }

.modal-icon {
  font-size: 56px;
  margin-bottom: -10px;
  animation: wobble 0.6s ease 0.3s both;
}

@keyframes wobble {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg) scale(1.2); }
  50% { transform: rotate(15deg) scale(1.2); }
  75% { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

.modal-title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--white);
}

.modal-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.modal-pitch {
  font-size: 16px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 28px;
}

.modal-pitch em {
  color: #7a4fff;
  font-style: normal;
  font-weight: 600;
}

.modal-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}

.modal-sub {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 768px) {
  .nav-links a { display: none; }

  .product-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .modal {
    padding: 40px 28px;
  }
}
