:root {
  --bg: #eef4ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --primary: #1e40d0;
  --primary-deep: #0f2379;
  --primary-soft: #dbe7ff;
  --text: #0f172a;
  --muted: #4f5f7f;
  --border: rgba(30, 64, 208, 0.12);
  --shadow-lg: 0 30px 80px rgba(15, 35, 121, 0.18);
  --shadow-md: 0 18px 40px rgba(15, 35, 121, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 64, 208, 0.18), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(58, 123, 255, 0.2), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 48%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  opacity: 0.4;
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 48px;
  position: relative;
}

main > section {
  animation: reveal-up 780ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

main > section:nth-of-type(2) {
  animation-delay: 90ms;
}

main > section:nth-of-type(3) {
  animation-delay: 150ms;
}

main > section:nth-of-type(4) {
  animation-delay: 210ms;
}

main > section:nth-of-type(5) {
  animation-delay: 270ms;
}

main > section:nth-of-type(6) {
  animation-delay: 330ms;
}

main > section:nth-of-type(7) {
  animation-delay: 390ms;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #4f83ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

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

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

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, #5b89ff 100%);
  box-shadow: 0 18px 32px rgba(30, 64, 208, 0.28);
}

.button-secondary,
.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.button-large {
  min-height: 56px;
  padding: 0 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 84px 0 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.cta-section h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.cta-section p,
.stat-card p,
.example-card p,
.process-card p,
.service-item p,
.hero-card-content p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 63ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 28px;
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #8cb1ff 100%);
  box-shadow: 0 0 0 6px rgba(30, 64, 208, 0.12);
}

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

.hero-card-main {
  position: absolute;
  inset: 24px 40px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
  animation: float-card 8s ease-in-out infinite;
}

.hero-card-main img {
  width: 100%;
  height: 68%;
  object-fit: cover;
}

.hero-card-content {
  padding: 24px 26px 28px;
}

.hero-card-content h2 {
  margin: 14px 0 10px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-floating {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  animation: float-badge 7s ease-in-out infinite;
}

.hero-floating strong {
  font-size: 1.15rem;
}

.hero-floating span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-floating-top {
  top: 0;
  right: 0;
  max-width: 220px;
}

.hero-floating-bottom {
  right: 24px;
  bottom: 34px;
  max-width: 260px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.trust-strip span {
  display: inline-flex;
  justify-content: center;
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(30, 64, 208, 0.05);
  color: var(--primary-deep);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.trust-strip span:hover {
  transform: translateY(-2px);
  background: rgba(30, 64, 208, 0.12);
}

.stats-section,
.founders-section,
.showcase-section,
.examples-section,
.process-section,
.quote-section,
.cta-section {
  padding-top: 104px;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 660px;
}

.section-heading h2,
.showcase-copy h2,
.cta-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.stats-grid,
.examples-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

.founders-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.founders-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.founders-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.founder-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-deep);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.founders-visual {
  position: relative;
  min-height: 560px;
}

.founders-image {
  position: absolute;
  inset: 0 24px 0 0;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.founders-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card {
  position: absolute;
  max-width: 240px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.founder-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.founder-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.founder-card-left {
  left: 0;
  bottom: 28px;
}

.founder-card-right {
  right: 0;
  top: 36px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-card,
.example-card,
.process-card,
.quote-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.stat-card:hover,
.example-card:hover,
.process-card:hover,
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(15, 35, 121, 0.14);
  border-color: rgba(30, 64, 208, 0.22);
}

.stat-card strong,
.example-card h3,
.process-card h3,
.service-item h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.showcase-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.showcase-image {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.showcase-copy {
  padding: 14px 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.service-item {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.examples-grid {
  grid-template-columns: repeat(4, 1fr);
}

.example-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.example-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 64, 208, 0.18), transparent 70%);
}

.example-card h3,
.process-card h3,
.service-item h3 {
  margin: 0 0 12px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  position: relative;
  padding-top: 72px;
}

.process-card span {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  color: rgba(30, 64, 208, 0.28);
  font-weight: 700;
}

.quote-card {
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(15, 35, 121, 0.98), rgba(30, 64, 208, 0.92)),
    #10247d;
  color: #fff;
}

.quote-card p {
  margin: 0 0 16px;
  max-width: 28ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.quote-card strong {
  color: rgba(255, 255, 255, 0.78);
}

.cta-section {
  text-align: center;
  padding-bottom: 42px;
}

.cta-section p {
  max-width: 700px;
  margin: 18px auto 0;
}

.cta-section .button {
  margin-top: 30px;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 1100px) {
  .hero,
  .founders-section,
  .showcase-section,
  .stats-grid,
  .examples-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    max-width: none;
  }

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

  .founders-visual {
    min-height: 500px;
  }

  .hero-card-main {
    inset: 20px 24px 0 0;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .site-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .hero {
    gap: 26px;
    padding-top: 36px;
  }

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

  .founders-visual {
    min-height: 420px;
  }

  .founders-image {
    inset: 0 0 90px 0;
  }

  .founder-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .hero-card-main {
    inset: 18px 0 78px 0;
  }

  .hero-floating {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .hero-card-main img {
    height: 58%;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stats-section,
  .founders-section,
  .showcase-section,
  .examples-section,
  .process-section,
  .quote-section,
  .cta-section {
    padding-top: 76px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .stat-card,
  .example-card,
  .process-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
