:root {
  --ink: #090a0b;
  --ink-soft: #121416;
  --paper: #f3f0ea;
  --paper-2: #e8e4dc;
  --white: #fffdfa;
  --text: #17191b;
  --muted: #676b70;
  --muted-dark: #a9adb3;
  --orange: #ff641e;
  --orange-dark: #db4d0d;
  --line: rgba(18, 20, 22, 0.16);
  --line-dark: rgba(255, 255, 255, 0.15);
  --max: 1180px;
  --pad: clamp(20px, 4vw, 52px);
  --section: clamp(84px, 10vw, 132px);
  --radius: 22px;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

::selection {
  background: var(--orange);
  color: var(--ink);
}

.shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--orange-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
}

h1 span {
  color: var(--orange);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 5.2vw, 5.15rem);
}

h3 {
  font-size: clamp(1.55rem, 2.25vw, 2.2rem);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: #130703;
}

.button-primary:hover {
  background: #ff7a3c;
}

.button-outline {
  border-color: var(--line-dark);
  color: var(--white);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(9, 10, 11, 0.88);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-dark);
  background: rgba(9, 10, 11, 0.96);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: block;
}

.brand img {
  width: 122px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 38px);
}

.desktop-nav a,
.footer-links a {
  color: #c9cbd0;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--white);
}

.header-cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 10px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.header-cta:hover {
  border-color: var(--orange);
  background: rgba(255, 100, 30, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 78% 45%, rgba(255, 100, 30, 0.12), transparent 30%),
    var(--ink);
}

.hero-layout {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
  padding-block: clamp(64px, 8vw, 100px) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 54px;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #bdc0c5;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}

.text-action {
  color: #dedfe2;
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration-color: rgba(255, 255, 255, 0.38);
}

.hero-note {
  margin-bottom: 0;
  color: #7e8288;
  font-size: 0.76rem;
}

.hero-portrait {
  position: relative;
  align-self: end;
  min-width: 0;
  margin: 0;
}

.portrait-glow {
  display: none;
}

.hero-portrait picture {
  position: relative;
  z-index: 1;
}

.hero-portrait img {
  width: min(100%, 560px);
  margin-inline: auto;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.52));
}

.hero-portrait figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: -1px;
  padding: 18px 2px 24px;
  border-top: 1px solid var(--line-dark);
  color: #777b81;
  font-size: 0.72rem;
}

.hero-portrait figcaption strong {
  color: var(--white);
  font-size: 0.78rem;
}

.profile-check {
  background: var(--paper);
  color: var(--text);
}

.profile-check-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
}

.section-copy p:not(.eyebrow),
.services-head > p,
.about-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.plain-promise {
  margin-bottom: 0;
  color: var(--text) !important;
  font-weight: 760;
}

.check-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 30px 70px rgba(21, 17, 12, 0.16);
  color: var(--white);
}

.check-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line-dark);
}

.check-card-head span {
  font-weight: 800;
}

.check-card-head small {
  color: #868a90;
}

.check-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-card li {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line-dark);
}

.check-card li span {
  font-size: 0.9rem;
  font-weight: 760;
}

.check-card li small {
  color: #8d9197;
  line-height: 1.45;
}

.check-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 26px;
  background: var(--orange);
  color: #140701;
  font-size: 0.86rem;
  font-weight: 840;
  text-decoration: none;
}

.services {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.services-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.services-head > p {
  margin-bottom: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-card.featured {
  background: var(--paper);
}

.service-label {
  margin-bottom: 64px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 300px;
  margin-bottom: 22px;
}

.service-card > p:not(.service-label) {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.service-price strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.045em;
}

.service-price span {
  color: var(--muted);
  font-size: 0.73rem;
}

.websites {
  border-top: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.website-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(58px, 8vw, 110px);
}

.website-copy h2 {
  max-width: 560px;
  font-size: clamp(2.75rem, 4.45vw, 4.6rem);
}

.website-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 34px;
  color: #aeb1b6;
}

.website-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 28px;
  padding-block: 22px;
  border-block: 1px solid var(--line-dark);
}

.website-price span {
  color: #85898f;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.website-price strong {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: -0.045em;
}

.website-list {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.website-list li {
  position: relative;
  padding: 9px 0 9px 24px;
  color: #c9cbd0;
  font-size: 0.9rem;
}

.website-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.project-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #080909;
  color: var(--white);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease;
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-4px);
}

