:root {
  --paper: #d8d8d6;
  --paper-soft: #e7e5e0;
  --line: rgba(18, 18, 17, 0.12);
  --ink: #10100f;
  --ink-panel: #1c1c1b;
  --ink-line: rgba(255, 255, 255, 0.1);
  --text: #11110f;
  --muted: #555551;
  --white: #f7f6f0;
  --accent: #a3e635;
  --accent-dark: #84cc16;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-transform: none;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .hero-title {
  font-family: 'Fraunces', serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: url("assets/grain.png");
  background-size: 210px 210px;
  opacity: 0.15;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(250, 204, 21, 0.86);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(1rem, 5vw, 4.4rem);
  color: var(--text);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 48px;
  width: max-content;
  font-size: 1.65rem;
  font-weight: 820;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: var(--text);
}

.brand {
  grid-column: 1;
}

.brand-arrow {
  display: inline-grid;
  place-items: center;
  width: 0.9em;
  aspect-ratio: 1;
  border-radius: 0.06em;
  margin-left: 0.15em;
  font-size: 0.65em;
  line-height: 1;
  transform: translateY(-0.06em);
}

.brand .brand-arrow {
  background: var(--accent);
  color: var(--ink);
}

.footer-brand .brand-arrow {
  background: var(--accent);
  color: var(--ink);
}

.mobile-nav-wrapper {
  position: relative;
  grid-column: 2;
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  position: relative;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 88px;
  min-height: 48px;
  justify-content: flex-end;
  color: var(--text);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.menu-btn::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 48px;
  height: 48px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: -1;
}

.menu-toggle:checked ~ .menu-btn {
  position: fixed;
  top: 0.75rem;
  right: 1rem;
  color: var(--white);
}

.menu-toggle:checked ~ .menu-btn::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.menu-icon {
  display: grid;
  width: 24px;
  height: 18px;
  gap: 4px;
  align-content: center;
  position: relative;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.83, 0, 0.17, 1), opacity 0.4s ease;
}

.menu-toggle:checked ~ .menu-btn .menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle:checked ~ .menu-btn .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .menu-btn .menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-panel-fs {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: grid;
  place-items: center;
  clip-path: circle(0px at calc(100% - 2rem) 2.5rem);
  transition: clip-path 0.6s cubic-bezier(0.83, 0, 0.17, 1);
  pointer-events: none;
}

.menu-toggle:checked ~ .menu-panel-fs {
  clip-path: circle(150% at calc(100% - 2rem) 2.5rem);
  pointer-events: auto;
}

.menu-panel-fs nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(100% - 3rem, 480px);
}

.menu-panel-fs nav:hover a {
  opacity: 0.3;
}

.menu-panel-fs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 800;
  color: var(--white);
  text-transform: capitalize;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.5rem;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.menu-panel-fs nav a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(1.2rem);
}

