@font-face {
  font-family: "Degular Display";
  src: url("/public/assets/degular-display-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Degular Display";
  src: url("/public/assets/degular-display-medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("/public/assets/neue-montreal-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("/public/assets/neue-montreal-light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("/public/assets/neue-montreal-medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #000;
  --orange: #fd4804;
  --footer: #f6f6f3;
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--footer);
  font-family: "Neue Montreal", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

@keyframes helio-rise-in {
  from {
    opacity: 0;
    translate: 0 var(--enter-y, 6px);
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes helio-icon-pop {
  from {
    opacity: 0.55;
    scale: 0.92;
    translate: 0 2px;
  }

  to {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  height: 837px;
  overflow: hidden;
  background: #fff;
}

.hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  inset: 0;
}

.hero-art::before {
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff 17%,
    rgba(255, 255, 255, 0.55) 30%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0) 85.577%,
    #fafaf8 100%
  );
}

.hero-art::after {
  inset: 646px 0 auto;
  height: 191px;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}

.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  height: 184px;
  padding-top: 36px;
}

.buddy {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
}

.buddy__glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 96.25%;
  height: 93.9%;
  border-radius: 28%;
  background: var(--orange);
  filter: blur(13.673px);
  transform: translate(-50%, -41%);
}

.buddy img {
  position: absolute;
  z-index: 1;
  display: block;
}

.buddy--hero {
  --enter-y: 6px;

  flex: 0 0 auto;
  width: 131px;
  height: 113px;
  aspect-ratio: 131 / 113;
  border-radius: 40.3px 40.3px 32.1px 32.1px;
  animation: helio-rise-in 540ms var(--ease-out-quint) 40ms both;
}

.buddy--hero img {
  left: 36.35px;
  top: 21.94px;
  width: 68.22px;
  height: 42.88px;
  aspect-ratio: 68.22 / 42.88;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: min(1152px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.hero-copy h1 {
  --enter-y: 8px;

  width: 1012px;
  max-width: 100%;
  margin: 0;
  font-family: "Degular Display", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  animation: helio-rise-in 600ms var(--ease-out-quint) 90ms both;
}

.hero-copy p {
  --enter-y: 6px;

  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: -0.52px;
  animation: helio-rise-in 560ms var(--ease-out-quint) 150ms both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: max-content;
  max-width: 100%;
}

.channel-pill {
  --enter-y: 5px;

  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 54px;
  margin-bottom: 24px;
  padding: 8px 16px 8px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: helio-rise-in 500ms var(--ease-out-quint) 210ms both;
}

.channel-icons {
  display: flex;
  align-items: center;
  height: 38px;
  padding-left: 2px;
}

.channel-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: -10px;
  overflow: hidden;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.channel-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.channel-icon--messages {
  z-index: 1;
  transform: rotate(-9deg);
  animation: helio-icon-pop 280ms var(--ease-out-quint) 340ms both;
}

.channel-icon--phone {
  z-index: 2;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(7deg);
}

.channel-icon--whatsapp {
  z-index: 3;
  transform: rotate(-5deg);
  animation: helio-icon-pop 280ms var(--ease-out-quint) 380ms both;
}

.channel-icon--whatsapp img {
  position: absolute;
  left: -59.13%;
  top: -41.55%;
  width: 218%;
  height: 183%;
  max-width: none;
}

.channel-divider {
  width: 1px;
  height: 20px;
  margin-left: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.channel-label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.15px;
  white-space: nowrap;
}

.text-helio {
  --enter-y: 5px;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  height: 70px;
  padding: 0 35px;
  border: 0;
  appearance: none;
  border-radius: 23px;
  color: #fff;
  background: linear-gradient(#2c2c2c, #141414);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  cursor: default;
  opacity: 1;
  animation: helio-rise-in 500ms var(--ease-out-quint) 260ms both;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.text-helio:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 21px 48px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.text-helio:focus-visible,
.social-link:focus-visible,
.footer-nav a:focus-visible,
.buddy:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.text-helio img {
  width: 38px;
  height: 38px;
}

.text-helio span {
  font-family: "Degular Display", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.24px;
}

.manifesto {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 114px 24px;
  background: #fff;
}

.manifesto-copy {
  width: min(877px, 100%);
  color: rgba(0, 0, 0, 0.5);
  font-family: "Neue Montreal", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 35.75px;
  letter-spacing: -0.52px;
}

.manifesto-copy p {
  margin: 0 0 35.75px;
}

.manifesto-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  min-height: 474px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--footer);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 56px 32px;
}

.footer-top {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 556px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Degular Display", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.42px;
}

.buddy--footer {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.buddy--footer .buddy__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44.1px;
  height: 38.04px;
  overflow: hidden;
  border-radius: 13.56px 13.56px 10.8px 10.8px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.buddy--footer .buddy__glow {
  width: 42.45px;
  height: 35.71px;
  border-radius: 12px 12px 9.5px 9.5px;
  filter: blur(4.603px);
  transform: translate(-50%, -42%);
}

.buddy--footer img {
  left: 12.24px;
  top: 7.39px;
  width: 22.97px;
  height: 14.44px;
}

.footer-brand h2 {
  margin: 0;
  padding-top: 10px;
  font-family: "Degular Display", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.64px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.04);
  visibility: hidden;
  pointer-events: none;
}

.social-link img {
  width: 20px;
  height: 20px;
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 520px;
  padding: 8px 0 102px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 80px;
}

.footer-nav-list span {
  color: #ff551d;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.26px;
  text-transform: lowercase;
}

.footer-nav-list a {
  font-family: "Degular Display", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.23px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 21px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom small {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.26px;
  text-transform: lowercase;
}

@media (max-width: 900px) {
  .hero {
    height: 900px;
  }

  .hero-art {
    bottom: 0;
  }

  .site-header {
    height: 155px;
    padding-top: 22px;
  }

  .buddy--hero {
    width: 104px;
    height: 90px;
    border-radius: 32px 32px 26px 26px;
  }

  .buddy--hero img {
    left: 29px;
    top: 18px;
    width: 54px;
    height: 33.94px;
  }

  .hero-content {
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 9vw, 70px);
    line-height: 0.92;
  }

  .hero-copy p {
    font-size: clamp(19px, 3vw, 24px);
  }

  .manifesto {
    padding: 88px 42px;
  }

  .manifesto-copy {
    font-size: 22px;
    line-height: 1.42;
    letter-spacing: -0.4px;
  }

  .manifesto-copy p {
    margin-bottom: 31px;
  }

  .footer-inner {
    padding-inline: 24px;
  }

  .footer-brand,
  .footer-nav {
    width: 50%;
  }

  .footer-brand h2 {
    font-size: clamp(48px, 7vw, 64px);
  }
}

@media (max-width: 640px) {
  .buddy--hero,
  .hero-copy p,
  .channel-pill,
  .text-helio {
    --enter-y: 4px;
  }

  .hero-copy h1 {
    --enter-y: 6px;
  }

  .hero {
    height: 800px;
  }

  .hero-art {
    inset: 0;
  }

  .hero-art img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
  }

  .hero-art::before {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.73) 23%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0) 80%, #fff 100%);
  }

  .site-header {
    height: 132px;
    padding-top: 18px;
  }

  .buddy--hero {
    width: 88px;
    height: 76px;
    border-radius: 27px 27px 22px 22px;
  }

  .buddy--hero img {
    left: 24px;
    top: 15px;
    width: 47px;
    height: 29.54px;
  }

  .hero-content {
    gap: 42px;
    padding-inline: 18px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.88;
    letter-spacing: -1.2px;
  }

  .desktop-break {
    display: none;
  }

  .hero-copy p {
    max-width: 460px;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }

  .channel-pill {
    gap: 11px;
    transform: none;
  }

  .text-helio {
    height: 64px;
    padding-inline: 28px;
  }

  .manifesto {
    padding: 68px 22px;
  }

  .manifesto-copy {
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.25px;
  }

  .manifesto-copy p {
    margin-bottom: 26px;
  }

  .footer-inner {
    padding: 44px 22px 32px;
  }

  .footer-top {
    flex-direction: column;
    gap: 48px;
  }

  .footer-brand,
  .footer-nav {
    width: 100%;
  }

  .footer-brand h2 {
    font-size: 52px;
  }

  .footer-nav {
    justify-content: flex-start;
    padding: 0;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

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

  .buddy--hero,
  .hero-copy h1,
  .hero-copy p,
  .channel-pill,
  .channel-icon--messages,
  .channel-icon--whatsapp,
  .text-helio {
    opacity: 1;
    animation: none;
    scale: 1;
    translate: 0 0;
  }

  .text-helio {
    transition: none;
  }
}
