:root {
  --bg: #fdfefe;
  --bg-soft: #f7fbfc;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --text: #173042;
  --muted: #5e7583;
  --line: rgba(23, 48, 66, 0.08);
  --pink: #ffdce8;
  --green: #d9f4e6;
  --blue: #dcefff;
  --pink-strong: #f89ebd;
  --green-strong: #7bd2a9;
  --blue-strong: #7fb7ff;
  --shadow: 0 30px 80px rgba(123, 163, 194, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(248, 158, 189, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(123, 210, 169, 0.2), transparent 24%),
    radial-gradient(circle at 70% 20%, rgba(127, 183, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%);
}

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

img {
  max-width: 100%;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(110, 140, 170, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #20405a;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small,
.nav a,
.eyebrow,
.hero-text,
.section-heading p,
.service-card p,
.service-card li,
.feature-card p,
.timeline-item p,
.contact-card p,
.insight-card p,
.dashboard p,
.hero-metrics span {
  color: var(--muted);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.nav a {
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #143049;
  background: linear-gradient(135deg, #ffe8f0, #e4f6ec 52%, #e4f0ff);
  box-shadow: 0 12px 30px rgba(133, 183, 206, 0.24);
}

.button-secondary {
  border-color: rgba(23, 48, 66, 0.1);
  background: rgba(255, 255, 255, 0.66);
}

.section {
  padding: 88px 0 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 10.5em;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
}

.hero-text {
  max-width: 42rem;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.hero-metrics article,
.feature-card,
.timeline-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.glass {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.insight-card,
.dashboard {
  position: absolute;
}

.insight-card {
  top: 8%;
  right: 0;
  width: min(320px, 100%);
  padding: 28px;
  border-radius: var(--radius-lg);
}

.insight-card span,
.dashboard-header span,
.service-tag,
.timeline-item span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  margin: 12px 0;
  font-size: 1.4rem;
  line-height: 1.35;
}

.dashboard {
  left: 3%;
  bottom: 6%;
  width: min(540px, 100%);
  padding: 26px;
  border-radius: var(--radius-xl);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-grid article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid rgba(23, 48, 66, 0.05);
}

.dashboard-grid h3,
.service-card h3,
.feature-card h3,
.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.orb-pink {
  top: 10%;
  left: 6%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 220, 232, 0.95), rgba(255, 220, 232, 0.08));
}

.orb-green {
  top: 24%;
  right: 12%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(217, 244, 230, 0.95), rgba(217, 244, 230, 0.06));
}

.orb-blue {
  bottom: 8%;
  left: 24%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(220, 239, 255, 0.98), rgba(220, 239, 255, 0.05));
}

.section-soft {
  margin-top: 10px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.split-copy h2,
.contact-card h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.14;
}

.section-heading p,
.split-copy p,
.contact-card p {
  font-size: 1rem;
  line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.service-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  line-height: 1.85;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.section-timeline {
  padding-bottom: 32px;
}

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

.timeline-item {
  position: relative;
  padding-top: 62px;
}

.timeline-item span {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(23, 48, 66, 0.42);
}

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

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-page {
  min-height: calc(100vh - 120px);
}

.about-hero {
  padding-top: 120px;
}

.page-title {
  margin: 0;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-intro {
  max-width: 760px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.about-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.about-card h2 {
  margin: 12px 0;
  font-size: 1.4rem;
}

.about-card p,
.about-columns p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.about-card-wide {
  grid-column: 1 / -1;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-columns h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.founder-layout,
.message-card,
.company-intro {
  border-radius: var(--radius-xl);
}

.founder-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 32px;
  margin-top: 34px;
}

.founder-portrait {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.portrait-frame {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 360px;
  padding: 24px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(23, 48, 66, 0.08);
  background:
    radial-gradient(circle at top, rgba(255, 220, 232, 0.9), transparent 42%),
    radial-gradient(circle at bottom right, rgba(220, 239, 255, 0.9), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.8));
}

.portrait-frame span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.portrait-frame strong {
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  font-size: 1.8rem;
}

.founder-copy h2,
.message-card h2,
.company-intro h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.2;
}

.founder-copy p,
.company-columns p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.95;
}

.message-card {
  padding: 34px;
}

.message-card blockquote {
  margin: 0;
  font-size: 1.18rem;
  line-height: 2;
  color: var(--text);
}

.company-intro {
  padding: 34px;
}

.company-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .split-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .services-grid,
  .timeline,
  .about-grid,
  .about-columns,
  .company-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .topbar {
    top: 10px;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 24px;
  }

  .brand-text small,
  .topbar > .button {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-metrics,
  .services-grid,
  .timeline,
  .dashboard-grid,
  .about-grid,
  .about-columns,
  .company-columns {
    grid-template-columns: 1fr;
  }

  .founder-layout,
  .message-card,
  .company-intro {
    padding: 24px;
  }

  .portrait-frame {
    min-height: 280px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .insight-card,
  .dashboard {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 16px;
  }

  .orb-pink {
    top: 0;
    left: 0;
  }

  .orb-green {
    top: 18%;
    right: 0;
  }

  .orb-blue {
    bottom: 18%;
    left: 18%;
  }

  .section {
    padding-top: 72px;
  }

  .contact-actions,
  .hero-actions {
    width: 100%;
  }

  .contact-actions .button,
  .hero-actions .button {
    flex: 1 1 180px;
  }
}
