:root {
  --background: #fffdf5;
  --foreground: #1e293b;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #8b5cf6;
  --accent-foreground: #ffffff;
  --secondary: #f472b6;
  --tertiary: #fbbf24;
  --quaternary: #34d399;
  --border: #e2e8f0;
  --card: #ffffff;
  --input: #ffffff;
  --ring: #8b5cf6;
  --shadow-pop: 4px 4px 0 0 var(--foreground);
  --shadow-pop-hover: 6px 6px 0 0 var(--foreground);
  --shadow-pop-active: 2px 2px 0 0 var(--foreground);
  --shadow-soft: 8px 8px 0 0 #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --border-width: 2px;
  --container: 1120px;
  --transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 191, 36, 0.34), transparent 20%),
    radial-gradient(circle at 92% 10%, rgba(244, 114, 182, 0.22), transparent 18%),
    radial-gradient(circle at 85% 70%, rgba(52, 211, 153, 0.18), transparent 18%),
    var(--background);
  line-height: 1.7;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image: radial-gradient(circle, rgba(30, 41, 59, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 70%);
}

body::after {
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(139, 92, 246, 0.08) 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 0 48%, rgba(251, 191, 36, 0.06) 48% 52%, transparent 52%);
  background-size: 180px 180px;
  opacity: 0.36;
  z-index: -3;
}

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

button {
  font: inherit;
}

.button:focus-visible,
.menu-toggle:focus-visible,
.nav a:focus-visible,
.contact-links a:focus-visible,
.skip-link:focus {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  padding: 12px 16px;
  border: var(--border-width) solid var(--foreground);
  border-radius: var(--radius-full);
  background: var(--card);
  box-shadow: var(--shadow-pop);
  z-index: 40;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.page-decor {
  position: fixed;
  z-index: -1;
  border: var(--border-width) solid var(--foreground);
  box-shadow: var(--shadow-pop);
}

.page-decor-left {
  left: 28px;
  top: 156px;
  width: 88px;
  height: 88px;
  border-radius: 28px 28px 28px 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(244, 114, 182, 0.32) 0 8px,
      rgba(244, 114, 182, 0) 8px 16px
    ),
    var(--card);
}

.page-decor-right {
  right: 32px;
  bottom: 110px;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(30, 41, 59, 0.14) 12%, transparent 14%),
    radial-gradient(circle, rgba(30, 41, 59, 0.14) 12%, transparent 14%);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  background-color: rgba(52, 211, 153, 0.22);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 16px 20px;
  background: rgba(255, 253, 245, 0.92);
  border: var(--border-width) solid var(--foreground);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-pop);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark,
.button-icon,
.sticker-icon,
.feature-badge,
.floating-badge,
.process-number,
.chip-dot {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border: var(--border-width) solid var(--foreground);
  border-radius: 18px 18px 18px 0;
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-pop);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.eyebrow,
.stat-label,
.project-kicker,
.card-label {
  font-family: "Outfit", system-ui, sans-serif;
  letter-spacing: 0.08em;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted-foreground);
  text-transform: lowercase;
}

.nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  position: relative;
  color: var(--muted-foreground);
  font-weight: 600;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--tertiary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--foreground);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  min-height: 48px;
  padding: 0 18px;
  border: var(--border-width) solid var(--foreground);
  border-radius: var(--radius-full);
  background: var(--card);
  box-shadow: var(--shadow-pop);
  font-weight: 700;
}

.section {
  padding: 56px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
  padding-top: 18px;
}

