:root {
  --bg: #000;
  --line: rgba(255, 255, 255, .09);
  --text: #d3d3d3;
  --muted: #929292;
  --pink: #fc0bf1;
  --blue: #0720c3;
  --frame-max: 990px;
  --frame-gutter: 16px;
  --grid-point-size: 10px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100vw;
  padding-bottom: 100px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 7px;
  background: var(--pink);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
main:focus { outline: none; }
[id] { scroll-margin-top: 164px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 148px;
  border-bottom: 1px solid rgba(98, 98, 98, .4);
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(18px);
}
.announcement-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: var(--blue);
}
.announcement-bar a {
  width: min(990px, calc(100% - 32px));
  min-height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
}
.announcement-bar strong {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}
.announcement-bar b {
  margin-left: 4px;
  color: #fff;
  font-size: 11px;
  white-space: nowrap;
}
.brand-small, .menu-button, .logo { position: absolute; z-index: 2; }
.brand-small {
  top: 72px;
  left: max(24px, calc(50% - 622px));
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 400;
  min-height: 44px;
}
.brand-small img { width: 13px; height: 29px; }
.logo { top: 59px; left: 50%; width: 61px; transform: translateX(-50%); }
.menu-button {
  top: 83px;
  right: max(24px, calc(50% - 622px));
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: 400 13px Inter, sans-serif;
  cursor: pointer;
  min-width: 76px;
  min-height: 44px;
  justify-content: flex-end;
}
.menu-button img { width: 27px; height: 10px; }
.menu-button[aria-expanded="true"] img { display: none; }
.menu-button[aria-expanded="true"]::after {
  width: 27px;
  color: #fff;
  content: "\00d7";
  font-size: 28px;
  font-weight: 300;
  line-height: 18px;
  text-align: center;
}
.site-header.menu-open {
  border-bottom-color: rgba(255, 255, 255, .14);
}
.site-menu {
  position: absolute;
  top: calc(100% - 10px);
  right: max(24px, calc(50% - 622px));
  z-index: 3;
  width: min(320px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.site-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.menu-shell {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(12, 12, 12, .98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .48);
  backdrop-filter: blur(20px);
}
.menu-primary > a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 8px;
  color: #bdbdbd;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.menu-primary a span {
  font-size: 14px;
  font-weight: 600;
}
.menu-primary a:hover span,
.menu-primary a:focus-visible span { color: #fff; }
.menu-primary > a:hover,
.menu-primary > a:focus-visible {
  padding-left: 18px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 14px;
  border-radius: 9px;
  background: var(--pink);
  color: #000;
  font-size: 13px;
  font-weight: 700;
}
.menu-cta:hover,
.menu-cta:focus-visible { filter: brightness(1.12); }
.menu-install {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  background: transparent;
  color: #fff;
  font: 700 12px Inter, sans-serif;
  cursor: pointer;
}
.menu-install[hidden] { display: none; }
.menu-install:hover,
.menu-install:focus-visible { border-color: var(--pink); }

.hero {
  position: relative;
  height: 858px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-visual {
  position: absolute;
  top: 169px;
  left: 50%;
  width: 1238px;
  height: 696px;
  transform: translateX(-50%);
  background: url("../assets/images/hero/home-hero.png") center / cover no-repeat;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 532px;
  margin: 90px auto 0;
  text-align: center;
  animation: hero-enter .7s cubic-bezier(.22, 1, .36, 1) both;
}
h1, h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  background: linear-gradient(#f3f3f3, #818181);
  background-clip: text;
  color: transparent;
  font-size: 88.5px;
  font-weight: 400;
  line-height: 87.3px;
}
.hero p {
  margin: 9px 0 0;
  color: #d3d3d3;
  font-size: 24px;
}

.framed {
  position: relative;
  width: min(var(--frame-max), calc(100% - (var(--frame-gutter) * 2)));
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.framed::before, .framed::after {
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: var(--line);
  content: "";
  pointer-events: none;
}
.framed::before { top: 0; }
.framed::after { bottom: 0; }
.grid-points {
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 4;
  width: calc(100% + 2px);
  height: 0;
  pointer-events: none;
}
.grid-points::before, .grid-points::after {
  position: absolute;
  top: 0;
  width: var(--grid-point-size);
  height: var(--grid-point-size);
  background: var(--pink);
  content: "";
}
.grid-points::before {
  left: 0;
  transform: translate(-50%, -50%);
}
.grid-points::after {
  right: 0;
  transform: translate(50%, -50%);
}
.grid-points-bottom {
  top: auto;
  bottom: 0;
}

.credibility {
  height: 620px;
  padding: 80px 145px 40px;
  text-align: center;
}
.badge-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 45px;
}
.laurel {
  width: 41px;
  height: 85px;
  background: center / contain no-repeat;
}
.laurel.left { background-image: url("../assets/images/ui/laurel-left.svg"); }
.laurel.right { background-image: url("../assets/images/ui/laurel-right.svg"); }
.badge {
  position: relative;
  width: 62px;
  height: 62px;
  color: var(--pink);
  text-align: center;
}
.badge small, .badge strong, .badge span { position: absolute; left: 0; width: 100%; }
.badge small { top: 0; font-size: 12px; font-weight: 500; }
.badge strong { top: 14px; font-size: 25px; line-height: 1.2; }
.badge span { top: 44px; font-size: 12px; font-weight: 500; }
.credibility p {
  --text-fill: 0%;
  width: 696px;
  max-width: 100%;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, #d3d3d3 0 var(--text-fill), #454545 var(--text-fill) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
}
.partner-row {
  position: relative;
  width: 694px;
  max-width: 100%;
  height: 150px;
  margin: 44px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: logo-marquee 58s linear infinite;
  will-change: transform;
}
.logo-set {
  display: flex;
  flex: none;
  align-items: center;
  gap: 64px;
  height: 100%;
  padding-right: 64px;
}
.logo-set img {
  flex: none;
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1) brightness(.34);
  transition: filter .25s ease;
}
.logo-set img:hover { filter: grayscale(1) brightness(.72); }
.partner-row:hover .logo-track { animation-play-state: paused; }
@keyframes logo-marquee {
  to { transform: translateX(-50%); }
}

.services { height: 1410px; }
.services-heading {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  text-align: center;
}
.services-heading h2 {
  background: linear-gradient(#f3f3f3, #818181);
  background-clip: text;
  color: transparent;
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
}
.service {
  position: absolute;
  width: 465px;
}
.service-link {
  display: block;
  color: inherit;
}
.service-left { top: 190px; left: 59px; }
.service-center { top: 590px; left: 260px; }
.service-right { top: 990px; right: 59px; }
.service img {
  width: 465px;
  height: 279px;
  border-radius: 16px;
  object-fit: cover;
}
.service div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}
.service h3 {
  margin: 0;
  color: #d3d3d3;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.service span, .work-grid b { color: var(--pink); font-size: 12px; }
.service, .work-grid article, .review-card {
  transition: transform .28s ease, border-color .28s ease;
}
.service img, .work-grid img {
  transition: filter .35s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}
.service:hover { transform: translateY(-4px); }
.service:hover img, .work-grid article:hover img { filter: brightness(1.08); }
.work-grid article:hover img { transform: scale(1.025); }

.founder {
  height: auto;
  padding: 64px 59px 56px;
}
.founder-copy { width: 825px; }
.founder h2, .works h2, .testimonial h2, .faq h2, .contact h2 {
  background: linear-gradient(#f3f3f3, #818181);
  background-clip: text;
  color: transparent;
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
}
.founder p {
  margin: 24px 0 0;
  color: #d3d3d3;
  font-size: 19px;
  line-height: 1.5;
}
.founder-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 68px;
}
.tool-row {
  width: 358px;
}
.tool-row img {
  display: block;
  width: 100%;
  height: auto;
}
.founder-card {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #fff 0 18%, #9a523e 19% 42%, #171717 43%);
  object-fit: cover;
}
.avatar.small { width: 52px; height: 52px; }
.founder-card strong, .reviewer strong { display: block; font-size: 14px; }
.founder-card span, .reviewer span {
  display: block;
  color: #999;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.works, .testimonial, .faq, .contact { text-align: center; }
.works { height: 800px; padding: 72px 59px 56px; }
.eyebrow {
  display: inline-block;
  min-height: 0;
  padding: 0;
  margin-bottom: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pink);
  font-size: 10px;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.work-grid {
  display: flex;
  gap: 24px;
  margin-top: 52px;
  padding-bottom: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.work-grid::-webkit-scrollbar { display: none; }
.work-grid:active { cursor: grabbing; }
.work-grid.is-auto-scrolling { scroll-snap-type: none; }
.work-grid.is-dragging { scroll-behavior: auto; scroll-snap-type: none; cursor: grabbing; }
.work-grid article {
  flex: 0 0 340px;
  min-width: 0;
  scroll-snap-align: start;
  text-align: left;
}
.work-link { display: block; -webkit-user-drag: none; }
.work-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}
.work-grid img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.work-grid div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  color: #d3d3d3;
  font-size: 14px;
  transition: color .25s ease;
}
.work-grid article:hover div { color: #fff; }
.work-controls {
  position: absolute;
  right: 59px;
  bottom: 32px;
  left: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-status { color: #666; font-size: 10px; font-weight: 700; }
.work-arrows { display: flex; gap: 8px; }
.work-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid #2c2c2c;
  border-radius: 3px;
  background: transparent;
  color: #d3d3d3;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.work-arrows button:hover:not(:disabled) { border-color: var(--pink); color: #fff; }
.work-arrows button:disabled { color: #3c3c3c; cursor: default; opacity: .7; }
.work-arrows span { font-size: 15px; line-height: 1; }

.project-lightbox {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
  height: min(880px, calc(100vh - 40px));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: #090909;
  color: #fff;
}
.project-lightbox::backdrop { background: rgba(0, 0, 0, .88); backdrop-filter: blur(8px); }
.project-lightbox figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; height: 100%; margin: 0; }
.project-lightbox figure > img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.project-lightbox figcaption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; border-top: 1px solid var(--line); }
.project-lightbox figcaption span { font-size: 13px; font-weight: 600; }
.project-lightbox figcaption a { display: inline-flex; min-height: 44px; align-items: center; color: var(--pink); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.project-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}
.project-lightbox-close:hover { border-color: var(--pink); }

.testimonial { height: 510px; padding: 58px 70px 40px; }
.review-shell {
  width: 760px;
  max-width: 100%;
  margin: 28px auto 0;
}
.review-track {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
}
.review-track::-webkit-scrollbar { display: none; }
.review-track:active { cursor: grabbing; }
.review-card {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: 226px;
  margin: 0;
  padding: 24px 30px 22px;
  overflow: hidden;
  border: 0;
  border-left: 1px solid rgba(252, 11, 241, .72);
  border-radius: 0;
  background: transparent;
  scroll-snap-align: start;
  text-align: left;
}
.review-card::after {
  position: absolute;
  top: 10px;
  right: 22px;
  color: #141414;
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover { border-color: var(--pink); }
.review-rating {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-rating > span {
  color: #5f5f5f;
  font-size: 9px;
  font-weight: 700;
}
.stars { width: 92px; height: 17px; margin: 0; }
.review-card p {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin: 16px 0 20px;
  color: #c6c6c6;
  font-size: 16px;
  line-height: 1.5;
}
.review-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.reviewer { display: flex; align-items: center; gap: 18px; text-align: left; }
.reviewer-mark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #171717;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
}
.reviewer .avatar.small { width: 44px; height: 44px; }
.reviewer strong { display: block; color: #cfcfcf; font-size: 14px; font-weight: 500; }
.reviewer span { display: block; margin-top: 3px; color: #777; font-size: 10px; font-weight: 600; text-transform: uppercase; }
.review-number { color: var(--pink); font-size: 11px; font-weight: 700; }
.review-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.review-status { color: #777; font-size: 10px; font-weight: 700; }
.review-arrows { display: flex; gap: 8px; }
.review-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid #2c2c2c;
  border-radius: 3px;
  background: transparent;
  color: #d3d3d3;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.review-arrows button:hover:not(:disabled) { border-color: var(--pink); background: #111; color: #fff; }
.review-arrows button:disabled { color: #3c3c3c; cursor: default; opacity: .7; }
.review-arrows span { font-size: 15px; line-height: 1; }

.faq { height: 680px; padding: 64px 58px 48px; }
.faq-list { width: 873px; max-width: 100%; margin: 28px auto 0; text-align: left; }
.faq-item {
  width: 100%;
  min-height: 62px;
  margin-top: 28px;
  padding: 13px 25px;
  border: 1px solid #4c4c4c;
  border-radius: 10px;
  background: #111;
  color: #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 400 20px Inter, sans-serif;
  cursor: pointer;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}
.faq-item:hover { border-color: #6a6a6a; background: #161616; transform: translateY(-2px); }
.faq-item:active { transform: translateY(0); }
.faq-item:first-child { margin-top: 0; }
.faq-item b { color: var(--pink); font-size: 11px; transition: transform .22s ease; }
.faq-item:hover b { transform: scale(1.25); }
.faq-item.active b { font-size: 0; }
.faq-item.active b::after { content: "-"; font-size: 11px; }
.faq-list p {
  display: block;
  width: 809px;
  max-width: calc(100% - 50px);
  margin: 24px auto 0;
  color: #d3d3d3;
  font-size: 18px;
  line-height: 1.45;
}
.faq-item:not(.active) + p { display: none; }

.contact {
  height: auto;
  padding: 45px 59px 80px;
}
.contact > :where(*:not(.grid-points)) { position: relative; z-index: 2; }
.contact p { margin: 24px 0 0; color: #fff; font-size: 28px; }
.contact > strong { display: block; margin: 0 0 24px; color: var(--pink); font-size: 28px; }
form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 571px;
  margin: 0 auto;
}
.form-field > span b { color: var(--pink); }
.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}
.form-field > span small {
  display: inline;
  margin: 0;
  color: #777;
  font-size: 10px;
  font-weight: 500;
}
.form-field-full { grid-column: 1 / -1; }
input, textarea {
  width: 100%;
  height: 74px;
  padding: 0 24px;
  border: 1px solid #a7a2a2;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font: 500 18px Inter, sans-serif;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}
input:focus, textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(252, 11, 241, .1);
}
form button { grid-column: 1 / -1; }
.form-honey { display: none !important; }
textarea { height: 177px; padding-top: 30px; resize: none; }
form button {
  height: 64px;
  border: 0;
  border-radius: 8px;
  background: var(--pink);
  color: #fff;
  font: 700 24px Inter, sans-serif;
  cursor: pointer;
  transition: filter .22s ease, transform .22s ease;
}
form button:hover { filter: brightness(1.1); transform: translateY(-2px); }
form button:active { transform: translateY(0); }
form button:disabled { cursor: wait; filter: grayscale(.25); opacity: .7; transform: none; }
.contact .form-status { min-height: 20px; margin: 14px 0 0; color: #8b8b8b; font-size: 12px; }
.contact .form-status.is-sending { color: #c8c8c8; }
.contact .form-status.is-error { color: #ff7d7d; }
.form-success {
  width: min(571px, 100%);
  margin: 0 auto;
  padding: 48px 32px;
  border: 1px solid rgba(252, 11, 241, .45);
  border-radius: 12px;
  background: rgba(12, 12, 12, .92);
  text-align: center;
}
.form-success[hidden] { display: none; }
.form-success-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #000;
  font-size: 28px;
  font-weight: 800;
}
.form-success h3 { margin: 0; color: #fff; font: 400 42px "Bebas Neue", Impact, sans-serif; text-transform: uppercase; }
.contact .form-success p { margin: 10px auto 24px; color: #aaa; font-size: 15px; line-height: 1.6; }
.form-success button { padding: 12px 18px; border: 1px solid #444; border-radius: 7px; background: transparent; color: #fff; font: 600 12px Inter, sans-serif; cursor: pointer; }
.form-success button:hover { border-color: var(--pink); }
.contact > small { display: block; margin-top: 18px; color: #5d5d5d; font-size: 16px; }
.contact > small a { display: inline-block; min-height: 44px; padding: 11px 2px; color: var(--pink); text-decoration: underline; }
.socials { display: flex; justify-content: center; gap: 16px; margin-top: 74px; }
.socials a { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 75px; }
.socials i {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 15px;
  font-style: normal;
  transition: border-color .22s ease, transform .22s ease;
}
.socials a:hover i { border-color: var(--pink); transform: translateY(-3px); }
.socials img { width: 24px; height: 24px; }
.socials span { color: #fff; font-size: 10px; }
.forest-showcase {
  width: min(1440px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.forest-showcase img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.28);
  transform-origin: center 72%;
}
.contact > .design-credit {
  position: relative;
  bottom: auto;
  left: auto;
  z-index: 2;
  width: 100%;
  margin: 24px 0 0;
  color: #555;
  font-size: 14px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100px;
  margin: 0;
  border-top: 0;
  background: linear-gradient(to bottom, transparent 0%, #000 20%, #000 100%);
  text-align: center;
  transition: transform .25s ease;
}
body.forest-in-view footer:not(:focus-within) { transform: translateY(100%); }
.footer-actions {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer-actions a {
  width: 220px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #222;
  border-radius: 6px;
  color: #939393;
  font-size: 16px;
  transition: border-color .22s ease, color .22s ease, filter .22s ease, transform .22s ease;
}
.footer-actions .primary { border-color: var(--blue); background: var(--blue); color: #fff; }
.footer-actions a:hover { border-color: #555; color: #fff; transform: translateY(-2px); }
.footer-actions .primary:hover { border-color: var(--blue); filter: brightness(1.16); }
.footer-actions a:active { transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease var(--reveal-delay, 0ms), transform .55s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.service.reveal.is-visible:hover { transform: translateY(-4px); }
.faq-item.reveal.is-visible:hover { transform: translateY(-2px); }
.faq-item.reveal.is-visible:active { transform: translateY(0); }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mobile-header-enter {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mobile-copy-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mobile-visual-enter {
  from { opacity: 0; transform: translateX(-50%) scale(1.08); }
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}

@media (min-width: 761px) and (max-width: 960px) {
  body { padding-bottom: 100px; }
  .framed { height: auto; min-height: 0; }
  .credibility { padding: 72px 70px 56px; }
  .services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 28px;
    padding: 72px 48px;
  }
  .services-heading {
    position: static;
    grid-column: 1 / -1;
    width: auto;
    text-align: center;
    transform: none;
  }
  .service {
    position: static;
    width: 100%;
  }
  .service-right {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
    justify-self: center;
  }
  .service img {
    width: 100%;
    height: auto;
    aspect-ratio: 465 / 279;
  }
  .service div { padding-top: 20px; }
  .service h3 { font-size: 17px; }
  .founder { padding: 64px 48px 60px; }
  .founder-copy { width: 100%; }
  .founder p { font-size: 17px; }
  .founder-meta { margin-top: 60px; }
  .works { padding: 72px 48px 64px; }
  .work-controls { right: 48px; left: 48px; }
  .work-grid {
    display: flex;
    gap: 24px;
    margin-top: 52px;
  }
  .work-grid article { flex-basis: 320px; }
  .work-grid article:last-child {
    width: auto;
  }
  .work-media {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .testimonial { padding: 72px 48px 64px; }
  .review-track { width: 100%; }
  .faq { padding: 64px 48px; }
  .contact { height: auto; padding: 72px 48px 80px; }
  form { width: min(571px, 100%); }
  footer { height: 100px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 64px; }
  .site-header {
    height: 124px;
    animation: mobile-header-enter .55s cubic-bezier(.22, 1, .36, 1) both;
  }
  [id] { scroll-margin-top: 140px; }
  .announcement-bar a { width: calc(100% - 24px); gap: 7px; }
  .announcement-copy { display: none; }
  .announcement-bar strong,
  .announcement-bar b { font-size: 10px; }
  .brand-small { top: 60px; left: 18px; font-size: 10px; }
  .brand-small img { width: 10px; height: 22px; }
  .logo { top: 53px; width: 52px; }
  .menu-button { top: 60px; right: 14px; font-size: 10px; gap: 8px; }
  .site-menu { top: calc(100% - 6px); right: 12px; left: 12px; width: auto; }
  .menu-shell { padding: 10px; }
  .menu-primary > a { min-height: 44px; }
  .hero { height: 560px; }
  .hero-visual {
    top: 155px;
    width: 780px;
    height: 439px;
    animation: mobile-visual-enter .95s cubic-bezier(.22, 1, .36, 1) .08s both;
  }
  .hero-copy {
    width: calc(100% - 30px);
    margin-top: 66px;
    animation: mobile-copy-enter .72s cubic-bezier(.22, 1, .36, 1) .16s both;
  }
  .hero h1 { font-size: clamp(45px, 14vw, 58px); line-height: .93; }
  .hero p { margin-top: 14px; font-size: 15px; }
  .framed {
    --frame-gutter: 12px;
    --grid-point-size: 8px;
    height: auto;
    min-height: 0;
  }
  .credibility { padding: 68px 20px 60px; }
  .credibility p { font-size: 22px; }
  .partner-row { width: 100%; height: 110px; margin-top: 42px; }
  .logo-track { animation-duration: 46s; }
  .logo-set { gap: 38px; padding-right: 38px; }
  .logo-set img { max-width: 105px; max-height: 45px; }
  .services { padding: 64px 20px 56px; }
  .services-heading { position: static; width: auto; margin-bottom: 46px; text-align: center; transform: none; }
  .service { position: static; width: 100%; margin: 0 auto 72px; }
  .service:last-of-type { margin-bottom: 0; }
  .service img { width: 100%; height: auto; aspect-ratio: 465 / 279; }
  .service div { padding-top: 18px; }
  .service h3 { font-size: 15px; }
  .founder { padding: 60px 20px; }
  .founder-copy { width: 100%; }
  .services-heading h2, .founder h2, .works h2, .testimonial h2, .faq h2, .contact h2 { font-size: 34px; }
  .founder p { font-size: 15px; }
  .founder-meta { align-items: flex-start; flex-direction: column; gap: 26px; margin-top: 44px; }
  .tool-row { width: min(358px, 100%); }
  .works { padding: 68px 20px; }
  .work-controls { right: 20px; bottom: 24px; left: 20px; }
  .project-lightbox { width: calc(100vw - 20px); height: calc(100vh - 20px); }
  .project-lightbox figcaption { align-items: flex-start; flex-direction: column; gap: 8px; padding: 14px 16px; }
  .work-grid { display: flex; gap: 18px; max-width: none; margin: 42px 0 0; }
  .work-grid article { flex-basis: 82%; }
  .work-media { height: auto; aspect-ratio: 3 / 4; }
  .testimonial { height: auto; min-height: 520px; padding: 58px 20px 64px; }
  .review-track { width: 100%; margin-top: 36px; }
  .review-shell { margin-top: 28px; }
  .review-track { margin-top: 0; }
  .review-card { flex-basis: 100%; width: 100%; min-height: 260px; padding: 22px 16px 20px; }
  .review-card::after { top: 12px; right: 14px; font-size: 64px; }
  .review-card p { margin: 16px 0 22px; font-size: 14px; line-height: 1.55; }
  .review-footer { align-items: center; }
  .reviewer { gap: 12px; }
  .reviewer strong { font-size: 14px; }
  .reviewer span { font-size: 9px; }
  .faq { padding: 68px 20px; }
  .faq-item { min-height: 58px; margin-top: 20px; padding: 12px 14px; font-size: 14px; }
  .faq-list p { max-width: calc(100% - 24px); font-size: 14px; }
  .contact { height: auto; padding: 68px 20px 72px; }
  .contact p, .contact > strong { font-size: 18px; }
  form { grid-template-columns: 1fr; width: 100%; gap: 14px; }
  input, textarea { height: 60px; font-size: 14px; }
  textarea { height: 140px; }
  form button { height: 58px; font-size: 18px; }
  .contact > small { font-size: 11px; }
  .socials { gap: 8px; margin-top: 56px; }
  .socials a { width: 52px; }
  .socials i { width: 52px; height: 52px; border-radius: 10px; }
  .socials img { width: 19px; height: 19px; }
  .contact > .design-credit { margin-top: 20px; font-size: 12px; }
  footer { height: 64px; }
  .footer-actions { gap: 8px; padding: 0 12px; }
  .footer-actions a { width: min(150px, calc(50vw - 16px)); height: 44px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .site-header, .hero-copy { opacity: 1; transform: none; }
  .hero-visual { opacity: 1; transform: translateX(-50%); }
  .credibility p { --text-fill: 100% !important; }
  .partner-row {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }
  .partner-row::-webkit-scrollbar { display: none; }
  .logo-track { animation: none; }
  .logo-set[aria-hidden="true"] { display: none; }
}
