﻿:root {
  --ink: #0f1015;
  --muted: #5e5e73;
  --white: rgba(255, 255, 255, 0.9);
  --purple: #8b3dff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: "Noto Sans", "Noto Sans SC", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.hero-shell {
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    rgb(153, 43, 255) 0%,
    rgb(90, 50, 250) 30.09%,
    rgb(19, 163, 181) 56.76%,
    rgb(147, 232, 246) 76.85%,
    rgb(241, 235, 255) 95.28%,
    rgb(255, 255, 255) 100%
  );
  color: #fff;
  overflow: hidden;
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 40;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.logo-color { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav-links a:hover { background: rgba(255,255,255,.12); }
.chev { width: 12px; height: 12px; opacity: .9; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.lang-pick { display: inline-flex; gap: 2px; margin-right: 4px; }
.lang-btn {
  border: 0; background: transparent; color: rgba(255,255,255,.85);
  font-size: 13px; font-weight: 600; padding: 6px 8px; border-radius: 8px;
}
.lang-btn.active { color: #fff; background: rgba(255,255,255,.16); }
.link-signup {
  color: #fff; font-size: 14px; font-weight: 600; padding: 0 12px; height: 32px;
  display: inline-flex; align-items: center; border-radius: 10px;
}
.link-signup:hover { background: rgba(255,255,255,.12); }
.btn-login {
  background: rgba(255,255,255,.9); color: #0f1015;
  font-size: 14px; font-weight: 600; padding: 0 12px; height: 32px;
  display: inline-flex; align-items: center; border-radius: 10px;
}
.btn-login:hover { background: #fff; }

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 0;
}
.hero-copy { text-align: center; z-index: 2; max-width: 1080px; }
.hero h1 {
  font-size: clamp(40px, 8vw, 112px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,.9);
  margin-bottom: 22px;
}
.btn-start {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 20px; border: 0; border-radius: 20px;
  background: rgba(255,255,255,.9); color: #0f1015;
  font-size: 16px; font-weight: 600;
}
.btn-start:hover { background: #fff; }

.floats {
  position: relative;
  width: min(1100px, 100%);
  height: 280px;
  margin-top: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}
.floats .f {
  width: 108px; height: 108px; object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(20, 10, 60, .18));
  animation: bob 4.8s ease-in-out infinite;
}
.f1 { animation-delay: 0s; transform: translateY(18px); }
.f2 { width: 132px; height: 132px; animation-delay: .2s; }
.f3 { animation-delay: .4s; transform: translateY(10px); }
.f4 { width: 124px; height: 124px; animation-delay: .15s; }
.f5 { animation-delay: .55s; transform: translateY(22px); }
.f6 { animation-delay: .3s; }
.f7 { width: 120px; height: 120px; animation-delay: .45s; transform: translateY(8px); }
.f8 { animation-delay: .1s; transform: translateY(16px); }
.f9 { animation-delay: .6s; }
@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.tools {
  padding: 64px 24px 80px;
  background: #fff;
  text-align: center;
}
.tools h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.tool-tabs {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  background: #f2f1f8; border-radius: 999px; padding: 6px;
  gap: 4px; margin-bottom: 28px;
}
.tab {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; background: transparent; padding: 8px 16px;
  border-radius: 999px; font-size: 14px; font-weight: 600; color: #3a3a4a;
}
.tab.on { background: #fff; box-shadow: 0 6px 18px rgba(20,16,40,.08); }
.tab-ico {
  width: 18px; height: 18px; border-radius: 6px;
  background: linear-gradient(135deg, #8b3dff, #13a3b5);
}
.tab-ico.present { background: linear-gradient(135deg, #ff7a45, #ffb14a); }
.tab-ico.social { background: linear-gradient(135deg, #ff4eb8, #ff8ad4); }
.tab-ico.video { background: linear-gradient(135deg, #6c2bd9, #c44bff); }
.tab-ico.print { background: linear-gradient(135deg, #5a32fa, #8b3dff); }

.tool-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 16px;
}
.tool-card {
  text-align: left;
  border: 0;
  border-radius: 20px;
  min-height: 340px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.tool-card h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; max-width: 14em; }
.explore {
  background: #fff; color: #0f1015; border-radius: 999px;
  padding: 8px 14px; font-size: 14px; font-weight: 600;
}
.c-magenta { background: linear-gradient(180deg, #e11d8f 0%, #7b2bff 100%); }
.c-orange { background: linear-gradient(180deg, #ff5a3c 0%, #ffb14a 70%); }

.suite {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f4edff 100%);
}
.kicker { color: var(--purple); font-weight: 600; margin-bottom: 8px; }
.suite h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 600; letter-spacing: -.03em; margin-bottom: 20px; }
.btn-outline {
  display: inline-flex; align-items: center; height: 40px; padding: 0 18px;
  border-radius: 20px; border: 1px solid #0f1015; color: #0f1015; font-weight: 600;
}

.cta-end {
  padding: 72px 24px 88px;
  text-align: center;
}
.cta-end h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 600; margin-bottom: 18px; }
.btn-purple {
  display: inline-flex; align-items: center; height: 40px; padding: 0 20px;
  border: 0; border-radius: 20px; background: #8b3dff; color: #fff; font-weight: 600;
}

.footer { padding: 48px 7vw 32px; border-top: 1px solid #eee; }
.foot-top { margin-bottom: 28px; }
.foot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.footer h4 { font-size: 13px; color: #6b6b7b; margin-bottom: 10px; font-weight: 600; }
.footer a { display: block; margin: 8px 0; font-size: 14px; }
.footer a:hover { text-decoration: underline; }
.foot-copy { color: #8a8a98; font-size: 13px; padding-top: 16px; border-top: 1px solid #eee; }

.wa-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.wa-modal:not([hidden]) { display: flex; }
.wa-backdrop { position: absolute; inset: 0; background: rgba(15, 16, 21, .55); }
.wa-panel {
  position: relative; z-index: 1; width: min(380px, 100%);
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 28px 80px rgba(15, 16, 21, .28);
  height: auto;
  max-height: 90vh;
}
.wa-close {
  position: absolute; top: 8px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border: 0; border-radius: 999px;
  background: #f1f5f9; cursor: pointer; font-size: 20px; line-height: 1; color: #334155;
}
#wa-frame {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  background: #fff;
  overflow: hidden;
  scrollbar-width: none;
}
#wa-frame::-webkit-scrollbar { width: 0; height: 0; display: none; }

@media (max-width: 960px) {
  .hide-sm { display: none !important; }
  .nav { padding: 0 16px; }
  .floats { height: 180px; }
  .floats .f { width: 72px; height: 72px; }
  .f2, .f4, .f7 { width: 88px; height: 88px; }
  .tool-grid, .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(36px, 10vw, 56px); }
}
@media (max-width: 640px) {
  .f8, .f9, .f1 { display: none; }
}