.project-image {
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: #020303;
}

.project-image img {
  width: 100%;
}

.project-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 26px 28px 28px;
}

.project-caption small {
  display: block;
  margin-bottom: 9px;
  color: #a6e41e;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-caption h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.project-caption p {
  max-width: 500px;
  margin-bottom: 0;
  color: #8d9197;
  font-size: 0.83rem;
}

.project-caption > span {
  color: #a6e41e;
  font-size: 1.35rem;
}

.about {
  background: var(--paper);
  color: var(--text);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(64px, 10vw, 150px);
}

.about-heading h2 {
  max-width: 540px;
  margin-bottom: 0;
}

.about-copy > p:first-child {
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.5;
}

.about-facts {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.about-facts > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.about-facts strong {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.about-facts span {
  color: var(--muted);
  font-size: 0.87rem;
}

.start {
  background: var(--orange);
  color: #140701;
}

.start .eyebrow {
  color: #5d1a00;
}

.start-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.start-copy h2 {
  max-width: 720px;
}

.start-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(20, 7, 1, 0.72);
  font-size: 1.08rem;
}

.start-copy > small {
  display: block;
  margin-top: 16px;
  color: rgba(20, 7, 1, 0.68);
  font-size: 0.72rem;
}

.start-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(20, 7, 1, 0.22);
  list-style: none;
}

.start-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding-block: 23px;
  border-bottom: 1px solid rgba(20, 7, 1, 0.22);
}

.start-steps li > span {
  color: rgba(20, 7, 1, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
}

.start-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.start-steps p {
  margin-bottom: 0;
  color: rgba(20, 7, 1, 0.65);
  font-size: 0.8rem;
}

.faq {
  background: var(--white);
  color: var(--text);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(500px, 1.38fr);
  gap: clamp(60px, 10vw, 140px);
}

.faq-heading h2 {
  margin-bottom: 0;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 26px;
  align-items: center;
  gap: 24px;
  padding-block: 23px;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 48px 24px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding-block: 34px;
}

.footer-brand img {
  width: 122px;
}

.footer-inner > p {
  max-width: 410px;
  margin-bottom: 0;
  color: #7f8389;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-inner > small {
  grid-column: 2 / -1;
  color: #565a60;
  font-size: 0.67rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay {
  transition-delay: 100ms;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  }

  .profile-check-layout,
  .website-layout,
  .about-layout,
  .start-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .website-layout {
    align-items: start;
  }

  .website-copy {
    max-width: 720px;
  }

  .project-card {
    width: 100%;
    max-width: 850px;
  }

  .about-copy {
    max-width: 760px;
  }

  .start-steps,
  .faq-list {
    max-width: 780px;
  }
}

@media (max-width: 820px) {
  :root {
    --section: 86px;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 74px;
  }

  .hero-copy {
    max-width: 690px;
    padding-bottom: 24px;
  }

  .hero-portrait {
    width: min(100%, 480px);
    margin-inline: auto;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-label {
    margin-bottom: 40px;
  }

  .services-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-inner > small {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 16px;
    --section: 76px;
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 76px;
    gap: 14px;
  }

  .brand img {
    width: 92px;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.67rem;
  }

  .header-cta span {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 15.5vw, 4.8rem);
    letter-spacing: -0.065em;
  }

  h2 {
    font-size: clamp(2.6rem, 12vw, 3.75rem);
  }

  .hero {
    background:
      radial-gradient(circle at 50% 68%, rgba(255, 100, 30, 0.13), transparent 25%),
      var(--ink);
  }

  .hero-layout {
    padding-top: 58px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .text-action {
    align-self: flex-start;
  }

  .hero-portrait {
    width: min(100%, 360px);
  }

  .hero-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 20px;
  }

  .profile-check-layout {
    gap: 46px;
  }

  .check-card-head,
  .check-card li,
  .check-card > a {
    padding-inline: 20px;
  }

  .check-card li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .service-card {
    padding: 30px 24px;
  }

  .project-caption {
    padding: 22px 20px 24px;
  }

  .about-facts > div {
    grid-template-columns: 76px 1fr;
    gap: 18px;
  }

  .start-layout {
    gap: 52px;
  }

  .button {
    width: 100%;
  }

  .faq-list summary {
    font-size: 0.9rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
