:root {
  --ink: #171717;
  --muted: #6b7280;
  --paper: #f8f7f3;
  --white: #ffffff;
  --line: #e7e5df;
  --accent: #e85d2a;
  --accent-soft: #fff1e9;
  --teal: #0f9f8f;
  --dark: #202124;
  --shadow: 0 30px 80px rgba(23, 23, 23, 0.14);
  --space-x: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--space-x);
  background: rgba(248, 247, 243, 0.88);
  border-bottom: 1px solid rgba(231, 229, 223, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(500px, 1.26fr);
  gap: clamp(34px, 4.5vw, 64px);
  align-items: center;
  min-height: auto;
  padding: clamp(48px, 7vw, 88px) var(--space-x) clamp(42px, 6vw, 78px);
  background:
    linear-gradient(125deg, rgba(232, 93, 42, 0.08), transparent 38%),
    linear-gradient(160deg, #fff 0%, var(--paper) 72%);
}

.hero-copy {
  width: min(660px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(44px, 6vw, 82px);
}

h2 {
  max-width: 780px;
  font-size: clamp(34px, 4.5vw, 60px);
}

h3 {
  font-size: clamp(21px, 2.2vw, 28px);
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.personal-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.personal-facts span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 11px;
  color: #3f3f46;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.response-note {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.proof-note {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-studio {
  position: relative;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.studio-window {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(23, 23, 23, 0.14);
  transform: rotate(-1.5deg) scale(1.04);
  transform-origin: center right;
}

.studio-toolbar {
  display: flex;
  gap: 8px;
  height: 42px;
  align-items: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.studio-toolbar span {
  width: 10px;
  height: 10px;
  background: #d6d3cd;
  border-radius: 999px;
}

.studio-toolbar span:first-child {
  background: var(--accent);
}

.studio-content {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(220px, 0.72fr);
  min-height: 470px;
}

.studio-preview {
  display: grid;
  align-content: end;
  gap: 16px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.94), rgba(23, 23, 23, 0.62)),
    radial-gradient(circle at 80% 18%, rgba(232, 93, 42, 0.42), transparent 28%),
    linear-gradient(135deg, #171717, #3f3f46);
}

.studio-preview h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(32px, 3.7vw, 50px);
}

.studio-preview p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.mini-label {
  width: max-content;
  color: #ffd6c4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.mini-actions span {
  display: block;
  width: 132px;
  height: 42px;
  background: var(--accent);
  border-radius: 8px;
}

.mini-actions span + span {
  width: 104px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.studio-code {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  color: #d6d3cd;
  background: #111111;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.6;
}

.studio-code span {
  display: block;
  overflow-wrap: anywhere;
}

.studio-note {
  display: grid;
  gap: 3px;
  justify-self: end;
  max-width: 360px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(23, 23, 23, 0.1);
}

.studio-note span {
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.button:hover,
.price-card:hover,
.browser-shot:hover {
  transform: translateY(-2px);
}

.portfolio-wall {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-auto-rows: minmax(126px, auto);
  gap: 16px;
  min-width: 0;
}

.browser-shot {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.browser-shot.large {
  grid-row: span 2;
}

.browser-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: top center;
}

.browser-shot.large img {
  min-height: 420px;
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  background: #d6d3cd;
  border-radius: 999px;
}

.browser-bar span:first-child {
  background: var(--accent);
}

.browser-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(231, 229, 223, 0.9);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.browser-caption span,
.mockup-screen span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.browser-caption strong,
.mockup-screen strong {
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.08;
}

.mockup {
  min-height: 190px;
}

.mockup-screen {
  display: grid;
  min-height: 168px;
  align-content: end;
  gap: 6px;
  padding: 18px;
}

.coolair-mock {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(255, 255, 255, 0.95)),
    repeating-linear-gradient(0deg, rgba(23, 23, 23, 0.04) 0 1px, transparent 1px 18px);
}

.torque-mock {
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.9), rgba(232, 93, 42, 0.28)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 24px);
}

.torque-mock span,
.torque-mock strong {
  color: var(--white);
}

.barber-mock {
  background:
    linear-gradient(135deg, rgba(232, 93, 42, 0.14), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 78% 24%, rgba(232, 93, 42, 0.18), transparent 22%);
}

.section {
  padding: clamp(48px, 7vw, 86px) var(--space-x);
}

.section-heading {
  margin-bottom: clamp(24px, 4vw, 38px);
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.showcase-list {
  display: grid;
  gap: clamp(38px, 7vw, 86px);
}

.showcase-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.54fr);
  gap: 0;
  align-items: center;
  color: inherit;
  outline: 0;
}

