@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap");
:root {
  --ink: #f8f7ff;
  --muted: #c4b8db;
  --paper: #10051f;
  --cream: #25133f;
  --rose: #8b5cf6;
  --rose-dark: #60a5fa;
  --plum: #6d28d9;
  --night: #160a2c;
  --line: rgba(196, 181, 253, 0.2);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(109, 40, 217, 0.2), transparent 28%), var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: #fff;
  padding: 0.8rem 1rem;
  z-index: 99;
}
.skip-link:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), #2563eb);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
}
.nav-links a:hover {
  color: var(--rose-dark);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
}
.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 6vw;
  padding-block: 80px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--rose-dark);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.08;
  margin-top: 0;
}
h1 {
  font-size: clamp(3.4rem, 7vw, 6.9rem);
  letter-spacing: -0.055em;
  margin-bottom: 1.7rem;
}
h1 em {
  color: var(--rose-dark);
  font-weight: 500;
}
.lede {
  max-width: 640px;
  font-size: 1.18rem;
  color: var(--muted);
}
.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--ink);
  color: #fff;
}
.button.quiet {
  border-color: var(--line);
}
.button.light {
  background: #fff;
  color: var(--night);
  border-color: #fff;
  margin-top: 1rem;
}
.hero-art {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 48% 48% 8px 8px;
  background:
    radial-gradient(circle at 65% 30%, #ffe7dc 0 13%, transparent 13.5%),
    linear-gradient(145deg, #eed3dd, #c895b1 55%, #74537c);
  box-shadow: 0 30px 80px rgba(74, 40, 93, 0.2);
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 62%, rgba(17, 11, 32, 0.52));
}
.hero-art p {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 36px;
  margin: 0;
  color: #fff;
  font: 500 3rem/1 var(--serif);
}
.hero-art p span {
  font-size: 1.4rem;
  font-style: italic;
}
.branch {
  position: absolute;
  z-index: 2;
  width: 430px;
  height: 12px;
  background: #4b2b3b;
  border-radius: 100%;
  transform: rotate(-36deg);
}
.branch:before,
.branch:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 7px;
  background: inherit;
  border-radius: 100%;
  transform-origin: left;
}
.branch:before {
  left: 170px;
  transform: rotate(-38deg);
}
.branch:after {
  left: 270px;
  transform: rotate(28deg);
}
.branch-one {
  right: -130px;
  top: 190px;
}
.branch-two {
  left: -170px;
  top: 370px;
  transform: rotate(24deg);
}
.petal {
  position: absolute;
  z-index: 3;
  width: 26px;
  height: 42px;
  border-radius: 80% 20% 70% 30%;
  background: #ffe5ea;
  box-shadow:
    24px 8px #f7b5c2,
    -20px 13px #f9d2da;
}
.p1 {
  right: 28%;
  top: 24%;
}
.p2 {
  right: 13%;
  top: 38%;
  transform: rotate(55deg);
}
.p3 {
  left: 20%;
  top: 63%;
  transform: rotate(-30deg);
}
.p4 {
  left: 43%;
  top: 75%;
  transform: scale(0.7) rotate(25deg);
}
.p5 {
  right: 35%;
  top: 55%;
  transform: scale(0.65);
}
.marquee {
  overflow: hidden;
  background: var(--rose);
  color: #fff;
  padding: 0.8rem 0;
  white-space: nowrap;
}
.marquee div {
  font: 500 1rem var(--serif);
  word-spacing: 1.2rem;
  text-align: center;
}
.marquee span {
  color: #ffd7df;
}
.section {
  padding-block: 120px;
}
.section-intro {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 1fr;
  gap: 4vw;
  align-items: start;
  margin-bottom: 64px;
}
.section-intro h2,
.about-copy h2,
.featured h2,
.contact h2 {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  letter-spacing: -0.04em;
}
.section-intro p:last-child,
.about-copy p {
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.service-card {
  padding: 38px 32px 26px 0;
  border-right: 1px solid var(--line);
  min-height: 260px;
}
.service-card + article {
  padding-left: 32px;
}
.service-card:last-child {
  border-right: 0;
}
.service-card span {
  color: var(--rose-dark);
  font-size: 0.8rem;
}
.service-card h3 {
  font-size: 1.7rem;
  margin: 48px 0 12px;
}
.service-card p {
  color: var(--muted);
}
.featured-wrap {
  background: var(--night);
  color: #fff;
}
.featured {
  padding-block: 110px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 7vw;
}
.featured > div:first-child p:not(.eyebrow) {
  color: #cbc2d4;
}
.product-window {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #251932;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}
.window-bar {
  height: 32px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ec8798;
}
.window-body {
  height: 330px;
  display: grid;
  grid-template-columns: 22% 1fr;
  background: #fff;
}
.window-nav {
  background: #352441;
}
.window-content {
  padding: 50px 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.window-content b {
  grid-column: 1/-1;
  width: 44%;
  height: 18px;
  background: #382746;
}
.window-content span {
  height: 70px;
  background: #f1e6e9;
  border-bottom: 4px solid var(--rose);
}
.window-content strong {
  grid-column: 1/-1;
  height: 100px;
  background: #f4eff5;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}
.quote {
  position: relative;
  padding-left: 52px;
  font: 500 clamp(1.8rem, 3vw, 3.2rem)/1.25 var(--serif);
}
.quote > span {
  position: absolute;
  left: 0;
  top: -34px;
  font-size: 6rem;
  color: var(--rose);
}
.about-copy {
  padding-top: 20px;
}
.contact {
  background: var(--cream);
  padding-block: 100px;
  text-align: center;
}
.contact h2 {
  margin-bottom: 1.3rem;
}
.contact a {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 2.2rem);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.contact a span {
  color: var(--rose-dark);
}
footer {
  background: #0b0316;
  color: #fff;
  padding-block: 60px;
}
footer .shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: start;
}
footer .brand-mark {
  background: var(--rose);
}
footer p {
  margin: 0;
  color: #cfc6d5;
}
footer nav {
  display: grid;
  gap: 0.5rem;
}
footer nav a {
  text-decoration: none;
}
footer small {
  grid-column: 1/-1;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #aaa0b2;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.page-hero {
  padding-block: 110px 80px;
}
.page-hero h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 120px;
}
.app-card {
  min-height: 380px;
  padding: 40px;
  background: linear-gradient(145deg, #312e81, var(--night));
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.app-card[href]:hover,
.app-card[href]:focus-visible {
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 24px 60px rgba(3, 0, 15, 0.45);
  transform: translateY(-5px);
}
.app-card:before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.85), transparent 65%);
  right: -80px;
  top: -80px;
  opacity: 0.75;
}
.app-card h2 {
  font-size: 2.8rem;
  margin-bottom: 8px;
  position: relative;
}
.app-card p {
  color: #cfc6d5;
  position: relative;
}
.app-card .arrow {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-size: 2rem;
}
.app-card.hold {
  background: var(--cream);
  color: var(--ink);
}
.app-card.hold:before {
  filter: grayscale(1);
  opacity: 0.28;
}
.app-card.hold p {
  color: var(--muted);
}

.app-status {
  align-self: flex-start;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 999px;
  color: #6ee7b7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: auto;
  padding: 0.4rem 0.7rem;
  position: relative;
  text-transform: uppercase;
}

.app-card.hold .app-status {
  border-color: var(--line);
  color: #c4b5fd;
}

.app-details {
  color: #dbeafe;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  gap: 0.5rem 1.2rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  position: relative;
}

.app-details li::before {
  color: #6ee7b7;
  content: "•";
  margin-right: 0.4rem;
}

.services-page {
  padding-bottom: 7rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(1.5rem, 5vw, 5rem);
  grid-template-columns: 60px 1fr;
  padding: 2.5rem 0;
}

.service-list article > span {
  color: #6ee7b7;
  font-size: 0.8rem;
  font-weight: 700;
}

.service-list h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 0.75rem;
}

.service-list p,
.about-brief > p:last-child {
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}

.about-brief {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-top: 5rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.about-brief h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
@media (max-width: 800px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .nav {
    min-height: 72px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(33, 24, 45, 0.16);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 60px;
  }
  .hero-art {
    min-height: 420px;
  }
  .section {
    padding-block: 80px;
  }
  .section-intro,
  .featured,
  .split,
  footer .shell {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card + article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
    min-height: auto;
  }
  .service-card h3 {
    margin-top: 25px;
  }
  .window-body {
    height: 240px;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }

  .service-list article {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .marquee div {
    text-align: left;
  }
  .contact a {
    overflow-wrap: anywhere;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
}