.menu-panel-fs a span {
  color: var(--accent);
  font-size: 0.8em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-panel-fs a:hover span {
  transform: translate(6px, -6px);
}

.hero {
  position: relative;
  min-height: clamp(780px, 100svh, 980px);
  overflow: hidden;
  background:
    radial-gradient(circle at 47% 9%, rgba(255, 255, 255, 0.26), transparent 18rem),
    var(--paper);
  background-size:
    auto,
    auto;
}

.hero-shell {
  position: relative;
  isolation: isolate;
  width: min(100% - 2rem, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero-atmosphere {
  position: absolute;
  inset: -8% -12%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob,
.hero-dots {
  position: absolute;
  inset: auto;
}

.hero-blob {
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(188, 255, 117, 0.34) 0, rgba(163, 230, 53, 0.2) 34%, rgba(163, 230, 53, 0.08) 58%, rgba(163, 230, 53, 0) 74%);
  filter: blur(36px);
  mix-blend-mode: multiply;
  opacity: 0.82;
}

.hero-blob-one {
  left: 8%;
  bottom: 12%;
  width: clamp(16rem, 28vw, 28rem);
  height: clamp(16rem, 28vw, 28rem);
  animation: hero-blob-float-one 20s ease-in-out infinite alternate;
}

.hero-blob-two {
  right: 10%;
  top: 20%;
  width: clamp(14rem, 24vw, 22rem);
  height: clamp(14rem, 24vw, 22rem);
  opacity: 0.66;
  animation: hero-blob-float-two 24s ease-in-out infinite alternate;
}

.hero-blob-three {
  left: 50%;
  bottom: -2%;
  width: clamp(18rem, 30vw, 30rem);
  height: clamp(18rem, 30vw, 30rem);
  opacity: 0.56;
  transform: translateX(-50%);
  animation: hero-blob-float-three 26s ease-in-out infinite alternate;
}

.hero-dots {
  left: -10%;
  width: 120%;
  height: 82%;
  opacity: 0.26;
  background-image: radial-gradient(circle, rgba(16, 16, 15, 0.34) 1.25px, transparent 1.9px);
  background-position: 0 0;
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 72%, rgba(0, 0, 0, 0.98) 0 44%, rgba(0, 0, 0, 0.5) 65%, transparent 88%);
  mask-image: radial-gradient(ellipse at 50% 72%, rgba(0, 0, 0, 0.98) 0 44%, rgba(0, 0, 0, 0.5) 65%, transparent 88%);
}

.hero-dots-one {
  top: 20%;
  transform: rotate(-7deg);
  animation: hero-dots-drift-one 22s linear infinite;
}

.hero-title {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  margin: 0;
  text-align: center;
  text-transform: none;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.4), 0 0 168px rgba(0, 0, 0, 0.48), 0 0 340px rgba(0, 0, 0, 0.28);
}

.hero-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1.5vw, 1.1rem);
  width: 100%;
  font-size: clamp(4.5rem, 12.4vw, 10.65rem);
  font-weight: 860;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-line-white {
  color: rgba(255, 255, 255, 0.92);
}

.hero-line-accent {
  color: var(--accent);
  font-size: clamp(4rem, 11vw, 9.25rem);
  line-height: 0.86;
}

.hero-line-apps {
  font-size: clamp(3.9rem, 10.4vw, 8.85rem);
}

.hero-line-dark {
  margin-top: 0.05em;
  color: var(--text);
  font-size: clamp(3.9rem, 10.5vw, 9rem);
}

.orb {
  display: inline-block;
  width: clamp(3.2rem, 8vw, 7.1rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 25%, #566a75 0 12%, #111 54%, #010101 100%);
  box-shadow:
    inset -0.8rem -0.6rem 2rem rgba(255, 255, 255, 0.14),
    0 0 2.5rem rgba(0, 0, 0, 0.18);
}

.arrow-tile {
  display: inline-grid;
  width: clamp(3.3rem, 7.4vw, 6.25rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 0.06em;
  background: var(--ink);
  color: var(--accent);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 0.62em;
  line-height: 1;
  margin-left: 0.1em;
  transform: translateY(-0.08em);
}

.hero-button {
  position: relative;
  z-index: 4;
  margin-top: 3rem;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 820;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero-button:hover {
  background: #fef08a;
  transform: translateY(-2px);
}

.hero-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-size: 1rem;
}

.hero .hero-button {
  display: flex;
  width: max-content;
  margin: clamp(1.1rem, 2.4vw, 1.9rem) auto 0;
}

.hero-note {
  position: absolute;
  z-index: 4;
  max-width: 190px;
  margin: 0;
  color: rgba(17, 17, 15, 0.56);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-note-left {
  top: clamp(20rem, 35vw, 28rem);
  left: 0;
}

.hero-note-right {
  top: clamp(8.6rem, 16vw, 13rem);
  right: 0;
  text-align: left;
}

@keyframes hero-blob-float-one {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  100% {
    transform: translate3d(4%, -8%, 0) scale(1.08);
  }
}

@keyframes hero-blob-float-two {
  0% {
    transform: translate3d(0, 0, 0) scale(0.94);
  }
  100% {
    transform: translate3d(-6%, 8%, 0) scale(1.06);
  }
}

@keyframes hero-blob-float-three {
  0% {
    transform: translateX(-50%) translateY(0) scale(0.94);
  }
  100% {
    transform: translateX(-50%) translateY(-10%) scale(1.08);
  }
}

@keyframes hero-dots-drift-one {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -160px;
  }
}

.section-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.dark-grid {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.dark-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("assets/grain.png");
  background-size: 190px 190px;
  opacity: 0.12;
  pointer-events: none;
}

.dark-grid > * {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  color: var(--text);
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
}

.dark-grid .section-kicker {
  color: var(--paper-soft);
}

.section-kicker::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.about {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.about h2,
.proof h2,
.ways h2,
.connect h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.15rem, 4.7vw, 4.35rem);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: capitalize;
}

.about h2 span,
.proof h2 span,
.ways h2 span {
  display: inline-block;
  padding: 0.01em 0.08em 0.04em;
  background: var(--accent);
  color: var(--ink);
}

.about-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 7vw, 6rem);
  border: 1px solid var(--ink-line);
  background: var(--ink-line);
}

