:root {
  --dark: #1f1d1a;
  --ink: #2b2926;
  --muted: #67625d;
  --paper: #ffffff;
  --cream: #f7f2ea;
  --green: #dff3e8;
  --blue: #e8f3fb;
  --pastel-blue: #bfe7ff;
  --red: #fde8e4;
  --line: rgba(31, 29, 26, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 42px;
  background: #000000;
  border-bottom: 1px solid rgba(191, 231, 255, 0.28);
  backdrop-filter: blur(8px);
  color: var(--pastel-blue);
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 8px;
  color: var(--pastel-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--pastel-blue);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--pastel-blue);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-section {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 150px 6vw 80px;
  background:
    radial-gradient(circle at 86% 18%, rgba(191, 231, 255, 0.42), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 68%, var(--blue) 100%);
  background-color: var(--white);
}

.hero-content {
  max-width: 720px;
  color: var(--dark);
}

.eyebrow,
.section-kicker,
.product-tag {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
}

h1 {
  margin: 0;
  font-weight: 600;
  line-height: 1;
  font-size: 10px;
}
.hero-content
.intro-info h2,
.section-heading h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1;
}

.hero-content h1 {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 86px);
}

.hero-text {
  max-width: 580px;
  margin: 26px 0 34px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.secondary-button,
.all-plans-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.primary-button,
.all-plans-button {
  background: var(--dark);
  color: var(--white);
}

.secondary-button {
  border: 1px solid currentColor;
  color: var(--white);
}

.primary-button:hover,
.secondary-button:hover,
.all-plans-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 56px;
  align-items: center;
  padding: 96px 6vw 140px;
  background: linear-gradient(
    to bottom,
    var(--blue) 0%,
    var(--blue) 72%,
    var(--green) 100%
  );
}

.intro-image {
  min-height: 560px;
  border-radius: 20px;
  background: url("../assets/plan1.png") center / contain no-repeat, var(--white);
}

.intro-info {
  max-width: 680px;
}

.section-kicker {
  color: #718375;
}

.intro-info h2,
.section-heading h2 {
  font-size: clamp(42px, 6vw, 64px);
}

.intro-info > p,
.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.feature-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.feature-grid span {
  display: block;
  margin-bottom: 22px;
  color: #718375;
  font-weight: 900;
}

.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.packages-section {
  padding: 70px 0 96px 6vw;
  background: var(--green);
}

.section-heading {
  max-width: 720px;
  padding-right: 6vw;
  margin-bottom: 36px;
}

.product-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 420px);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 4px 6vw 20px 0;
}

.product-carousel::-webkit-scrollbar {
  height: 10px;
}

.product-carousel::-webkit-scrollbar-track {
  background: rgba(31, 29, 26, 0.12);
  border-radius: 999px;
}

.product-carousel::-webkit-scrollbar-thumb {
  background: rgba(31, 29, 26, 0.42);
  border-radius: 999px;
}

.product-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 20px;
  scroll-snap-align: start;
  background-color: #c7bba9;
  background-size: cover;
  background-position: center;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(31, 29, 26, 0.12), rgba(31, 29, 26, 0.74));
}

.product-custom {
  background-image: linear-gradient(135deg, #47324f 0%, #8d668e 48%, #c69bc7 100%);
}

.product-one {
  background-image: linear-gradient(135deg, #314b43 0%, #6f9a8a 50%, #a8cdbf 100%);
}

.product-two {
  background-image: linear-gradient(135deg, #426b78 0%, #7fa6b0 48%, #b6ccd5 100%);
}

.product-three {
  background-image: linear-gradient(135deg, #766c94 0%, #b17f9d 50%, #d6aeb4 100%);
}

.product-four {
  background-image: linear-gradient(135deg, #3b355d 0%, #7a608d 48%, #c28aa2 100%);
}

.product-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 30px;
  color: var(--white);
}

.product-content h3 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1;
}

.plan-price {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.product-content p:not(.product-tag) {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
}

.plan-list {
  display: grid;
  gap: 9px;
  min-height: 116px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.45;
}

.plan-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.interest-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.35;
  transition: transform 0.2s ease, background 0.2s ease;
}

.interest-button:hover {
  transform: translateY(-2px);
  background: #000000;
}

.all-plans-button {
  width: fit-content;
  margin: 26px auto 0;
}

.worked-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 54px;
  padding: 88px 6vw 86px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(
      to bottom,
      var(--green) 0%,
      #dfeee6 18%,
      #d8cde7 76%,
      #d6c0e2 100%
    );
}

.mockups-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 54px;
  padding: 88px 6vw 98px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.42), transparent 32%),
    radial-gradient(circle at 12% 86%, rgba(223, 243, 232, 0.46), transparent 30%),
    linear-gradient(
      to bottom,
      #d6c0e2 0%,
      #c8aadf 24%,
      #d9b5d2 62%,
      #edc1bf 100%
    );
}

.worked-heading {
  max-width: 520px;
}

