/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: "Inter", sans-serif; color: #141414; background: #fff; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }
::selection { background: rgba(255, 99, 33, 0.3); }

/* ── Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(253, 251, 247, 0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-logo {
  width: 40px; height: 40px; background: #FF6321; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 99, 33, 0.2); overflow: hidden;
}
.navbar-logo img { width: 100%; height: 100%; object-fit: cover; }
.navbar-logo-img { height: 40px; width: auto; }
.navbar-title { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.025em; color: #141414; }
.navbar-subtitle {
  font-size: 0.875rem; color: #9ca3af; font-weight: 500;
  margin-left: 12px; padding-left: 12px; border-left: 1px solid #e5e7eb;
}
.navbar-links { display: flex; align-items: center; gap: 2.5rem; }
.navbar-links a { font-size: 0.875rem; font-weight: 700; color: #4b5563; transition: color 0.2s; }
.navbar-links a:hover { color: #FF6321; }
.lang-select {
  appearance: none; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 8px;
  padding: 6px 28px 6px 10px; font-size: 0.8rem; font-weight: 700; color: #4b5563;
  cursor: pointer; outline: none; transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}
.lang-select:hover { border-color: #FF6321; }
.lang-select-mobile {
  appearance: none; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 10px 36px 10px 16px; font-size: 1rem; font-weight: 700; color: #4b5563;
  cursor: pointer; outline: none; width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.navbar-cta {
  background: #4CAF50; color: #fff; padding: 10px 24px; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 700; border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}
.navbar-cta:hover { background: #43a047; transform: scale(1.05); }

/* Mobile menu */
.mobile-menu-btn {
  display: none; background: none; border: none; color: #4b5563;
  padding: 8px; border-radius: 8px; cursor: pointer; transition: background 0.2s;
}
.mobile-menu-btn:hover { background: #f3f4f6; }
.mobile-menu-btn svg { width: 28px; height: 28px; }
.mobile-menu {
  display: none; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 24px 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 1.125rem; font-weight: 700; color: #4b5563; padding: 8px 16px; }
.mobile-menu .mobile-cta {
  display: block; width: 100%; background: #4CAF50; color: #fff;
  padding: 16px; border-radius: 16px; font-size: 1.125rem; font-weight: 700;
  border: none; cursor: pointer; margin-top: 16px;
}

@media (max-width: 767px) {
  .navbar-links, .navbar-subtitle { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ── Hero ── */
.hero {
  padding: 160px 0 96px; background: #0A192F; color: #fff;
  position: relative; overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
  background: radial-gradient(#ffffff 1px, transparent 1px); background-size: 40px 40px;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; line-height: 0.9; margin-bottom: 32px; letter-spacing: -0.05em; }
.hero h1 .highlight { color: #FFB800; }
.hero-subtitle { font-size: 1.25rem; color: #9ca3af; margin-bottom: 48px; max-width: 32rem; line-height: 1.6; font-weight: 500; }
.hero-cta {
  background: #FF6321; color: #fff; padding: 20px 40px; border-radius: 16px;
  font-size: 1.125rem; font-weight: 900; border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 16px 40px rgba(255, 99, 33, 0.4);
}
.hero-cta:hover { background: #E55A1E; transform: scale(1.05); }

/* Hero visual */
.hero-visual { max-width: 600px; margin: 0 auto; }
.hero-img { display: flex; align-items: center; justify-content: center; }
.hero-img img { width: 100%; height: auto; object-fit: contain; border-radius: 40px; box-shadow: 0 50px 100px rgba(0,0,0,0.5); }

/* Cassette cluster */
.cassette-cluster { position: absolute; bottom: -40px; right: 0; width: 320px; z-index: 1; transform: rotate(10deg); }
.cassette {
  background: #141414; border-radius: 12px; border: 2px solid #374151; padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); transform: rotate(-5deg);
}
.cassette-label { background: rgba(255,255,255,0.9); border-radius: 2px; padding: 8px; margin-bottom: 16px; }
.cassette-label p { font-size: 10px; font-family: monospace; font-weight: 700; color: #1f2937; }
.cassette-reels { display: flex; justify-content: center; gap: 32px; margin-bottom: 16px; }
.cassette-reel {
  width: 48px; height: 48px; border-radius: 50%; border: 4px solid #374151;
  display: flex; align-items: center; justify-content: center;
}
.cassette-reel-inner { width: 16px; height: 16px; background: #374151; border-radius: 50%; }
.cassette-footer { background: rgba(255,255,255,0.1); border-radius: 2px; padding: 4px; }
.cassette-footer p { font-size: 8px; font-family: monospace; color: rgba(255,255,255,0.5); text-align: center; }
.cassette-peek {
  position: absolute; top: -48px; right: -48px; background: #141414; border-radius: 12px;
  border: 2px solid #374151; padding: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: rotate(15deg); z-index: -1; opacity: 0.6;
}

/* ── Meet Banner ── */
.meet-banner { padding: 96px 0; background: #FDFBF7; }
.meet-banner-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .meet-banner-grid { grid-template-columns: 2fr 1fr; gap: 64px; } }
.meet-banner-img { margin: 0 auto; }
.meet-banner-img img { width: 100%; border-radius: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.meet-banner-text {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: #141414;
  letter-spacing: -0.04em; line-height: 1.05; text-align: center;
}
@media (min-width: 768px) { .meet-banner-text { text-align: left; } }

/* ── Features ── */
.features { padding: 128px 0; background: #FDFBF7; }
.section-tag { color: #FF6321; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; margin-bottom: 16px; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #141414; letter-spacing: -0.025em; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 80px; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: #fff; padding: 48px; border-radius: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05);
  text-align: center; transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.feature-icon {
  width: 80px; height: 80px; background: #FDFBF7; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.025em; }
.feature-card p { color: #6b7280; line-height: 1.6; font-weight: 500; }

/* ── Team ── */
.team { padding: 96px 0; background: #fff; }
.team .container { max-width: 1280px; }
.team-tag { color: #FFB800; font-weight: 700; font-size: 0.75rem; margin-bottom: 8px; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(5, 1fr); } }

.member-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #f3f4f6; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 12px;
}
.member-img { border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
.member-img img { width: 100%; }

.member-info { padding: 0 4px 16px; position: relative; min-height: 140px; }
.member-info h3 { font-size: 1.25rem; font-weight: 900; color: #141414; }
.member-info .role { font-size: 11px; color: #9ca3af; font-weight: 500; margin-bottom: 16px; line-height: 1.3; }
.member-info .tasks-label { font-size: 11px; font-weight: 700; color: #141414; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.member-info .tasks li {
  font-size: 11px; color: #6b7280; line-height: 1.3;
  display: flex; align-items: flex-start; gap: 6px; margin-bottom: 4px;
}
.member-info .tasks li::before {
  content: ""; display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: #9ca3af; flex-shrink: 0; margin-top: 5px;
}

/* Mini cassette on card */
.mini-cassette {
  position: absolute; bottom: 0; right: 0; width: 80px; height: 44px;
  background: #141414; border-radius: 6px; border: 1px solid #374151;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); padding: 6px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotate(-6deg); transition: transform 0.3s; z-index: 1;
}
.member-card:hover .mini-cassette { transform: rotate(0deg); }
.mini-cassette-reels { display: flex; justify-content: space-between; align-items: center; padding: 0 2px; }
.mini-reel {
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid #4b5563;
  display: flex; align-items: center; justify-content: center;
}
.mini-reel-inner { width: 4px; height: 4px; background: #4b5563; border-radius: 50%; }
.mini-cassette-bar { flex: 1; height: 4px; background: #1f2937; border-radius: 9999px; margin: 0 6px; }
.mini-cassette-label {
  background: rgba(255,255,255,0.1); border-radius: 1px;
  font-size: 5px; font-family: monospace; color: rgba(255,255,255,0.5);
  text-align: center; text-transform: uppercase; letter-spacing: -0.05em;
}

/* Pagination dots */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.dot { width: 6px; height: 6px; border-radius: 9999px; background: #e5e7eb; }
.dot.active { width: 16px; background: #FFB800; }

/* ── Integrations ── */
.integrations { padding: 128px 0; background: #fff; }
.integrations-grid { display: grid; grid-template-columns: 1fr; gap: 96px; align-items: flex-start; }
@media (min-width: 1024px) { .integrations-grid { grid-template-columns: 1fr 1fr; } }
.integrations-tag { color: #FF6321; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; margin-bottom: 24px; }
.integrations h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 32px; line-height: 1.1; letter-spacing: -0.025em; color: #141414; }
.integrations-subtitle { font-size: 1.25rem; color: #6b7280; margin-bottom: 48px; font-weight: 500; line-height: 1.6; }

.icons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
@media (min-width: 640px) { .icons-grid { grid-template-columns: repeat(6, 1fr); } }
.icon-box {
  background: #FDFBF7; aspect-ratio: 1; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; padding: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.icon-box:hover { transform: scale(1.1); }
.icon-box img { width: 100%; height: 100%; object-fit: contain; }
.icons-more { font-size: 0.875rem; font-weight: 700; color: #9ca3af; font-style: italic; }

.benefits-stack { display: flex; flex-direction: column; gap: 24px; }
.benefit-card {
  background: #FDFBF7; padding: 40px; border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s;
}
.benefit-card:hover { background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateX(10px); }
.benefit-card h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.025em; color: #141414; }
.benefit-card p { color: #6b7280; font-weight: 500; line-height: 1.6; }

/* ── Contact ── */
.contact { padding: 128px 0; background: #fff; }
.contact-card {
  background: #5D4599; border-radius: 60px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(93, 69, 153, 0.3);
}
@media (min-width: 1024px) { .contact-card { flex-direction: row; } }
.contact-left {
  padding: 64px; color: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 1024px) { .contact-left { width: 50%; padding: 96px; } }
.contact-left h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 32px; letter-spacing: -0.05em; line-height: 0.9; }
.contact-left p { font-size: 1.25rem; color: #d8b4fe; font-weight: 500; line-height: 1.6; }
.contact-circle-1 {
  position: absolute; top: 0; right: 0; width: 256px; height: 256px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
  transform: translate(50%, -50%);
}
.contact-circle-2 {
  position: absolute; bottom: 0; left: 0; width: 128px; height: 128px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
  transform: translate(-50%, 50%);
}

.contact-right { background: #fff; padding: 64px; }
@media (min-width: 1024px) { .contact-right { width: 50%; padding: 96px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 32px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 900; color: #9ca3af;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.form-input {
  width: 100%; padding: 16px 24px; border-radius: 16px;
  background: #f9fafb; border: none; outline: none;
  font-weight: 500; transition: box-shadow 0.2s;
}
.form-input:focus { box-shadow: 0 0 0 4px rgba(93, 69, 153, 0.1); }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
select.form-input option[disabled] { color: #9ca3af; }
textarea.form-input { height: 160px; resize: none; }
.form-submit {
  width: 100%; background: #141414; color: #fff; padding: 24px;
  border-radius: 16px; font-weight: 900; font-size: 1.125rem;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); margin-top: 32px;
}
.form-submit:hover { background: #1f2937; transform: scale(1.02); }

/* ── Footer ── */
.footer { padding: 80px 0; background: #FDFBF7; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 48px; margin-bottom: 80px; }
@media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; } }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.footer-links a { font-size: 0.875rem; font-weight: 700; color: #6b7280; transition: color 0.2s; }
.footer-links a:hover { color: #FF6321; }
.footer-socials { display: flex; gap: 16px; }
.footer-social {
  width: 48px; height: 48px; background: #fff; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05); transition: all 0.2s;
}
.footer-social:hover { color: #FF6321; transform: scale(1.1); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { text-align: center; }
.footer-tagline { font-size: 0.875rem; font-weight: 900; color: #d1d5db; text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 16px; }
.footer-rights { font-size: 0.75rem; color: #9ca3af; font-weight: 500; }

/* ── Shared ── */
.text-center { text-align: center; }