.hero-copy {
  position: relative;
  padding: 38px;
  border: var(--border-width) solid var(--foreground);
  border-radius: 36px 36px 36px 0;
  background: var(--card);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -64px;
  top: 54px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.42);
  z-index: 0;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.88rem;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.blob-panel h2 {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.hero h1 span {
  color: var(--accent);
}

.hero-intro,
.section-heading p,
.sticker-card p,
.contact-copy p {
  color: var(--muted-foreground);
}

.hero-intro {
  max-width: 60ch;
  margin: 22px 0 24px;
  font-size: 1.03rem;
}

.hero-tags,
.hero-actions,
.tag-row,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags span,
.tag-row span,
.sticker-chip,
.contact-links a {
  border: var(--border-width) solid var(--foreground);
  background: var(--card);
}

.hero-tags span,
.tag-row span {
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-size: 0.94rem;
  box-shadow: 3px 3px 0 0 rgba(30, 41, 59, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: var(--border-width) solid var(--foreground);
  border-radius: var(--radius-full);
  font-weight: 700;
  transition:
    transform var(--transition-bounce),
    box-shadow var(--transition-bounce),
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
}

.button:active {
  transform: translate(2px, 2px);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-pop);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: var(--shadow-pop-hover);
}

.button-primary:active {
  box-shadow: var(--shadow-pop-active);
}

.button-secondary {
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--tertiary);
}

.button-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  font-size: 1rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  box-shadow: 3px 3px 0 0 rgba(30, 41, 59, 0.14);
}

.chip-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--quaternary);
  border: 2px solid var(--foreground);
}

.hero-visual {
  position: relative;
}

.hero-blob {
  position: relative;
  min-height: 560px;
  border: var(--border-width) dashed rgba(30, 41, 59, 0.28);
  border-radius: 42px;
  background:
    radial-gradient(circle at 72% 20%, rgba(139, 92, 246, 0.18), transparent 16%),
    radial-gradient(circle at 24% 70%, rgba(251, 191, 36, 0.22), transparent 18%),
    rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.blob-panel,
.floating-card,
.sticker-card,
.contact-card,
.stat-card {
  border: var(--border-width) solid var(--foreground);
  background: var(--card);
}

.blob-panel {
  position: absolute;
  inset: 34px 26px auto 26px;
  padding: 28px;
  border-radius: 32px 32px 32px 0;
  box-shadow: var(--shadow-pop);
}

.blob-panel h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.card-label {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 0.86rem;
}

.floating-card {
  position: absolute;
  width: min(240px, calc(100% - 44px));
  padding: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.floating-card strong,
.sticker-card h3,
.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Outfit", system-ui, sans-serif;
}

.floating-card p,
.sticker-card p,
.section-heading p,
.contact-copy p {
  margin: 0;
}

.floating-card.tone-pink {
  right: 24px;
  bottom: 138px;
}

.floating-card.tone-yellow {
  left: 24px;
  bottom: 28px;
}

.floating-badge,
.feature-badge,
.process-number {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border: var(--border-width) solid var(--foreground);
  border-radius: 999px;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 800;
  box-shadow: 3px 3px 0 0 rgba(30, 41, 59, 0.16);
}

.tone-pink .floating-badge,
.tone-pink .feature-badge {
  background: var(--secondary);
  color: var(--accent-foreground);
}

.tone-yellow .floating-badge,
.tone-yellow .feature-badge,
.process-number {
  background: var(--tertiary);
}

.tone-violet .feature-badge {
  background: var(--accent);
  color: var(--accent-foreground);
}

.shape-stack {
  position: absolute;
  inset: auto 22px 22px auto;
  width: 132px;
  height: 132px;
}

.shape-circle,
.shape-triangle,
.shape-pill {
  position: absolute;
  border: var(--border-width) solid var(--foreground);
  box-shadow: 3px 3px 0 0 rgba(30, 41, 59, 0.16);
}

.shape-circle {
  top: 12px;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--quaternary);
}

.shape-triangle {
  left: 0;
  bottom: 14px;
  width: 0;
  height: 0;
  border: none;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-bottom: 56px solid var(--accent);
  box-shadow: none;
}

.shape-pill {
  right: 26px;
  bottom: 0;
  width: 62px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--tertiary);
}

.marquee {
  margin: 30px 0 0;
  border-top: var(--border-width) dashed rgba(30, 41, 59, 0.3);
  border-bottom: var(--border-width) dashed rgba(30, 41, 59, 0.3);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 14px 0;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-track span {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: var(--border-width) solid var(--foreground);
  background: var(--card);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  box-shadow: 3px 3px 0 0 rgba(30, 41, 59, 0.12);
  text-transform: lowercase;
}

.stats-strip,
.about-grid,
.card-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

.stats-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.stat-card {
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.stat-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.84rem;
}

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

.section-heading h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
}

