:root {
  --ink: #12151f;
  --muted: #5e6678;
  --paper: #fbfbf8;
  --soft: #eef2f8;
  --line: #dfe5ee;
  --cobalt: #2457ff;
  --aqua: #30d6c9;
  --coral: #ff6b4a;
  --lemon: #f8d95a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 29, 51, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(18, 21, 31, 0.08);
  background: rgba(251, 251, 248, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.site-nav {
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--cobalt);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 76px);
  overflow: hidden;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cobalt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 9.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
}

.hero-line {
  margin: 26px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.06;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.select-package {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.select-package:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--cobalt);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(36, 87, 255, 0.26);
}

.button-secondary,
.select-package {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.design-board {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(18, 21, 31, 0.1);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(36, 87, 255, 0.1), rgba(48, 214, 201, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.design-board::before {
  position: absolute;
  inset: 72px auto auto -42px;
  width: 92px;
  height: 160px;
  border-radius: 8px;
  background: var(--coral);
  content: "";
  transform: rotate(-8deg);
}

.design-board::after {
  position: absolute;
  right: -32px;
  bottom: 54px;
  width: 132px;
  height: 132px;
  border: 18px solid var(--lemon);
  border-radius: 50%;
  content: "";
}

.board-topbar {
  display: flex;
  gap: 8px;
  height: 44px;
  align-items: center;
}

.board-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line);
}

.board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 1fr);
  gap: 16px;
}

.asset-tile,
.service-card,
.package-card,
.work-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.asset-tile {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 20px;
  overflow: hidden;
}

.tile-label {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-logo {
  display: grid;
  width: min(42%, 118px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 800;
}

.phone-mockup {
  display: grid;
  width: min(44%, 112px);
  aspect-ratio: 0.58;
  place-items: end center;
  border: 8px solid var(--ink);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(36, 87, 255, 0.86), rgba(48, 214, 201, 0.78)),
    var(--soft);
  padding: 12px;
}

.phone-mockup span {
  width: 54%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.vector-tile svg {
  width: 76%;
  max-width: 220px;
  overflow: visible;
}

.vector-tile path,
.work-vector path {
  fill: none;
  stroke: var(--cobalt);
  stroke-linecap: round;
  stroke-width: 10;
}

.vector-tile circle {
  fill: var(--coral);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, 82px);
  gap: 14px;
}

.swatches span {
  aspect-ratio: 1;
  border-radius: 18px;
}

.swatches span:nth-child(1) {
  background: var(--cobalt);
}

.swatches span:nth-child(2) {
  background: var(--aqua);
}

.swatches span:nth-child(3) {
  background: var(--coral);
}

.swatches span:nth-child(4) {
  background: var(--lemon);
}

.intro-band,
.process-band,
.site-footer {
  padding: clamp(28px, 5vw, 52px) clamp(18px, 5vw, 76px);
}

.intro-band {
  background: var(--ink);
  color: var(--white);
}

.intro-band p {
  max-width: 1060px;
  margin: 0 auto;
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.18;
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

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

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.service-grid,
.package-grid,
.work-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.package-card,
.work-card {
  padding: 24px;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--cobalt);
  font-weight: 800;
}

.service-card h3,
.package-card h3,
.work-card h3,
.process-band h3 {
  margin: 0;
  font-size: 1.15rem;
}

.service-card p,
.package-card p,
.work-card p,
.process-band p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.packages-section {
  background: var(--soft);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.featured-package {
  border-color: rgba(36, 87, 255, 0.38);
  box-shadow: var(--shadow);
}

.package-name {
  margin: 0 0 18px;
  color: var(--cobalt);
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 26px;
  padding-left: 19px;
  color: var(--muted);
}

.select-package {
  width: 100%;
  margin-top: auto;
}

.featured-package .select-package {
  background: var(--ink);
  color: var(--white);
}

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

.featured-work {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(18, 21, 31, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 87, 255, 0.08), rgba(48, 214, 201, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.featured-work-media {
  display: grid;
  gap: 14px;
}

.featured-browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 21, 31, 0.96), rgba(36, 87, 255, 0.9)),
    var(--ink);
}

.featured-browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.featured-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccd5e4;
}

.featured-brand-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(108px, 0.42fr);
  gap: 20px;
  align-items: center;
  min-height: 300px;
  padding: clamp(20px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}

.featured-product-row img {
  display: block;
  max-width: 100%;
}

.dabber-snapshot {
  display: grid;
  align-content: center;
  min-height: 178px;
  border-radius: 8px;
  background: var(--white);
  padding: clamp(18px, 3vw, 28px);
}

.dabber-snapshot p {
  max-width: 380px;
  margin: 0;
  color: #050505;
  font-size: clamp(2.2rem, 5vw, 5.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
}

.dabber-snapshot span,
.snapshot-stack span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
}

.dabber-snapshot span {
  background: #ffc51d;
  color: #050505;
}

.snapshot-stack {
  display: grid;
  gap: 12px;
}

.snapshot-stack span {
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.featured-product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.featured-product-row img {
  width: 100%;
  height: 154px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #10131d;
  padding: 12px;
}

.featured-work-copy {
  display: grid;
  align-content: center;
}

.featured-work-copy h3 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 0.92;
}

.featured-work-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.work-card {
  overflow: hidden;
  padding: 0;
}

.work-card h3,
.work-card p {
  padding: 0 22px;
}

.work-card p {
  padding-bottom: 22px;
}

.work-art {
  display: grid;
  min-height: 260px;
  place-items: center;
  margin-bottom: 22px;
  background: var(--soft);
}

.work-logo .work-art {
  background: #12151f;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 800;
}

.work-product .work-art {
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.28) 49%, rgba(255, 255, 255, 0.28) 51%, transparent 52%),
    linear-gradient(135deg, #2457ff, #30d6c9);
}

.work-product .work-art span {
  width: min(42%, 138px);
  aspect-ratio: 0.72;
  border: 12px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 22px 38px rgba(18, 21, 31, 0.18);
}

.work-vector svg {
  width: 78%;
  max-width: 260px;
}

.work-vector path:nth-child(2) {
  stroke: var(--coral);
  stroke-width: 7;
}

.process-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}

.process-band div {
  min-height: 230px;
  padding: clamp(22px, 4vw, 36px);
  background: #191d2a;
  color: var(--white);
}

.process-band span {
  display: block;
  margin-bottom: 52px;
  color: var(--aqua);
  font-weight: 800;
}

.process-band p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.project-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  background: var(--paper);
  color: var(--ink);
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--cobalt);
  outline: 3px solid rgba(36, 87, 255, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--cobalt);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero,
  .contact-section,
  .featured-work {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .design-board {
    min-height: 500px;
  }

  .service-grid,
  .package-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .design-board {
    min-height: auto;
    padding: 12px;
  }

  .design-board::before,
  .design-board::after {
    display: none;
  }

  .board-grid,
  .service-grid,
  .package-grid,
  .work-grid,
  .featured-brand-preview,
  .process-band {
    grid-template-columns: 1fr;
  }

  .featured-brand-preview {
    min-height: 260px;
  }

  .featured-product-row img {
    height: 126px;
  }

  .asset-tile {
    min-height: 190px;
  }

  .process-band div {
    min-height: 190px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