.showcase-item:focus-visible {
  outline: 3px solid rgba(232, 93, 42, 0.28);
  outline-offset: 8px;
  border-radius: 14px;
}

.showcase-item.is-reversed {
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1.16fr);
}

.showcase-item.is-reversed .showcase-preview {
  order: 2;
}

.showcase-item.is-reversed .showcase-copy {
  order: 1;
}

.showcase-preview {
  display: block;
  perspective: 1300px;
}

.device-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 12px;
  box-shadow:
    0 26px 70px rgba(23, 23, 23, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: rotateX(0deg) rotateY(-3deg);
  transform-origin: center;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.showcase-item.is-reversed .device-frame {
  transform: rotateX(0deg) rotateY(3deg);
}

.showcase-item.is-featured .device-frame {
  aspect-ratio: 16 / 9;
  box-shadow:
    0 34px 90px rgba(23, 23, 23, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.showcase-item:hover .device-frame {
  box-shadow:
    0 38px 98px rgba(23, 23, 23, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transform: translateY(-7px) rotateX(0deg) rotateY(0deg) scale(1.012);
}

.device-toolbar {
  display: flex;
  gap: 7px;
  height: 36px;
  align-items: center;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.device-toolbar span {
  width: 9px;
  height: 9px;
  background: #d6d3cd;
  border-radius: 999px;
}

.device-toolbar span:first-child {
  background: var(--accent);
}

.device-frame img {
  display: block;
  width: 100%;
  height: calc(100% - 36px);
  object-fit: cover;
  object-position: top center;
  transition: transform 420ms ease;
}

.showcase-item:hover img {
  transform: scale(1.018);
}

.showcase-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  align-content: center;
  min-height: 220px;
  margin-left: clamp(-68px, -5vw, -42px);
  padding: clamp(20px, 2.5vw, 30px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 229, 223, 0.9);
  border-radius: 12px;
  box-shadow: 0 18px 52px rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.showcase-item.is-reversed .showcase-copy {
  margin-right: clamp(-68px, -5vw, -42px);
  margin-left: 0;
}

.showcase-item:hover .showcase-copy {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 78px rgba(23, 23, 23, 0.14);
  transform: translateY(-3px);
}

.project-type {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.5vw, 48px);
}

.showcase-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.project-focus {
  margin: 0 0 14px !important;
  color: var(--ink) !important;
  font-size: 14px;
  font-weight: 900;
}

.live-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid rgba(232, 93, 42, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-link strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
}

.live-link strong::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  transition: width 200ms ease;
}

.showcase-item:hover .live-link strong::after {
  width: 42px;
}

.project-action,
.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.text-link {
  color: var(--ink);
  background: transparent;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  padding-inline: 0;
}

.project-action.is-disabled {
  color: var(--muted);
  background: #f0eee8;
  cursor: default;
}

.project-action:not(.is-disabled):hover,
.text-link:hover {
  opacity: 0.74;
}

.why,
.pricing {
  background: var(--paper);
}

.deliverables {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.about-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.profile-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(26px, 4vw, 42px);
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-photo {
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(232, 93, 42, 0.82), rgba(23, 23, 23, 0.94)),
    var(--ink);
  border-radius: 999px;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.14);
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo span {
  font-size: 34px;
  font-weight: 900;
}

.profile-card span {
  color: var(--muted);
  font-weight: 800;
}

.profile-card p {
  max-width: 300px;
  margin: 4px 0 0;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--paper);
}

.trust-heading {
  position: sticky;
  top: 110px;
}

.trust-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.trust-list {
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.trust-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: clamp(20px, 3vw, 30px);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.trust-list article:last-child {
  border-bottom: 0;
}

.trust-list article:hover {
  background: rgba(255, 255, 255, 0.82);
}

.trust-list span {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.12;
}

.trust-list p {
  margin: 0;
  color: var(--muted);
}

.card-grid,
.feature-grid,
.process-grid,
.pricing-grid {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

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

.card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 93, 42, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 12px;
}

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

.feature-grid article,
.process-grid article,
.price-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(18px, 2.6vw, 26px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-grid article {
  display: grid;
  gap: 13px;
  align-content: start;
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.card-grid.six article:nth-child(3n) {
  border-right: 0;
}

.card-grid.six article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.card-grid article:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.benefit-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(232, 93, 42, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.feature-grid article {
  grid-template-columns: 28px 1fr;
  align-items: center;
}

.feature-grid span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  font-weight: 900;
}

.card-grid p,
.process-grid p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.process-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.price-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-badge {
  width: max-content;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.featured {
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price-card.featured .text-link {
  color: var(--white);
}

.price-card strong {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}

.price-includes {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-includes span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.price-includes ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-includes li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  transform: translateY(-50%);
}

.price-card.featured .price-includes {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card.featured .price-includes span {
  color: var(--white);
}

.price-card.featured .price-includes li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.contact {
  color: var(--white);
  background: var(--dark);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 42, 0.16);
}

.contact-details {
  display: grid;
  gap: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

.contact-details a:hover {
  color: var(--white);
}

.messenger-link {
  width: max-content;
  color: rgba(255, 255, 255, 0.86);
}

.contact-details p {
  margin: 8px 0 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px var(--space-x);
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent),
    #efeee9;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 7px;
}

.site-footer div:last-child {
  justify-items: end;
}

.site-footer span:first-child {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.site-footer a:hover {
  color: var(--ink);
}

.floating-messenger {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 22px 70px rgba(23, 23, 23, 0.24);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.floating-messenger span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--accent);
  border-radius: 999px;
}

.floating-messenger:hover {
  box-shadow: 0 28px 80px rgba(23, 23, 23, 0.3);
  transform: translateY(-2px);
}

.thank-you {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: clamp(42px, 7vw, 78px);
  padding: clamp(28px, 6vw, 72px) var(--space-x);
  background:
    linear-gradient(125deg, rgba(232, 93, 42, 0.08), transparent 38%),
    linear-gradient(160deg, #fff 0%, var(--paper) 72%);
}

.thank-you section {
  max-width: 820px;
}

.thank-you .button {
  margin-top: 32px;
}

@media (max-width: 1080px) {
  .hero,
  .contact-layout,
  .about,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-heading {
    position: static;
  }

  .portfolio-wall {
    max-width: 820px;
  }

  .studio-window {
    transform: none;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-item,
  .showcase-item.is-reversed {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .showcase-item.is-reversed .showcase-preview,
  .showcase-item.is-reversed .showcase-copy {
    order: initial;
  }

  .showcase-copy {
    max-width: 720px;
    min-height: auto;
    margin: -54px clamp(18px, 5vw, 48px) 0;
  }

  .showcase-item.is-reversed .showcase-copy {
    margin: -54px clamp(18px, 5vw, 48px) 0;
  }

  .card-grid.four,
  .card-grid.six,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.six article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .card-grid.six article:nth-child(2n) {
    border-right: 0;
  }

  .card-grid.six article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .card-grid.six article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .studio-content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .studio-preview {
    min-height: 360px;
  }

  .studio-code {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .portfolio-wall,
  .feature-grid,
  .pricing-grid,
  .card-grid.four,
  .card-grid.six,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.six article,
  .card-grid.six article:nth-child(2n),
  .card-grid.six article:nth-child(3n) {
    border-right: 0;
  }

  .card-grid.six article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .card-grid.six article:last-child {
    border-bottom: 0;
  }

  .browser-shot.large img,
  .browser-shot img {
    min-height: 220px;
  }

  .showcase-list {
    gap: 42px;
  }

  .device-frame,
  .showcase-item.is-reversed .device-frame {
    transform: none;
  }

  .showcase-copy h3 {
    font-size: clamp(29px, 10vw, 42px);
  }

  .showcase-copy,
  .showcase-item.is-reversed .showcase-copy {
    margin: -36px 14px 0;
    padding: 22px;
  }

  .trust-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .button {
    width: 100%;
  }

  .studio-preview {
    min-height: 300px;
    padding: 26px;
  }

  .studio-preview h2 {
    font-size: 34px;
  }

  .mini-actions span {
    width: 50%;
  }

  .studio-note {
    justify-self: stretch;
  }

  .device-frame {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .device-toolbar {
    height: 32px;
  }

  .device-frame img {
    height: calc(100% - 32px);
  }

  .feature-grid article {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer div:last-child {
    justify-items: start;
  }

  .floating-messenger {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 10px 13px;
  }

  .floating-messenger strong {
    display: none;
  }
}