.section-heading p {
  max-width: 62ch;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 138px;
  height: 18px;
  margin-top: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='18' viewBox='0 0 138 18' fill='none'%3E%3Cpath d='M2 9C12 2 22 16 32 9C42 2 52 16 62 9C72 2 82 16 92 9C102 2 112 16 122 9C126 6 131 5 136 9' stroke='%23F472B6' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.about-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.sticker-card,
.contact-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-bounce), box-shadow var(--transition-bounce);
}

.sticker-card:hover,
.sticker-card:focus-within {
  transform: rotate(-1deg) scale(1.015);
}

.speech-card {
  border-radius: 28px 28px 28px 0;
}

.sticker-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: var(--border-width) solid var(--foreground);
  box-shadow: var(--shadow-pop);
}

.tone-violet.sticker-icon,
.tone-violet .sticker-icon {
  border-radius: 999px;
  background: var(--accent);
}

.tone-green.sticker-icon,
.tone-green .sticker-icon {
  border-radius: 18px 18px 18px 0;
  background: var(--quaternary);
}

.check-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 10px;
}

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

.features-grid {
  position: relative;
}

.features-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 56px;
  border-top: var(--border-width) dashed rgba(30, 41, 59, 0.28);
  z-index: 0;
}

.feature-card,
.project-card,
.process-step {
  min-height: 240px;
}

.feature-card,
.project-card,
.process-step {
  z-index: 1;
}

.project-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.86rem;
}

.featured-project {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 10px 10px 0 0 rgba(251, 191, 36, 0.58);
}

.featured-project:hover,
.featured-project:focus-within {
  transform: translateY(-10px) rotate(-1deg) scale(1.04);
}

.featured-star {
  position: absolute;
  top: -18px;
  right: 18px;
  padding: 10px 12px;
  border: var(--border-width) solid var(--foreground);
  background: var(--tertiary);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  transform: rotate(14deg);
  box-shadow: var(--shadow-pop);
}

.tag-row {
  margin-top: 18px;
}

.process-number {
  color: var(--foreground);
}

.contact-section {
  padding-bottom: 20px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 24px;
  align-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at right top, rgba(244, 114, 182, 0.16), transparent 24%),
    radial-gradient(circle at left bottom, rgba(52, 211, 153, 0.16), transparent 20%),
    var(--card);
}

.contact-links {
  flex-direction: column;
}

.contact-links a {
  width: 100%;
  min-height: 52px;
  align-items: center;
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-pop);
  font-weight: 700;
  transition: transform var(--transition-bounce), box-shadow var(--transition-bounce), background-color 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop-hover);
  background: var(--muted);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 36px 4px 10px;
  color: var(--muted-foreground);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .about-grid,
  .features-grid,
  .projects-grid,
  .process-grid,
  .stats-strip,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .features-grid::before {
    display: none;
  }

  .featured-project {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 18px;
  }

  .page-decor {
    display: none;
  }

  .topbar {
    top: 10px;
    flex-wrap: wrap;
    border-radius: 28px;
    padding: 14px 16px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

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

  .hero-copy,
  .blob-panel,
  .sticker-card,
  .contact-card,
  .stat-card {
    box-shadow: 2px 2px 0 0 var(--foreground);
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .hero-note,
  .hero-tags span,
  .tag-row span,
  .contact-links a {
    box-shadow: 2px 2px 0 0 rgba(30, 41, 59, 0.2);
  }

  .hero-blob {
    min-height: 480px;
  }

  .blob-panel {
    inset: 20px 18px auto 18px;
    padding: 22px;
  }

  .floating-card {
    width: calc(100% - 36px);
  }

  .floating-card.tone-pink {
    right: 18px;
    bottom: 132px;
  }

  .floating-card.tone-yellow {
    left: 18px;
    bottom: 24px;
  }

  .section {
    padding-top: 44px;
  }

  .contact-card {
    border-radius: 28px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
