:root {
  --pink: #f7a7ca;
  --pink-light: #ffd8e8;
  --pink-soft: #fff3f8;
  --purple: #6f21cc;
  --purple-dark: #35104f;
  --purple-ink: #25102f;
  --white: #ffffff;
  --line: rgba(71, 22, 94, 0.14);
  --shadow: 0 22px 70px rgba(76, 20, 104, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--purple-ink);
  background:
    radial-gradient(circle at 82% 5%, rgba(139, 58, 215, 0.16), transparent 24%),
    linear-gradient(180deg, #ffd6e7 0%, #fff8fb 38%, #fff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 49.8%, rgba(117, 42, 151, 0.035) 50%, transparent 50.2%);
  background-size: 120px 120px;
  opacity: .55;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 12px 40px rgba(79,24,99,.08);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  position: sticky;
  top: 14px;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand img, .footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(79,25,114,.18);
}
.brand span { display: grid; gap: 1px; }
.brand strong { font-family: "Outfit"; font-size: 16px; }
.brand small { font-size: 11px; color: rgba(37,16,47,.65); }

.header-cta {
  text-decoration: none;
  font-weight: 700;
  background: var(--purple);
  color: white;
  padding: 12px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(111,33,204,.24);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
  padding: 46px 0 68px;
}

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

h1, h2, h3 { font-family: "Outfit", sans-serif; margin-top: 0; }
h1 {
  font-size: clamp(52px, 7vw, 90px);
  line-height: .95;
  letter-spacing: -.055em;
  margin-bottom: 28px;
  max-width: 760px;
}
h1 em { color: var(--purple); font-style: normal; }
.hero-text {
  max-width: 630px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(37,16,47,.68);
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.btn {
  padding: 15px 23px;
  border-radius: 17px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--purple); color: white; box-shadow: 0 14px 35px rgba(111,33,204,.25); }
.btn-secondary { background: rgba(255,255,255,.7); border: 1px solid rgba(111,33,204,.14); }

.hero-visual { display: grid; place-items: center; }
.logo-orbit {
  width: min(480px, 88vw);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}
.logo-orbit::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, white, #ffd4e7 62%, #ef9ac3 100%);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.8);
}
.logo-orbit img {
  position: relative;
  z-index: 2;
  width: 83%;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.02);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(111,33,204,.25);
  border-radius: 50%;
}
.orbit-one { inset: 2%; transform: rotate(18deg) scaleY(.76); }
.orbit-two { inset: 9%; transform: rotate(-24deg) scaleY(.72); }