.about-cards article {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.5vw, 2.8rem);
  background: var(--ink-panel);
  transition: background 0.5s ease;
  overflow: hidden;
}

.about-cards article::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-cards article:hover {
  background: radial-gradient(circle at 100% 0%, rgba(163, 230, 53, 0.08), var(--ink-panel) 80%);
}

.about-cards article:hover::before {
  opacity: 1;
  transform: scale(1.4);
}

.about-cards svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: rgba(247, 246, 240, 0.84);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: stroke 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-cards article:hover svg {
  stroke: var(--accent);
  transform: translateY(-4px);
}

.about-cards h3 {
  margin: auto 0 0.8rem;
  padding-top: 3rem;
  font-size: clamp(1.2rem, 1.5vw + 0.9rem, 1.6rem);
  line-height: 1.05;
  text-transform: capitalize;
}

.about-cards p {
  margin: 0;
  color: rgba(247, 246, 240, 0.68);
  font-size: 0.94rem;
}

.signal-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.abstract-shape {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-dark), transparent 70%);
  opacity: 0.6;
  filter: blur(12px);
}

.proof {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.proof .section-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.proof h2 {
  justify-self: center;
  color: var(--text);
  text-align: left;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 1.05fr;
  gap: 1rem;
}

.proof-grid article {
  min-height: 325px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  background: var(--white);
}

.proof-grid h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  line-height: 1;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.quote-mark {
  color: var(--accent);
  font-weight: 850;
  letter-spacing: 0.04em;
}

.proof-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.image-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 42% 24%, rgba(255, 255, 255, 0.16), transparent 9rem),
    #171717 !important;
  color: var(--white);
}

.image-panel p {
  position: relative;
  z-index: 2;
  color: rgba(247, 246, 240, 0.84);
  font-weight: 720;
}

.phone-form {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 175px;
  height: 275px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 42% 18%, rgba(243, 111, 36, 0.5), transparent 5rem),
    #0c0c0c;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.phone-form span {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-form span:nth-child(1) {
  top: 78px;
}

.phone-form span:nth-child(2) {
  top: 105px;
  right: 50px;
}

.phone-form span:nth-child(3) {
  bottom: 48px;
  height: 46px;
  background: var(--accent);
}

.ways {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.ways-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.ways h2 {
  max-width: 620px;
}

.ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ways-grid article {
  min-height: 285px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  background: var(--ink-panel);
}

.ways-grid h3 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1;
}

.ways-grid p,
.ways-grid li {
  color: rgba(247, 246, 240, 0.68);
}

.ways-grid p {
  margin: 0;
}

.ways-grid ul {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.ways-grid li::before {
  content: "\2197 ";
  color: var(--accent);
}

.inline-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 820;
  white-space: nowrap;
}

.connect {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--paper);
}

.connect-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(42vw, 430px);
  aspect-ratio: 1;
  background: rgba(17, 17, 15, 0.08);
  transform: translate(-50%, -46%) rotate(45deg);
}

.corner {
  position: absolute;
  width: 86px;
  height: 86px;
  opacity: 0.25;
}

.corner::before,
.corner::after {
  position: absolute;
  content: "";
  background: var(--ink);
}

.corner::before {
  width: 100%;
  height: 7px;
}

.corner::after {
  width: 7px;
  height: 100%;
}

.corner-one {
  top: 12%;
  left: 12%;
}

.corner-two {
  right: 12%;
  bottom: 16%;
  transform: rotate(180deg);
}

