:root {
  --bg: #f3f6ff;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-solid: #ffffff;
  --text: #242538;
  --muted: #8b93aa;
  --line: rgba(27, 39, 72, 0.08);
  --blue: #1769ff;
  --purple: #6748ff;
  --cyan: #15c7d6;
  --pink: #ff5ebc;
  --orange: #ff9d65;
  --shadow: 0 24px 80px rgba(40, 58, 112, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 75% 4%, rgba(255, 160, 100, .28), transparent 20%),
    radial-gradient(circle at 48% 8%, rgba(255, 82, 190, .26), transparent 18%),
    radial-gradient(circle at 56% 17%, rgba(89, 55, 255, .36), transparent 20%),
    linear-gradient(180deg, #f6f8ff 0%, #eef3ff 68%, #f7faff 100%);
}

.container {
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(1100px, calc(100% - 32px));
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 13px 11px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(24, 35, 74, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 34px;
  overflow: hidden;
}

.brand img {
  width: 150px;
  object-fit: contain;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.0);
}

.nav a {
  padding: 10px 18px;
  border-radius: 12px;
  color: #8c94a9;
  font-size: 13px;
  font-weight: 700;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
  background: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ghost-link {
  color: #a0a7ba;
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #6546ff, #304dff);
  color: white;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 16px 30px rgba(74, 69, 255, 0.22);
  cursor: pointer;
}

.button.small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
  border-radius: 10px;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .86);
  box-shadow: none;
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px;
  background: var(--text);
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-pad {
  padding: 120px 24px 86px;
}

.hero {
  position: relative;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-glow {
  position: absolute;
  filter: blur(34px);
  opacity: .75;
  border-radius: 999px;
  z-index: -1;
}

.glow-one {
  width: 410px;
  height: 180px;
  background: linear-gradient(90deg, var(--pink), #ff9673);
  top: 60px;
  left: 50%;
  transform: translateX(-48%) rotate(-8deg);
}

.glow-two {
  width: 410px;
  height: 190px;
  background: linear-gradient(90deg, #619cff, var(--purple));
  top: 210px;
  left: 49%;
  transform: translateX(-50%) rotate(-11deg);
}

.glow-three {
  width: 260px;
  height: 160px;
  background: rgba(23, 105, 255, .35);
  top: 300px;
  left: 35%;
  transform: rotate(-24deg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 78px);
  line-height: .94;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 610px;
  margin: 26px auto 0;
  color: #68718a;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
}

.section-heading.compact {
  max-width: 360px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 15px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 0;
  color: #8992aa;
  line-height: 1.65;
}

.carousel-header {
  max-width: none !important;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.heading-content {
  max-width: 620px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(27, 39, 72, 0.05);
}

.carousel-btn svg {
  display: block;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--panel-solid);
  transform: translateY(-2px);
  color: var(--purple);
  box-shadow: 0 8px 20px rgba(27, 39, 72, 0.1);
  border-color: rgba(103, 72, 255, 0.3);
}

.carousel-btn:active:not(:disabled) {
  transform: translateY(0);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}

.carousel-container {
  position: relative;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  overflow: hidden;
  padding: 0 16px;
  margin-bottom: -40px;
}

.service-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 12px 0 72px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-card,
.meeting-card,
.philosophy-card,
details,
.footer {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(31, 45, 91, .07);
}

.service-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  padding: 26px;
  border-radius: 15px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: var(--panel-solid);
  box-shadow: 0 24px 60px rgba(31, 45, 91, 0.12);
}

@media (max-width: 768px) {
  .service-card {
    flex: 0 0 295px;
  }
  .service-grid {
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .carousel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .carousel-controls {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 0 0 265px;
  }
  .service-grid {
    gap: 12px;
  }
}

.app-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.app-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--panel-solid);
  border: 1px solid var(--line);
  box-shadow:
    0 4px 12px rgba(27, 39, 72, 0.08),
    0 1px 3px rgba(27, 39, 72, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card:hover .app-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 20px rgba(27, 39, 72, 0.12),
    0 2px 6px rgba(27, 39, 72, 0.06);
}

.service-card h3 {
  font-size: 17px;
  margin: 0;
  letter-spacing: -.02em;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: #8d96ad;
  font-size: 13px;
  line-height: 1.7;
}

.app-tagline {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #6b7490;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.app-rating .stars {
  color: #ffb830;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.app-rating .rating-count {
  font-size: 12px;
  font-weight: 700;
  color: #9ba3b8;
}

.card-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.app-store-link,
.app-website-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.app-store-link {
  background: rgba(103, 72, 255, 0.06);
  color: var(--purple);
}

.app-store-link:hover {
  background: rgba(103, 72, 255, 0.13);
  color: #5030e0;
  transform: translateX(2px);
}

.app-website-link {
  background: rgba(21, 199, 214, 0.07);
  color: #0ea5b5;
}

.app-website-link:hover {
  background: rgba(21, 199, 214, 0.15);
  color: #0b8a97;
  transform: translateX(2px);
}

.faq-art {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.3fr;
  gap: 28px;
  align-items: end;
}

.about-grid .section-heading {
  grid-column: 1;
}

.meeting-card {
  grid-column: 1;
  padding: 34px;
  border-radius: 18px;
}

.meeting-card h3 {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0 0 28px;
}

.philosophy-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 40px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
}

.philosophy-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
  letter-spacing: -.03em;
}

.philosophy-card p {
  color: #747e97;
  line-height: 1.7;
  margin: 0 0 30px;
}

.feature-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  color: #4d566c;
  font-size: 14px;
  margin: 0 0 16px;
}