.worked-heading h2 {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.worked-heading p:not(.section-kicker) {
  margin: 0;
  color: rgba(31, 29, 26, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.worked-links {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding-left: clamp(28px, 4vw, 56px);
}

.worked-links::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(31, 29, 26, 0.2);
}

.worked-link {
  position: relative;
  width: fit-content;
  padding-bottom: 8px;
  color: var(--dark);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}

.project-link-card {
  display: grid;
  gap: 8px;
  width: fit-content;
}

.project-link-card span {
  color: rgba(31, 29, 26, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.worked-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 3s ease;
}

.worked-link:hover::after {
  transform: scaleX(1);
}

.mockup-links .worked-link {
  font-size: clamp(28px, 4.2vw, 52px);
}

.portfolio-page {
  padding-top: 88px;
  background: var(--paper);
}

.portfolio-body {
  --portfolio-header-height: 88px;
  --portfolio-footer-height: 56px;
  height: 100vh;
  overflow: hidden;
}

.portfolio-body .site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  min-height: var(--portfolio-footer-height);
  padding-top: 14px;
  padding-bottom: 14px;
}

.portfolio-body .portfolio-page {
  height: 100vh;
  padding-bottom: var(--portfolio-footer-height);
  overflow: hidden;
}

.portfolio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 88px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.54), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.4), transparent 32%),
    linear-gradient(90deg, var(--green) 0%, #e3eee8 38%, #dacbe7 58%, #d6c0e2 100%);
}

.portfolio-column {
  display: grid;
  align-items: start;
  padding: clamp(72px, 8vw, 118px) clamp(26px, 5vw, 76px);
}

.portfolio-body .portfolio-split {
  height: calc(100vh - var(--portfolio-header-height) - var(--portfolio-footer-height));
  min-height: 0;
  overflow: hidden;
}

.portfolio-body .portfolio-column {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(31, 29, 26, 0.3) transparent;
  scrollbar-width: thin;
}

.portfolio-body .portfolio-column::-webkit-scrollbar {
  width: 10px;
}

.portfolio-body .portfolio-column::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(31, 29, 26, 0.24);
}

.portfolio-column--delivered {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.58), transparent 34%),
    linear-gradient(90deg, rgba(223, 243, 232, 0.92) 0%, rgba(223, 243, 232, 0.68) 62%, rgba(216, 205, 231, 0.18) 100%);
}

.portfolio-column--mockups {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.48), transparent 32%),
    radial-gradient(circle at 16% 92%, rgba(223, 243, 232, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(216, 205, 231, 0.2) 0%, rgba(216, 192, 226, 0.78) 36%, rgba(216, 192, 226, 0.94) 100%);
}

.portfolio-panel {
  width: min(100%, 620px);
}

.portfolio-panel h1 {
  margin: 0 0 20px;
  color: var(--dark);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.94;
}

.portfolio-panel > p:not(.section-kicker) {
  margin: 0 0 42px;
  color: rgba(31, 29, 26, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.portfolio-links {
  display: grid;
  gap: 22px;
}

.portfolio-links .project-link-card {
  width: 100%;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(31, 29, 26, 0.16);
}

.portfolio-links .worked-link {
  font-size: clamp(28px, 4.5vw, 54px);
}

.portfolio-links--mockups {
  gap: 16px;
}

.portfolio-links--mockups .project-link-card {
  padding-block: 14px 16px;
}

.portfolio-links--mockups .worked-link {
  font-size: clamp(24px, 3.2vw, 42px);
}

.animations-section {
  min-height: 460px;
  display: grid;
  align-items: center;
  padding: 92px 6vw 104px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.48), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(223, 243, 232, 0.34), transparent 30%),
    linear-gradient(
      to bottom,
      var(--green) 0%,
      #e8f2e7 18%,
      #efd6d1 58%,
      #f5b7a8 100%
    );
}

.animations-copy {
  max-width: 780px;
}

.animations-copy h1,
.animations-copy h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--dark);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.animations-copy p:not(.section-kicker) {
  max-width: 660px;
  margin: 0 0 34px;
  color: rgba(31, 29, 26, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.animations-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--dark);
  border-radius: 20px;
  color: var(--dark);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.animations-button:hover,
.animations-button:focus-visible {
  color: var(--white);
  background: #000000;
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw;
  color: var(--white);
  background: #000000;
}

.site-footer p {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 6px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 16px 22px;
  }

  .brand {
    position: static;
    transform: none;
    font-size: 32px;
    letter-spacing: 5px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-section {
    min-height: 700px;
    padding-top: 170px;
    background-position: center bottom;
  }

  .intro-section {
    grid-template-columns: 1fr;
  }

  .intro-image {
    min-height: 420px;
  }

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

  .worked-section,
  .mockups-section,
  .portfolio-split {
    grid-template-columns: 1fr;
  }

  .portfolio-page {
    padding-top: 92px;
  }

  .portfolio-body {
    height: auto;
    min-height: 100vh;
    overflow: auto;
  }

  .portfolio-body .site-footer {
    position: static;
  }

  .portfolio-body .portfolio-page {
    height: auto;
    min-height: 100vh;
    padding-bottom: 0;
    overflow: visible;
  }

  .portfolio-body .portfolio-split {
    height: auto;
    min-height: calc(100vh - 92px);
    overflow: visible;
  }

  .portfolio-column {
    min-height: auto;
    padding: 70px 22px;
  }

  .portfolio-body .portfolio-column {
    overflow: visible;
  }

  .worked-links {
    padding-top: 30px;
    padding-left: 0;
  }

  .worked-links::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
  }

  .animations-section {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .intro-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .packages-section {
    padding-left: 22px;
  }

  .worked-section,
  .mockups-section {
    padding: 70px 22px;
  }

  .portfolio-panel h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .portfolio-links .worked-link,
  .portfolio-links--mockups .worked-link {
    font-size: clamp(25px, 9vw, 38px);
  }

  .animations-section {
    padding: 72px 22px 82px;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .product-carousel {
    grid-auto-columns: minmax(268px, 86vw);
  }

  .product-card {
    min-height: 450px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