.connect-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.connect-kicker {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 820;
  text-transform: uppercase;
}

.connect h2 {
  max-width: none;
  margin: 0.6rem auto;
  color: var(--text);
  font-size: clamp(4.8rem, 16vw, 13.5rem);
  font-weight: 860;
  line-height: 0.8;
  text-transform: capitalize;
}

.connect p:not(.connect-kicker) {
  max-width: 420px;
  margin: 2.3rem auto 0;
  color: var(--muted);
  text-align: center;
}

.connect .hero-button {
  display: flex;
  width: max-content;
  margin: 2rem auto 0;
}

.email {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 820;
  border-bottom: 1px solid currentColor;
}

.footer {
  padding: clamp(3.5rem, 7vw, 6rem) 0 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.footer-brand {
  color: var(--white);
  font-size: clamp(4.5rem, 9vw, 8.6rem);
  line-height: 0.85;
}


.footer p {
  max-width: 520px;
  margin: 2.3rem 0 0;
  color: rgba(247, 246, 240, 0.84);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 790;
  line-height: 1.08;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer .footer-bottom p {
  margin: 0;
  max-width: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: none;
  font-weight: 400;
}

.footer .email {
  color: rgba(247, 246, 240, 0.78);
}

.footer-nav {
  display: grid;
  border-top: 1px solid var(--ink-line);
}

.footer-nav a {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink-line);
  color: rgba(247, 246, 240, 0.78);
  font-size: 0.95rem;
  font-weight: 820;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero-shell {
    padding-bottom: clamp(14rem, 37vw, 22rem);
  }

  .hero-dots {
    height: 48%;
  }

  .hero-note-right {
    display: none;
  }

  .about-inner,
  .proof-grid,
  .ways-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cards article {
    min-height: 300px;
  }

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    padding-inline: 1rem;
  }

  .mobile-nav-wrapper {
    grid-column: 2;
  }

  .menu-btn-text {
    display: none;
  }

  .menu-btn {
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    gap: 0;
  }

  .menu-toggle:checked ~ .menu-btn {
    top: 0.5rem;
    right: 1rem;
  }

  .hero-shell {
    width: min(100% - 1.6rem, var(--max));
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-line {
    justify-content: center;
    font-size: clamp(2.3rem, 11.5vw, 5.8rem);
    white-space: normal;
    line-height: 1;
  }

  .hero-atmosphere {
    inset: 0 -16%;
  }

  .hero-blob-one {
    left: -6%;
    bottom: 18%;
  }

  .hero-blob-two {
    right: -10%;
    top: 26%;
  }

  .hero-blob-three {
    bottom: 6%;
    width: clamp(14rem, 52vw, 20rem);
    height: clamp(14rem, 52vw, 20rem);
  }

  .hero-dots {
    left: -18%;
    width: 136%;
    height: 76%;
    opacity: 0.24;
    background-size: 28px 28px;
    background-position: 0 0;
  }

  .hero-line-apps .orb {
    display: none;
  }


  .orb {
    width: clamp(2.8rem, 13vw, 4.2rem);
  }

  .arrow-tile {
    width: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero .hero-button {
    min-height: 62px;
    margin-top: 1.55rem;
    padding-inline: 1.6rem;
    font-size: 1.05rem;
    box-shadow: 0 16px 38px rgba(95, 148, 36, 0.22);
  }

  .hero-button span {
    width: 34px;
    height: 34px;
    font-size: 1.08rem;
  }

  .hero-note-left {
    top: auto;
    left: 0;
    bottom: 17.2rem;
  }

  .about {
    padding-top: 4rem;
  }

  .about h2,
  .proof h2,
  .ways h2 {
    font-size: clamp(2.2rem, 11.5vw, 3.8rem);
  }

  .about-cards,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .about-cards article,
  .signal-card,
  .proof-grid article {
    min-height: 270px;
  }

  .ways-heading {
    display: grid;
  }

  .connect {
    min-height: 610px;
  }

  .connect h2 {
    font-size: clamp(4rem, 18vw, 6.8rem);
  }

  .connect p:not(.connect-kicker) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .corner {
    width: 54px;
    height: 54px;
  }

  .footer-brand {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob,
  .hero-dots {
    animation: none;
  }
}
