:root {
  --bg: #f8f4ef;
  --surface: #fffdf9;
  --text: #2e3033;
  --muted: #5c626b;
  --line: #e7dfd5;
  --brand-orange: #eb9f52;
  --brand-salmon: #ee6b63;
  --brand-magenta: #b44067;
  --brand-violet: #662c69;
  --radius: 20px;
  --shadow: 0 14px 40px rgba(73, 49, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(248, 244, 239, 0.9), rgba(248, 244, 239, 0.94)),
    url("/assets/img/site-imports/honeycomb-bg.png") center top / cover no-repeat fixed,
    radial-gradient(circle at 7% 5%, rgba(235, 159, 82, 0.22), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(102, 44, 105, 0.16), transparent 38%),
    linear-gradient(145deg, #f7f2ea 0%, #fefaf4 45%, #f9f1e8 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 72%);
  pointer-events: none;
  z-index: -2;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
}

.bg-shape-one {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 230px;
  background: rgba(238, 107, 99, 0.25);
}

.bg-shape-two {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 360px;
  background: rgba(102, 44, 105, 0.2);
}

.site-header,
main,
.site-footer {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0 0.7rem;
  gap: 1rem;
}

.brand img {
  width: min(340px, 72vw);
  height: auto;
}

.main-nav {
  display: flex;
  gap: 0.9rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(231, 223, 213, 0.95);
  backdrop-filter: blur(10px);
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
}

.main-nav a:hover {
  background: rgba(238, 107, 99, 0.08);
}

.lang-switch {
  display: flex;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem;
  backdrop-filter: blur(8px);
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 700;
}

.lang-btn.active {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-magenta));
  color: #fff;
}

.hero {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1.2rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 244, 0.95)),
    radial-gradient(circle at top right, rgba(235, 159, 82, 0.16), transparent 28%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-violet);
  font-size: 0.86rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  margin-top: 0.8rem;
}

.hero-text {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--brand-orange), var(--brand-salmon), var(--brand-magenta));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 9px 22px rgba(180, 64, 103, 0.35);
}

.cta.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(231, 223, 213, 0.9);
  box-shadow: none;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(180, 64, 103, 0.38);
}

.cta.ghost:hover {
  box-shadow: 0 10px 24px rgba(73, 49, 42, 0.12);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-points span {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(231, 223, 213, 0.9);
  font-weight: 700;
  color: #4d4c50;
}

.hero-side {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.hero-panel {
  border-radius: 22px;
  padding: 1.2rem;
}

.hero-panel-primary {
  color: #fff;
  background: linear-gradient(145deg, #52285f 0%, #7b3567 48%, #ed6c63 100%);
  box-shadow: 0 20px 40px rgba(102, 44, 105, 0.26);
}

.hero-panel-primary p:last-child {
  margin-bottom: 0;
  color: rgba(255, 246, 240, 0.9);
}

.hero-panel-label {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.8rem;
  color: rgba(255, 245, 237, 0.82);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-card {
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(231, 223, 213, 0.95);
  backdrop-filter: blur(8px);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.metric-card span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.panel-accent {
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top left, rgba(235, 159, 82, 0.08), transparent 28%);
}

.panel-dark {
  background: linear-gradient(145deg, rgba(98, 49, 89, 0.07), rgba(255, 255, 255, 0.96));
}

.section-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.section-heading.compact {
  margin-bottom: 0.7rem;
}

.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-violet);
}

.section-text {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

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

.card {
  position: relative;
  background: linear-gradient(180deg, #fffbf7, rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(231, 223, 213, 0.95);
  border-radius: 16px;
  padding: 1.1rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-salmon), var(--brand-magenta));
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(73, 49, 42, 0.12);
  border-color: rgba(238, 107, 99, 0.35);
}

.card p {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.focus-strip {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(95deg, rgba(46, 48, 51, 0.97), rgba(102, 44, 105, 0.96));
  color: #fff;
  box-shadow: 0 14px 30px rgba(52, 40, 61, 0.18);
}

.focus-strip p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.stack-badges {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.stack-badges span {
  display: inline-block;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  border: 1px solid #e6d6c4;
  background: #fff;
  font-weight: 700;
  color: #514945;
}

.process {
  border-left: 3px solid var(--brand-salmon);
  padding-left: 0.95rem;
}

.process h3 {
  margin-bottom: 0.55rem;
}

.process ol {
  margin: 0;
  padding-left: 1rem;
}

.infra p {
  color: var(--muted);
  margin: 0.7rem 0 0;
  max-width: 72ch;
}

.contact {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(231, 223, 213, 0.95);
  background:
    linear-gradient(160deg, rgba(255, 249, 242, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at bottom right, rgba(102, 44, 105, 0.1), transparent 30%);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.contact-lead {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.contact-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 223, 213, 0.95);
  box-shadow: 0 12px 28px rgba(73, 49, 42, 0.08);
}

.contact-card p {
  margin: 0;
}

.contact-card p + p {
  margin-top: 0.7rem;
}

.contact a {
  color: var(--brand-violet);
  font-weight: 700;
}

.site-footer {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
  padding: 0.9rem 0;
  color: #59504b;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer img {
  width: 38px;
  height: 38px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.7s ease forwards;
}

.hero.reveal {
  animation-delay: 0.08s;
}

.panel.reveal:nth-of-type(2) {
  animation-delay: 0.18s;
}

.panel.reveal:nth-of-type(3) {
  animation-delay: 0.28s;
}

.contact.reveal {
  animation-delay: 0.38s;
}

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

@media (max-width: 900px) {
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}

@media (max-width: 640px) {
  .main-nav {
    flex-wrap: wrap;
  }

  .main-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}
