:root {
  --ink: #2f3438;
  --ink-soft: #62686d;
  --red: #d9383c;
  --red-dark: #b92b2f;
  --paper: #ffffff;
  --soft: #f5f6f6;
  --line: #e7e8e9;

  --radius-lg: 32px;
  --radius-md: 20px;

  --shadow: 0 24px 70px rgba(28, 34, 38, 0.1);
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--ink);
  background: var(--paper);

  -webkit-font-smoothing: antialiased;
}


img {
  display: block;
  max-width: 100%;
}


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


button,
input {
  font: inherit;
}


.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}


.narrow {
  max-width: 820px;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--line);
}


.nav-wrap {
  min-height: 96px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


.brand {
  display: flex;
  align-items: center;
}


.brand img {
  width: 145px;
  height: auto;

  display: block;

  object-fit: contain;

  transform: none;
  clip-path: none;
}


.nav {
  display: flex;
  align-items: center;

  gap: 28px;

  font-size: 0.95rem;
  font-weight: 650;
}


.nav a:not(.nav-cta) {
  color: var(--ink-soft);
}


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


/* BUTTONS */

.nav-cta,
.button.primary,
.signup-form button {
  color: white;
  background: var(--red);

  border-radius: 999px;

  transition:
    transform 180ms ease,
    background 180ms ease;
}


.nav-cta {
  padding: 12px 18px;
}


.nav-cta:hover,
.button.primary:hover,
.signup-form button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}


/* HERO */

.hero {
  padding: 88px 0 104px;

  overflow: hidden;
}


.hero-grid {
  display: grid;

  grid-template-columns: 1.06fr 0.94fr;

  align-items: center;

  gap: 76px;
}


.eyebrow {
  margin: 0 0 18px;

  color: var(--red);

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


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


h1 {
  max-width: 760px;

  margin-bottom: 26px;

  font-size: clamp(3.5rem, 7vw, 6.8rem);

  line-height: 0.92;

  letter-spacing: -0.065em;

  font-weight: 850;
}


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


.hero-text {
  max-width: 650px;

  margin-bottom: 34px;

  font-size: clamp(1.08rem, 1.8vw, 1.34rem);

  line-height: 1.6;

  color: var(--ink-soft);
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}


.button {
  display: inline-flex;

  min-height: 52px;

  align-items: center;
  justify-content: center;

  padding: 0 22px;

  border-radius: 999px;

  font-weight: 750;
}


.button.secondary {
  border: 1px solid var(--line);

  background: var(--soft);
}


.button.secondary:hover {
  background: #eceeef;
}


/* HERO VISUAL */

.hero-visual {
  position: relative;

  min-height: 500px;
}


.parrot-card {
  position: absolute;

  inset: 12px 12px 38px 38px;

  border-radius: 46px;

  background: linear-gradient(145deg, #fafafa, #ffffff);

  box-shadow: var(--shadow);

  overflow: hidden;

  display: grid;
  place-items: center;
}


.parrot-card::after {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  right: -92px;
  bottom: -110px;

  background: var(--red);

  border-radius: 50%;

  opacity: 0.95;
}


.parrot-card img {
  width: min(78%, 410px);

  z-index: 1;
}


.word-card {
  position: absolute;

  z-index: 3;

  padding: 14px 18px;

  border-radius: 16px;

  box-shadow: 0 12px 34px rgba(28, 34, 38, 0.13);

  font-weight: 800;
}


.word-card-one {
  left: 0;
  bottom: 80px;

  background: var(--ink);
  color: white;

  transform: rotate(-5deg);
}


.word-card-two {
  right: 0;
  top: 82px;

  background: var(--red);
  color: white;

  transform: rotate(4deg);
}


/* ABOUT */

.statement {
  padding: 110px 0 70px;

  background: var(--soft);
}


.statement h2,
.waitlist h2 {
  margin-bottom: 22px;

  font-size: clamp(2.6rem, 5vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.055em;

  font-weight: 850;
}


.statement p:not(.eyebrow) {
  max-width: 760px;

  margin-bottom: 0;

  font-size: clamp(1.1rem, 2vw, 1.42rem);

  line-height: 1.7;

  color: var(--ink-soft);
}


/* FEATURES */

.features {
  padding: 54px 0 112px;

  background: var(--soft);
}


.feature-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}


.feature-card {
  padding: 30px;

  border: 1px solid var(--line);

  border-radius: var(--radius-md);

  background: white;
}


.feature-number {
  display: inline-block;

  margin-bottom: 44px;

  color: var(--red);

  font-size: 0.82rem;
  font-weight: 800;
}


.feature-card h3 {
  margin-bottom: 12px;

  font-size: 1.35rem;

  letter-spacing: -0.025em;
}


.feature-card p {
  margin-bottom: 0;

  color: var(--ink-soft);

  line-height: 1.6;
}


/* WAITLIST */

.waitlist {
  padding: 110px 0;
}


.waitlist-panel {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 0.95fr;

  align-items: center;

  gap: 62px;

  padding: 64px;

  border-radius: var(--radius-lg);

  color: white;

  background: var(--ink);

  overflow: hidden;
}


.waitlist-panel::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -130px;
  top: -130px;

  border-radius: 50%;

  background: var(--red);
}


.eyebrow.light {
  color: #ff8b8e;
}


.waitlist-copy,
.ml-subscribe-form {
  position: relative;

  z-index: 1;
}


.waitlist h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}


