:root {
  --orange: #f15a29;
  --orange-deep: #d44518;
  --teal: #2a9b9b;
  --teal-deep: #1f7a7a;
  --ink: #0f1a24;
  --ink-soft: #243447;
  --paper: #f7f4ef;
  --paper-2: #efeae2;
  --white: #ffffff;
  --muted: #5c6b7a;
  --line: rgba(15, 26, 36, 0.12);
  --shadow: 0 18px 50px rgba(15, 26, 36, 0.14);
  --radius: 18px;
  --max: 1120px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(241, 90, 41, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(42, 155, 155, 0.16), transparent 50%),
    linear-gradient(180deg, #fbf9f6 0%, var(--paper) 40%, var(--paper-2) 100%);
  line-height: 1.55;
  min-height: 100vh;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(251, 249, 246, 0.82);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(241, 90, 41, 0.25);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 1.05rem;
}

.brand__text strong span:first-child {
  color: var(--orange);
}

.brand__text strong span:last-child {
  color: var(--teal);
}

.brand__text small {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--orange);
}

.nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 0;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(241, 90, 41, 0.28);
}

.btn:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: rgba(42, 155, 155, 0.08);
}

.btn--teal {
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(42, 155, 155, 0.28);
}

.btn--teal:hover {
  background: var(--teal-deep);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto auto;
  width: min(52vw, 560px);
  aspect-ratio: 1;
  border-radius: 32% 68% 60% 40% / 40% 35% 65% 60%;
  background:
    linear-gradient(145deg, rgba(241, 90, 41, 0.55), rgba(42, 155, 155, 0.45));
  filter: blur(8px);
  animation: drift 14s ease-in-out infinite alternate;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 5% 5%;
  width: min(34vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(42, 155, 155, 0.18);
  animation: drift 18s ease-in-out infinite alternate-reverse;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  animation: rise 0.8s ease both;
}

.hero__brand span:first-child {
  color: var(--orange);
}

.hero__brand span:last-child {
  color: var(--teal);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  animation: rise 0.9s ease 0.08s both;
}

.hero__lead {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36ch;
  animation: rise 1s ease 0.14s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 1.05s ease 0.2s both;
}

.hero__visual {
  justify-self: end;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 28px;
  padding: 1.2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  animation: rise 1s ease 0.18s both;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.section {
  padding: 4.5rem 0;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.kicker {
  display: inline-block;
  margin: 0 0 0.55rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

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

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar {
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.9rem;
  color: var(--white);
}

.pillar__icon--orange {
  background: var(--orange);
}

.pillar__icon--teal {
  background: var(--teal);
}

.pillar__icon--ink {
  background: var(--ink);
}

.pillar h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.pillar p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pillar a {
  font-weight: 700;
  color: var(--orange);
}

.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.partner-chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 26, 36, 0.06);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.cta-band {
  margin: 1rem 0 4rem;
  padding: 2rem;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(241, 90, 41, 0.95), rgba(42, 155, 155, 0.92));
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
}

.cta-band .btn {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.6rem;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.panel {
  margin: 1rem 0 3.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.panel h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.panel p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.4rem;
  background: rgba(255, 255, 255, 0.45);
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__grid strong {
  color: var(--ink);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(-18px, 22px, 0) rotate(8deg);
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(251, 249, 246, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a,
  .nav .btn {
    padding: 0.75rem 0.4rem;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .hero__grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-self: start;
    width: min(100%, 320px);
  }

  .hero {
    min-height: auto;
    padding-top: 2.2rem;
  }
}