li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid #aeb8cc;
  color: var(--purple);
  font-size: 11px;
}

.stat-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
}

.stat-row strong {
  font-size: 54px;
  letter-spacing: -.06em;
}

.stat-row span {
  color: #8b93aa;
}

.stat-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1f4ff;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: .8fr 1.35fr;
  gap: 48px;
  align-items: start;
}

.faq-art {
  left: -80px;
  top: 60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(103, 72, 255, 0.12) 0%, rgba(23, 105, 255, 0.06) 50%, transparent 70%);
  filter: blur(40px);
  opacity: 1;
}

.faq-list {
  display: grid;
  gap: 18px;
}

details {
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
  padding: 0 24px;
}

summary {
  cursor: pointer;
  padding: 22px 0;
  list-style: none;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: #717b94;
  font-size: 20px;
}

details[open] summary::after {
  content: "−";
}

details p {
  color: #737d96;
  line-height: 1.65;
  margin: 0;
  padding: 0 0 22px;
}

.contact-section {
  padding-bottom: 140px;
}

.contact-glow {
  position: absolute;
  right: -100px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 88, 255, .45), rgba(120, 100, 255, .15) 40%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-form {
  width: min(630px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  color: #2c3043;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(40, 56, 102, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .52);
  padding: 17px 18px;
  outline: none;
  color: var(--text);
}

input:focus,
textarea:focus {
  border-color: rgba(91, 70, 255, .45);
  box-shadow: 0 0 0 4px rgba(91, 70, 255, .08);
}

textarea {
  min-height: 190px;
  resize: vertical;
}

.form-status {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
}

.form-status.success {
  color: #22c55e;
}

.form-status.error {
  color: #ef4444;
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  padding: 54px 64px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: start;
  gap: 60px;
  background: rgba(255, 255, 255, .88);
}

.footer p {
  max-width: 360px;
  color: #8b93aa;
  line-height: 1.6;
  font-size: 14px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.footer-nav-columns {
  display: flex;
  gap: 60px;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #96a0b6;
  font-size: 13px;
  font-weight: 700;
}

.footer nav a:hover {
  color: var(--text);
}

.footer .made {
  display: block;
  color: #96a0b6;
  margin-top: 26px;
  font-size: 13px;
}

.footer-brand img2 {
  height: 32px;
  width: auto;
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #757f98;
  border-radius: 10px;
  background: rgba(135, 150, 185, 0.08);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  background: rgba(103, 72, 255, 0.1);
  color: var(--purple);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    display: none;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    text-align: center;
  }

  .about-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .philosophy-card,
  .meeting-card,
  .about-grid .section-heading {
    grid-column: auto;
    grid-row: auto;
  }



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

  .footer p {
    margin-inline: auto;
  }

  .footer-right {
    align-items: center;
    gap: 32px;
  }

  .footer-nav-columns {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .socials {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1100px);
  }

  .section {
    padding: 70px 0;
  }

  .section-pad {
    padding: 90px 16px 60px;
  }


  .hero {
    min-height: 500px;
  }

  .hero-copy {
    font-size: 15px;
  }

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

  .philosophy-card {
    padding: 30px 24px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 24px;
    margin-bottom: 32px;
  }

  .footer nav {
    gap: 20px;
  }
}

/* Legal Page Styles */
.legal-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

.legal-content {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 54px 64px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 38px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text) 30%, #4b526d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
  display: block;
}

.legal-body {
  color: #3f4458;
  line-height: 1.8;
  font-size: 15px;
}

.legal-body h2 {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-body h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-body p {
  margin-bottom: 20px;
}

.legal-body ul,
.legal-body ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-body li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-section {
    padding-top: 90px;
  }

  .legal-content {
    padding: 36px 24px;
    border-radius: 18px;
  }

  .legal-content h1 {
    font-size: 28px;
  }
}