@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f8fb;
  --text: #1f2430;
  --muted: #70788c;
  --card: #ffffff;
  --border: #e4e6ef;
  --primary: #9628fc;
  --primary-2: #ddb9ff;
  --shadow: 0 12px 32px rgba(31, 36, 48, 0.08);
}

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

body {
  margin: 0;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

b,
strong {
  color: #2b0052;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #2b0052;
  border-radius: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

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

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: opacity 0.15s ease;
}

.btn {
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #9628fc, #b777ff 80%, #ddb9ff 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(150, 40, 252, 0.35);
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-flat {
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(150, 40, 252, 0.42);
}

.btn.ghost {
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.hero {
  margin-top: 12px;
  padding: 32px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2f4ff, #eaf6ff);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: flex-start;
}

.hero-content {
  display: grid;
  justify-items: start;
  text-align: left;
  gap: 4px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  margin: 0;
  color: #2b0052;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
}

.lede {
  margin: 10px 0 6px;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: #1c1f27;
}

.lede .accent {
  color: var(--primary);
  font-style: italic;
}

.sublede {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-illustration {
  display: grid;
  justify-content: center;
  padding: 0 8px;
}

.hero-image-placeholder {
  margin: 0;
  width: 100%;
  max-width: 1100px;
  max-height: 620px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: linear-gradient(135deg, #f2f4ff, #eaf6ff);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  padding: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-image-placeholder img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.gif-section {
  margin-top: 16px;
}

.gif-placeholder {
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.gif-placeholder img {
  width: 100%;
  max-width: 1174px;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
}

.gif-placeholder figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

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

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.logo-pill {
  background: #f5f6fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  color: #3b3f4f;
  text-align: center;
}

.illustration {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.cube {
  background: linear-gradient(135deg, #f2f4ff, #ffffff);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 10px;
  text-align: center;
  font-weight: 800;
  color: #4b5563;
}

.cube-b {
  background: linear-gradient(135deg, #f9f3ff, #ffffff);
}

.cube-c {
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
}

.cube-d {
  background: linear-gradient(135deg, #fdf4ff, #ffffff);
}

.app {
  display: grid;
  gap: 4px;
}

.app-title {
  font-weight: 800;
}

.app-meta {
  color: var(--muted);
}

.section {
  margin-top: 36px;
}

.cap-section .tag,
.cap-section h3,
.cap-section .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cap-section .tag {
  display: inline-flex;
  margin-bottom: 12px;
}

.cap-section {
  text-align: center;
}

.wide-card {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  text-align: center;
}

.label {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.text {
  color: var(--muted);
  margin: 0;
}

.center {
  text-align: center;
}

.big-heading {
  font-size: 40px;
  letter-spacing: 0.08em;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f1f2f8;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.tag-platform {
  margin: 0 auto 12px;
  background: #eef1ff;
  border-color: #e4e6ef;
  color: #6b7280;
}

section h3 {
  margin: 12px 0 6px;
  font-size: 24px;
}

.section-sub {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
}

.two-col .text-col {
  text-align: left;
}

.lead {
  font-weight: 700;
  margin: 0 0 8px;
  color: #2b0052;
}

.feature-list {
  list-style: none;
  padding: 0;
  color: var(--text);
  line-height: 1.6;
  margin: 12px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background-image: var(--bullet-icon, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%239628fc'%3E%3Cpath d='M12 2l2.39 6.97h7.32l-5.92 4.3 2.37 7.02-6.16-4.55-6.16 4.55 2.37-7.02-5.92-4.3h7.32z'/%3E%3C/svg%3E"));
  background-size: contain;
  background-repeat: no-repeat;
}

.visual-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin-left: auto;
  margin-right: auto;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.person-card {
  padding: 14px;
  padding-bottom: 60px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  position: relative;
}

.avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #e4e6ef;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.name {
  margin: 0;
  font-weight: 800;
  color: #2b0052;
}

.role {
  margin: 2px 0 6px;
  color: var(--muted);
  font-weight: 700;
}

.bio {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.person-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}

.socials {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  display: flex;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef1ff;
  border: 1px solid var(--border);
  color: var(--primary);
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(150, 40, 252, 0.18);
  background: #f6f2ff;
}

.contact {
  text-align: center;
}

.contact-form {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

.footer {
  margin-top: 40px;
  padding: 32px 0 24px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.8fr);
  gap: 32px;
  align-items: start;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.footer-logo {
  width: 200px;
  height: auto;
}

.footer-text {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-socials .social-active {
  color: var(--primary);
}

.footer-socials .social-disabled {
  color: #9ba3b5;
  opacity: 0.6;
  cursor: not-allowed;
}

.footer-product h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #777e8c;
  text-align: center;
}

.footer-product ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 6px;
  justify-items: center;
}

.footer-product a {
  color: #9aa1af;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  pointer-events: none;
  cursor: default;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #9aa1af;
  text-decoration: none;
  font-weight: 700;
  pointer-events: none;
  cursor: default;
}

.footer-links a.privacy-link {
  color: var(--primary);
  pointer-events: auto;
  cursor: pointer;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
}

.policy-section h3 {
  font-weight: 500;
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .nav-cta {
    width: 100%;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .visual-card {
    max-width: 100%;
  }

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