.waitlist-copy p:last-child {
  max-width: 560px;

  margin-bottom: 0;

  color: #cfd3d5;

  line-height: 1.6;
}


/* MAILERLITE FORM */

.ml-subscribe-form {
  width: 100%;
}


.row-form {
  width: 100%;
}


.signup-form {
  display: flex;

  width: 100%;

  padding: 7px;

  border-radius: 999px;

  background: white;
}


.signup-form input[type="email"] {
  min-width: 0;

  flex: 1;

  border: 0;
  outline: 0;

  padding: 0 18px;

  color: var(--ink);

  background: transparent;
}


.signup-form input[type="email"]::placeholder {
  color: #8b9094;
}


.signup-form button {
  min-height: 52px;

  padding: 0 22px;

  border: 0;

  cursor: pointer;

  font-weight: 800;

  white-space: nowrap;
}


.signup-success {
  position: relative;

  z-index: 1;

  padding: 24px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.08);

  color: white;
}


.signup-success strong {
  display: block;

  margin-bottom: 8px;

  font-size: 1.2rem;
}


.signup-success p {
  margin: 0;

  color: #cfd3d5;

  line-height: 1.5;
}


/* FOOTER */

.site-footer {
  padding: 34px 0 44px;

  border-top: 1px solid var(--line);
}


.footer-wrap {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


.footer-wrap img {
  width: 120px;
  height: auto;

  display: block;

  object-fit: contain;

  transform: none;
  clip-path: none;
}


.footer-wrap p {
  margin-bottom: 0;

  color: var(--ink-soft);

  font-size: 0.9rem;
}


/* ACCESSIBILITY */

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* TABLET */

@media (max-width: 900px) {

  .hero {
    padding-top: 66px;
  }


  .hero-grid,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }


  .hero-grid {
    gap: 50px;
  }


  .hero-visual {
    min-height: 440px;
  }


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


  .feature-number {
    margin-bottom: 26px;
  }


  .waitlist-panel {
    gap: 34px;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .container {
    width: min(100% - 28px, 1160px);
  }


  .nav-wrap {
    min-height: 80px;
  }


  .brand img {
    width: 115px;
    height: auto;
  }


  .nav {
    gap: 12px;
  }


  .nav a:not(.nav-cta) {
    display: none;
  }


  .nav-cta {
    padding: 10px 14px;

    font-size: 0.88rem;
  }


  .hero {
    padding: 54px 0 76px;
  }


  h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }


  .hero-visual {
    min-height: 340px;
  }


  .parrot-card {
    inset: 4px 4px 24px 24px;

    border-radius: 30px;
  }


  .word-card-one {
    bottom: 44px;
  }


  .word-card-two {
    top: 42px;
  }


  .statement {
    padding-top: 82px;
  }


  .features {
    padding-bottom: 84px;
  }


  .waitlist {
    padding: 76px 0;
  }


  .waitlist-panel {
    padding: 34px 24px;

    border-radius: 24px;
  }


  .signup-form {
    padding: 0;

    background: transparent;

    flex-direction: column;

    gap: 10px;
  }


  .signup-form input[type="email"],
  .signup-form button {
    width: 100%;

    min-height: 54px;

    border-radius: 999px;
  }


  .signup-form input[type="email"] {
    padding: 0 18px;

    background: white;
  }

  .language-switcher {
    font-size: 0.76rem;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .footer-meta {
    align-items: flex-start;
  }

}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 0.82rem;
  font-weight: 800;

  color: var(--ink-soft);
}


.language-switcher a {
  transition: color 180ms ease;
}


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


.language-switcher a.active {
  color: var(--red);
}


.language-switcher span {
  color: #c2c5c7;
}

/* FOOTER */

.site-footer {
  padding: 64px 0 42px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: end;
  gap: 48px;
}

.footer-brand img {
  width: 110px;
  height: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  max-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-label {
  color: #9a9fa3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  width: fit-content;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.footer-contact a:hover {
  color: var(--red);
}

.footer-contact-text {
  max-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-meta p {
  margin: 0;
  color: #9a9fa3;
  font-size: 0.82rem;
}

.footer-languages {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.footer-languages a.active {
  color: var(--red);
}

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

.footer-languages span {
  color: #c5c8ca;
}