@font-face {
  font-family: ArchivoPF;
  src: url("/assets/fonts/archivo-pf.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #f2f0e9;
  --ink: #121212;
  --muted: #6b6a64;
  --line: rgba(18, 18, 18, 0.18);
  --red: #df2838;
  --lime: #d7ff45;
  --white: #fff;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ArchivoPF, Arial, sans-serif;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3vw;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.site-header nav a {
  position: relative;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: 0.25s;
}
.site-header nav a:hover:after {
  right: 0;
}
.header-contact {
  justify-self: end;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 16px;
  display: flex;
  gap: 28px;
  transition: 0.2s;
}
.header-contact:hover {
  background: var(--ink);
  color: #fff;
}
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3vw;
  padding: 4vw 3vw 3vw;
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1vw 0;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
.hero h1 {
  font-size: clamp(64px, 8.3vw, 150px);
  line-height: 0.79;
  letter-spacing: -0.075em;
  margin: 0.1em 0;
  font-weight: 850;
}
.rotating-word {
  display: inline-block;
  color: var(--red);
  min-width: 4.2em;
}
.hero-intro {
  max-width: 530px;
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.35;
  margin: 0;
}
.primary-link {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  min-width: 290px;
  border-bottom: 2px solid;
  padding: 12px 0;
  font-weight: 700;
}
.primary-link b {
  font-size: 23px;
}
.hero-card {
  position: relative;
  min-height: 560px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-meta,
.card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero-pf {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  font-size: clamp(190px, 25vw, 470px);
  font-weight: 850;
  letter-spacing: -0.15em;
  line-height: 0.7;
}
.hero-orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  left: 14%;
  top: 15%;
}
.hero-orbit:before,
.hero-orbit:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
}
.hero-orbit:before {
  width: 18px;
  height: 18px;
  top: 9%;
  right: 15%;
}
.hero-orbit:after {
  width: 9px;
  height: 9px;
  bottom: 8%;
  left: 20%;
  background: #fff;
}
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 15px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 23px;
  align-items: center;
  animation: ticker 38s linear infinite;
  font-size: 14px;
  font-weight: 800;
}
.ticker-track i {
  font-size: 8px;
  color: var(--lime);
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.catalog-section {
  padding: 130px 3vw;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head h2 {
  font-size: clamp(48px, 6.5vw, 110px);
  line-height: 0.86;
  letter-spacing: -0.06em;
  margin: 22px 0 0;
}
.section-head > p {
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
}
.catalog-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 320px;
  border-top: 1px solid var(--ink);
  position: relative;
}
.service-tabs {
  border-right: 1px solid var(--line);
}
.service-tabs button {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 22px 20px 24px 0;
  cursor: pointer;
  display: grid;
  grid-template-columns: 34px 1fr;
}
.service-tabs button span {
  grid-row: 1/3;
  font-size: 11px;
}
.service-tabs button strong {
  font-size: 18px;
}
.service-tabs button small {
  margin-top: 6px;
  color: var(--muted);
}
.service-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  padding-left: 18px;
}
.service-tabs button[aria-selected="true"] small {
  color: #bbb;
}
.catalog-detail {
  padding: 42px 36px 70px;
}
.detail-heading {
  max-width: 700px;
  margin-bottom: 35px;
}
.detail-heading h3 {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 12px 0;
}
.detail-heading > p:last-child {
  color: var(--muted);
  line-height: 1.45;
}
.type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.type-card {
  border: 1px solid var(--line);
  background: #f8f7f2;
  min-height: 210px;
  padding: 17px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.2s;
}
.type-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.type-card[aria-pressed="true"] {
  background: var(--lime);
  border-color: var(--ink);
}
.type-visual {
  height: 95px;
  display: grid;
  place-items: center;
  font-size: 44px;
  font-weight: 850;
  letter-spacing: -0.06em;
}
.type-card:nth-child(2) .type-visual {
  font-family: serif;
  font-weight: 400;
  font-style: italic;
}
.type-card:nth-child(3) .type-visual span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
}
.type-card:nth-child(4) .type-visual span {
  border: 2px solid;
  padding: 16px 22px;
}
.type-copy {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: end;
}
.type-copy strong {
  font-size: 17px;
}
.type-copy small {
  max-width: 135px;
  color: var(--muted);
  text-align: right;
  line-height: 1.2;
}
.choice-block {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 45px;
}
.choice-heading > span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
}
.choice-heading h4 {
  font-size: 19px;
  margin: 7px 0;
}
.choice-heading p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.choice-list button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  cursor: pointer;
}
.choice-list button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.brief-card {
  position: sticky;
  top: 20px;
  align-self: start;
  margin: 20px 0 20px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.brief-label {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #aaa;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}
.brief-main {
  padding: 22px 0;
}
.brief-main > span {
  color: var(--lime);
  font-size: 11px;
}
.brief-main h3 {
  font-size: 31px;
  letter-spacing: -0.04em;
  margin: 8px 0;
}
.brief-main p {
  color: #aaa;
}
.brief-card dl {
  margin: 0;
}
.brief-card dl div {
  border-top: 1px solid #333;
  padding: 13px 0;
}
.brief-card dt {
  font-size: 10px;
  text-transform: uppercase;
  color: #888;
}
.brief-card dd {
  font-size: 13px;
  line-height: 1.35;
  margin: 5px 0 0;
}
.whatsapp-button {
  margin-top: auto;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 7px;
  font-weight: 800;
}
.whatsapp-button.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}
.reset-button {
  background: transparent;
  color: #888;
  border: 0;
  padding: 14px 0 0;
  cursor: pointer;
  font-size: 12px;
}
.guide-section {
  padding: 100px 3vw;
  background: #ddd9d0;
}
.guide-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.guide-intro h2 {
  font-size: clamp(48px, 6vw, 95px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0;
}
.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 80px 0 40px;
  border-top: 1px solid;
}
.guide-cards article {
  padding: 25px 35px 25px 0;
  border-right: 1px solid var(--line);
}
.guide-cards article + article {
  padding-left: 35px;
}
.guide-cards span {
  font-size: 11px;
}
.guide-cards h3 {
  font-size: 28px;
  margin: 45px 0 10px;
}
.guide-cards p {
  line-height: 1.4;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  gap: 18px;
  border-bottom: 1px solid;
  padding-bottom: 6px;
  font-weight: 700;
}
.process-section {
  padding: 120px 3vw;
  background: var(--ink);
  color: #fff;
}
.section-head.inverse {
  border-bottom: 1px solid #444;
  padding-bottom: 50px;
}
.section-head.inverse > p {
  color: #aaa;
}
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process-list li {
  min-height: 270px;
  padding: 22px 26px 20px 0;
  border-right: 1px solid #444;
}
.process-list li + li {
  padding-left: 26px;
}
.process-list span {
  font-size: 11px;
  color: var(--lime);
  text-transform: uppercase;
}
.process-list h3 {
  font-size: 32px;
  margin-top: 65px;
}
.process-list p {
  color: #aaa;
  line-height: 1.4;
}
.about-section {
  padding: 120px 3vw;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 8vw;
}
.legacy-card {
  --card-x: 0px;
  --card-y: 0px;
  position: relative;
  min-height: 650px;
  aspect-ratio: 715 / 773;
  background: var(--red);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.legacy-card-grid {
  position: absolute;
  inset: 26px 21px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background-image:
    linear-gradient(
      to right,
      transparent calc(100% - 1px),
      rgba(255, 255, 255, 0.12) 1px
    ),
    linear-gradient(
      to bottom,
      transparent calc(100% - 1px),
      rgba(255, 255, 255, 0.08) 1px
    );
  background-size:
    13.35% 100%,
    100% 12.5%;
}
.legacy-card-pf {
  position: absolute;
  top: 11px;
  left: 20px;
  color: #101010;
  font-size: clamp(180px, 20vw, 330px);
  font-weight: 900;
  letter-spacing: -0.16em;
  line-height: 0.82;
}
.legacy-card-orbit {
  position: absolute;
  top: 8%;
  right: -14%;
  width: 38%;
  aspect-ratio: 1;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transform: translate3d(
    calc(var(--card-x) * -0.65),
    calc(var(--card-y) * -0.65),
    0
  );
  transition: transform 0.18s ease-out;
  will-change: transform;
}
.legacy-card-logo {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 44%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.12));
  transform: translate3d(
    calc(-50% + var(--card-x)),
    calc(-50% + var(--card-y)),
    0
  );
  transition: transform 0.14s ease-out;
  will-change: transform;
}
.legacy-card-foot {
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: 23px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-top: 2px solid #fff;
  padding-top: 16px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.about-copy {
  align-self: center;
  max-width: 600px;
}
.about-copy h2 {
  font-size: clamp(48px, 5.8vw, 90px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 25px 0 40px;
}
.about-copy > p:not(.kicker) {
  font-size: 18px;
  line-height: 1.5;
}
.primary-link.dark {
  margin-top: 45px;
}
.footer-cta {
  padding: 90px 3vw;
  background: #fff;
}
.footer-cta p {
  margin: 0 0 20px;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-cta a {
  font-size: clamp(48px, 8.5vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 850;
  display: flex;
  justify-content: space-between;
}
.footer-meta {
  padding: 20px 3vw;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-card {
    min-height: 500px;
  }
  .catalog-shell {
    grid-template-columns: 240px 1fr;
  }
  .brief-card {
    grid-column: 1/-1;
    position: static;
    margin: 20px 0 0;
    min-height: 400px;
  }
  .section-head {
    grid-template-columns: 1fr 330px;
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .legacy-card {
    min-height: 500px;
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
  }
  .brand-logo {
    width: 32px;
    height: 32px;
  }
  .site-header nav {
    display: none;
  }
  .header-contact {
    padding: 9px 12px;
    gap: 10px;
  }
  .hero {
    padding: 30px 18px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 16vw;
    margin: 55px 0;
  }
  .hero-intro {
    font-size: 17px;
  }
  .primary-link {
    margin-top: 45px;
    min-width: 100%;
  }
  .hero-card {
    min-height: 420px;
    margin-top: 25px;
  }
  .ticker {
    margin-top: 18px;
  }
  .catalog-section,
  .guide-section,
  .process-section,
  .about-section {
    padding: 80px 18px;
  }
  .section-head,
  .guide-intro {
    grid-template-columns: 1fr;
  }
  .section-head > p {
    font-size: 17px;
  }
  .catalog-shell {
    display: block;
  }
  .service-tabs {
    border-right: 0;
    display: flex;
    overflow: auto;
    margin-right: -18px;
  }
  .service-tabs button {
    min-width: 210px;
    padding: 16px;
  }
  .catalog-detail {
    padding: 45px 0;
  }
  .detail-heading h3 {
    font-size: 36px;
  }
  .type-grid {
    grid-template-columns: 1fr;
  }
  .choice-block {
    grid-template-columns: 1fr;
  }
  .brief-card {
    margin: 0;
  }
  .guide-cards {
    grid-template-columns: 1fr;
  }
  .guide-cards article,
  .guide-cards article + article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .guide-cards h3 {
    margin-top: 25px;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .process-list li,
  .process-list li + li {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid #444;
    min-height: auto;
  }
  .process-list h3 {
    margin-top: 35px;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .legacy-card {
    min-height: 0;
    width: 100%;
  }
  .legacy-card-pf {
    font-size: 45vw;
  }
  .legacy-card-foot {
    font-size: 9px;
  }
  .footer-cta {
    padding: 70px 18px;
  }
  .footer-cta a {
    font-size: 15vw;
  }
  .footer-meta {
    padding: 18px;
    flex-direction: column;
    gap: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track {
    animation: none;
  }
  .type-card,
  .legacy-card-logo,
  .legacy-card-orbit {
    transition: none;
  }
}