.work { padding: 90px 0; }
.section-heading { max-width: 680px; margin-bottom: 38px; }
.section-heading h2, .approach h2, .contact h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.section-heading > p:last-child, .contact-copy > p:last-child {
  color: rgba(37,16,47,.62);
  line-height: 1.7;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.project-card {
  min-height: 340px;
  padding: 28px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(111,33,204,.11);
  box-shadow: 0 18px 60px rgba(73,20,95,.08);
  transition: transform .25s ease, border-color .25s ease;
}
.project-card:hover { transform: translateY(-7px); border-color: rgba(111,33,204,.3); }
.project-card-featured { background: linear-gradient(135deg, #6722b8, #a743c6); color: white; }
.project-number {
  font-family: "Outfit";
  font-size: 52px;
  font-weight: 800;
  color: rgba(111,33,204,.17);
}
.project-card-featured .project-number { color: rgba(255,255,255,.2); }
.project-type { font-size: 12px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; color: var(--purple); }
.project-card-featured .project-type { color: #ffd5ed; }
.project-content h3 { font-size: 34px; margin: 10px 0 10px; }
.project-content p { color: rgba(37,16,47,.64); line-height: 1.65; max-width: 520px; }
.project-card-featured p { color: rgba(255,255,255,.8); }
.project-content a { display: inline-flex; gap: 9px; align-items: center; font-weight: 800; text-decoration: none; margin-top: 12px; }

.approach {
  margin-top: 60px;
  margin-bottom: 110px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 36px;
  background: var(--purple-ink);
  color: white;
  box-shadow: var(--shadow);
}
.approach .eyebrow { color: #f3a8da; }
.approach-list { display: grid; gap: 13px; }
.approach-list span {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.process-list span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 14px;
  align-items: center;
}
.process-list b {
  grid-row: 1 / 3;
  font-family: "Outfit";
  font-size: 22px;
  color: #f3a8da;
}
.process-list i {
  font-style: normal;
  font-weight: 800;
  font-size: 17px;
}
.process-list small {
  color: rgba(255,255,255,.67);
  line-height: 1.45;
}

.about {
  margin-bottom: 100px;
  padding: 50px 54px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 42px;
  align-items: center;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(111,33,204,.11);
  box-shadow: 0 18px 60px rgba(73,20,95,.08);
}
.about-mark {
  width: 130px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: linear-gradient(145deg, #f29ac8, #7a2ad1);
  color: white;
  font-family: "Outfit";
  font-size: 42px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(111,33,204,.22);
}
.about h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}
.about-copy > p:last-child {
  max-width: 760px;
  color: rgba(37,16,47,.64);
  line-height: 1.7;
  font-size: 17px;
}

.contact { padding: 40px 0 100px; }
.contact-panel {
  border-radius: 40px;
  padding: 58px;
  background: linear-gradient(145deg, #ffd6e8, #f2a4ce);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.contact-cards { display: grid; gap: 15px; }
.contact-card {
  text-decoration: none;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(111,33,204,.1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateX(6px); box-shadow: 0 14px 28px rgba(84,28,111,.12); }
.flag { font-size: 28px; }
.contact-card span:nth-child(2) { display: grid; gap: 4px; }
.contact-card small { color: rgba(37,16,47,.58); }
.contact-card strong { font-size: 18px; }
.contact-card b { color: var(--purple); font-size: 22px; }

.site-footer {
  padding: 24px 0 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: rgba(37,16,47,.58);
  font-size: 14px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--purple-ink); }
.footer-brand img { width: 42px; height: 42px; border-radius: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; text-align: center; gap: 34px; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual { order: -1; }
  .logo-orbit { width: min(320px, 88vw); }
  .project-grid, .approach, .contact-panel { grid-template-columns: 1fr; }
  .approach, .contact-panel { padding: 30px; }
}

@media (max-width: 560px) {
  .section-shell { width: min(100% - 18px, 1180px); }
  .site-header {
    width: calc(100% - 16px);
    margin-top: 10px;
    padding: 8px 10px 8px 12px;
    border-radius: 18px;
    top: 8px;
  }
  .brand { gap: 8px; }
  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .brand strong { font-size: 14px; }
  .brand small { display: none; }
  .header-cta {
    padding: 9px 13px;
    border-radius: 13px;
    font-size: 14px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }
  h1 {
    font-size: 41px;
    margin-bottom: 18px;
  }
  .hero {
    min-height: auto;
    padding: 24px 0 34px;
    gap: 24px;
  }
  .hero-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .hero-actions {
    gap: 9px;
    width: 100%;
    justify-content: center;
  }
  .btn {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
  }
  .logo-orbit { width: min(250px, 78vw); }
  .project-grid { grid-template-columns: 1fr; gap: 14px; }
  .section-heading { margin-bottom: 24px; }
  .section-heading h2, .approach h2, .contact h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .work { padding: 62px 0; }
  .project-card {
    min-height: 255px;
    padding: 18px;
    border-radius: 22px;
  }
  .project-number { font-size: 38px; }
  .project-type { font-size: 10px; }
  .project-content h3 {
    font-size: 26px;
    margin: 8px 0;
  }
  .project-content p {
    font-size: 15px;
    line-height: 1.55;
  }
  .project-content a {
    margin-top: 8px;
    font-size: 14px;
  }
  .approach {
    margin-top: 24px;
    margin-bottom: 72px;
    padding: 20px;
    border-radius: 24px;
    gap: 18px;
  }
  .approach-list { gap: 10px; }
  .approach-list span {
    padding: 12px 14px;
    border-radius: 14px;
  }
  .process-list span {
    grid-template-columns: 34px 1fr;
    gap: 2px 10px;
  }
  .process-list b { font-size: 18px; }
  .process-list i { font-size: 15px; }
  .process-list small {
    font-size: 12px;
    line-height: 1.35;
  }
  .contact { padding: 24px 0 68px; }
  .contact-panel {
    padding: 20px;
    border-radius: 24px;
    gap: 20px;
  }
  .contact-cards { gap: 10px; }
  .contact-card {
    padding: 14px;
    border-radius: 18px;
    gap: 12px;
  }
  .flag { font-size: 24px; }
  .contact-card span:nth-child(2) { gap: 2px; }
  .contact-card small { font-size: 12px; }
  .contact-card strong { font-size: 14px; }
  .contact-card b { font-size: 18px; }
  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    font-size: 13px;
  }
  .footer-brand { gap: 9px; }
  .footer-brand img {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
}

@media (max-width: 390px) {
  h1 { font-size: 36px; }
  .section-heading h2, .approach h2, .contact h2 { font-size: 28px; }
  .btn { width: 100%; text-align: center; }
  .hero-actions { grid-template-columns: 1fr; }
  .project-card { padding: 16px; }
  .contact-card strong { font-size: 13px; }
}
