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

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --bg-dark: #111011;
  --ink: #141217;
  --ink-muted: #5e5a66;
  --accent: #e85d3a;
  --accent-2: #0c5a6d;
  --accent-3: #e9f6ff;
  --card: #ffffff;
  --glass: rgba(255, 255, 255, 0.64);
  --border: rgba(20, 18, 23, 0.1);
  --shadow: 0 30px 60px rgba(10, 9, 12, 0.14);
  --radius: 22px;
}

body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.hidden {
  display: none !important;
}

.lang-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 30;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 18, 23, 0.12);
}

.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(10, 9, 12, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lang-modal-card {
  width: min(520px, 96vw);
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.lang-modal-card h2 {
  margin-bottom: 8px;
}

.lang-modal-card p {
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.lang-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  position: relative;
  z-index: 2;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.hero {
  min-height: 82vh;
  background: radial-gradient(circle at top, #fef7f0, #f1e9e1 65%, #e6e0db);
  position: relative;
  overflow: hidden;
}

.sales-banner {
  padding-top: 26px;
}

.sales-banner-card {
  background: linear-gradient(135deg, #0b1b3a 0%, #243b7a 55%, #1b4d7f 100%);
  color: #f5f7ff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(132, 168, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 20px 40px rgba(12, 21, 44, 0.25);
}

.sales-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: rgba(214, 228, 255, 0.8);
  margin-bottom: 10px;
}

.sales-banner-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 1.7vw + 1rem, 2.4rem);
}

.sales-banner-card p {
  color: rgba(226, 236, 255, 0.86);
  max-width: 60ch;
}

.hero-content {
  padding: 10vh 6vw 12vh;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--accent-2);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 4.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.1rem;
  max-width: 720px;
  color: var(--ink-muted);
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

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

.btn.wide {
  width: 100%;
}

.section {
  padding: 80px 6vw;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--ink-muted);
}

.cards,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.social-boost {
  background: linear-gradient(120deg, #f7fbff 0%, #eef4ff 100%);
}

.boost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.boost-card {
  background: #fff;
  border: 1px solid rgba(57, 88, 176, 0.16);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 24px rgba(18, 25, 52, 0.08);
}

.boost-card h3 {
  margin-bottom: 8px;
}

.boost-card p {
  color: var(--ink-muted);
}

.boost-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.boost-kpi {
  border-radius: 14px;
  border: 1px solid rgba(57, 88, 176, 0.16);
  background: #fff;
  padding: 14px;
}

.boost-kpi-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.boost-kpi-label {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.card,
.team-card {
  background: var(--card);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.incubation {
  padding-top: 18px;
}

.incubation-shell {
  background: linear-gradient(125deg, #0c5a6d 0%, #18424f 46%, #1f2b38 100%);
  border-radius: 30px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.incubation-copy h2 {
  color: #f9fcff;
  font-size: clamp(1.9rem, 2.2vw + 1rem, 3rem);
  margin-bottom: 14px;
}

.incubation-copy p {
  color: rgba(240, 250, 255, 0.88);
  max-width: 58ch;
  margin-bottom: 10px;
}

.incubation-kicker {
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.incubation-actions {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.incubation-actions .btn.primary {
  background: #ffffff;
  color: #122534;
}

.incubation-actions .btn.ghost {
  color: #eef8ff;
  border-color: rgba(238, 248, 255, 0.48);
  background: rgba(238, 248, 255, 0.06);
}

.section-dark {
  background: var(--bg-dark);
  color: #f7f4f0;
}

.section-dark .section-header p {
  color: rgba(247, 244, 240, 0.65);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.project {
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 210px;
}

.project-recent {
  border: 1px solid rgba(247, 181, 153, 0.55);
  box-shadow: 0 14px 30px rgba(247, 181, 153, 0.2);
  background: linear-gradient(160deg, rgba(247, 181, 153, 0.2), rgba(255, 255, 255, 0.06));
}

.project-recent .tag {
  color: #ffd8c8;
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #eec6b8;
}

.project-meta {
  color: rgba(247, 244, 240, 0.72);
  margin-bottom: 6px;
  word-break: break-word;
}

.project-links {
  margin-bottom: 12px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f9e6db;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pill-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.project-price {
  margin-top: 12px;
  font-weight: 600;
  color: #f7b599;
}

.project-footnote {
  margin-top: 28px;
  font-weight: 600;
}

.impact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.impact-card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.impact-card.subtle {
  background: #f0e8de;
}

.impact-value {
  font-size: 2rem;
  font-weight: 700;
}

.impact-label {
  color: var(--ink-muted);
  margin-top: 8px;
}

.section-market {
  background: linear-gradient(180deg, #edf4ff 0%, #f7fbff 100%);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.algo-highlight {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.ring-card {
  border-radius: 22px;
  border: 1px solid rgba(57, 88, 176, 0.18);
  background: #0f1727;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: conic-gradient(#7f56ff calc(var(--pct) * 1%), #d946ef 0);
  position: relative;
}

.ring::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: #0f1727;
}

.ring-content {
  position: absolute;
  text-align: center;
  color: #eff4ff;
  z-index: 1;
  padding: 0 22px;
}

.ring-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.ring-label {
  color: rgba(237, 244, 255, 0.82);
  margin-top: 3px;
  font-size: 0.9rem;
}

.algo-summary {
  border: 1px solid rgba(57, 88, 176, 0.18);
  border-radius: 22px;
  background: #ffffff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.algo-summary h3 {
  margin-bottom: 8px;
}

.algo-summary p {
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.summary-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.summary-badges span {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  background: #eaf1ff;
  color: #1f356d;
}

.account-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(57, 88, 176, 0.18);
  border-radius: 18px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 14px 26px rgba(22, 24, 38, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 30px rgba(22, 24, 38, 0.14);
}

.account-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.account-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #7f56ff;
  overflow: hidden;
  background: #0b1020;
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.account-head h3 {
  font-size: 1.06rem;
  line-height: 1.2;
}

.account-head p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin-top: 2px;
}

.account-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.account-metrics span {
  border-radius: 999px;
  padding: 6px 10px;
  background: #f3f6ff;
  border: 1px solid rgba(57, 88, 176, 0.16);
  font-size: 0.82rem;
}

.account-shot {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(57, 88, 176, 0.2);
  background: #edf2ff;
}

.account-shot img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.market-disclaimer {
  margin-top: 14px;
  color: var(--ink-muted);
  font-weight: 600;
}

.section-gradient {
  background: linear-gradient(120deg, #f5e7dd 0%, #f4f9f6 50%, #ece8f0 100%);
}

.contact-card {
  background: var(--card);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.footer {
  padding: 30px 6vw 50px;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: var(--ink);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

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

  .incubation-shell {
    grid-template-columns: 1fr;
  }

  .algo-highlight {
    grid-template-columns: 1fr;
  }

  .sales-banner-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 600px) {
  .lang-toggle {
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero-content {
    padding-top: 7vh;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ring-card {
    min-height: 210px;
  }

  .accounts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .account-card {
    padding: 14px;
  }

  .account-head {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .account-avatar {
    width: 48px;
    height: 48px;
  }

  .account-head h3 {
    font-size: 0.98rem;
  }

  .account-head p {
    font-size: 0.86rem;
  }

  .account-metrics {
    gap: 8px;
  }

  .account-metrics span {
    font-size: 0.78rem;
    padding: 5px 9px;
  }

  .account-shot img {
    height: 290px;
    object-position: top center;
  }

  .boost-kpi-value {
    font-size: 1.25rem;
  }
}
