:root {
  --ink: #101010;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #686660;
  --line: rgba(16, 16, 16, 0.13);
  --blue: #007aff;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: 106px;
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 64px), var(--content));
  height: 100%;
  margin-inline: auto;
}

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

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav > a:not(.nav-contact) {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.desktop-nav > a:not(.nav-contact):hover {
  color: var(--white);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.circle-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.circle-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.nav-contact:hover .circle-arrow,
.hero-link:hover .circle-arrow {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  transform: translate(2px, -2px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #0d0d0e;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -18%;
  width: 72vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 10vw rgba(255, 255, 255, 0.018), 0 0 0 20vw rgba(255, 255, 255, 0.012);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
  width: min(calc(100% - 64px), var(--content));
  min-height: 820px;
  margin-inline: auto;
  padding: 155px 0 86px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.location-icon {
  width: 19px;
  height: auto;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  vertical-align: -4px;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(64px, 7.6vw, 108px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-ghost {
  background: transparent;
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 31px;
  background: #1b1b1d;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-card-main {
  top: 9%;
  right: 5%;
  z-index: 3;
  width: 55%;
  aspect-ratio: 392 / 696;
  transform: rotate(4deg);
}

.phone-card-left {
  top: 27%;
  left: 0;
  z-index: 2;
  width: 47%;
  aspect-ratio: 392 / 696;
  transform: rotate(-8deg);
}

.phone-card-back {
  top: 1%;
  left: 22%;
  z-index: 1;
  width: 45%;
  aspect-ratio: 392 / 696;
  opacity: 0.78;
  transform: rotate(-1deg);
}

.phone-card-back img {
  object-fit: cover;
  background: #5f37bd;
}

.floating-icon {
  position: absolute;
  z-index: 5;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 0;
  border-radius: 19px;
  background: transparent;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.floating-icon-one {
  top: 6%;
  right: 0;
  transform: rotate(8deg);
}

.floating-icon-two {
  right: 0;
  bottom: 7%;
  transform: rotate(-7deg);
}

.hero-footnote {
  position: absolute;
  right: 32px;
  bottom: 25px;
  z-index: 4;
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
}

.trust-item {
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.section-inner {
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 31px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.08em;
}

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

.statement h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(43px, 6.6vw, 88px);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.statement h2 span {
  color: #aaa8a1;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 64px;
}

.statement-grid p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.statement-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  justify-self: end;
  max-width: 440px;
}

.statement-note::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(43px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 390px;
  margin: 0 0 7px;
  color: var(--muted);
}

.featured-list {
  display: grid;
  gap: 28px;
}

.featured-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 590px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--card-bg);
  color: var(--card-ink);
}

.featured-card:nth-child(even) {
  grid-template-columns: 1.14fr 0.86fr;
}

.featured-card:nth-child(even) .featured-copy {
  order: 2;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 70px);
}

.featured-index {
  margin-bottom: auto;
  color: var(--card-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured-app-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  border-radius: 19px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.featured-copy h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.featured-copy p {
  max-width: 430px;
  margin: 25px 0 29px;
  color: var(--card-muted);
  font-size: 17px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 160ms ease;
}

.product-link:hover svg {
  transform: translate(2px, -2px);
}

.featured-visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 590px;
  overflow: hidden;
  background: var(--visual-bg);
}

.featured-visual::before {
  content: "";
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid var(--visual-line);
  border-radius: 50%;
  box-shadow: 0 0 0 80px color-mix(in srgb, var(--visual-line) 35%, transparent);
}

.featured-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 88%;
  max-width: 60%;
  object-fit: contain;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.card-raivo {
  --card-bg: #ed2d24;
  --card-ink: #fff;
  --card-muted: rgba(255, 255, 255, 0.76);
  --visual-bg: #c90e08;
  --visual-line: rgba(255, 255, 255, 0.16);
}

.card-dream {
  --card-bg: #171719;
  --card-ink: #fff;
  --card-muted: rgba(255, 255, 255, 0.66);
  --visual-bg: #252529;
  --visual-line: rgba(255, 255, 255, 0.12);
}

.card-plant {
  --card-bg: #b6efbd;
  --card-ink: #102214;
  --card-muted: rgba(16, 34, 20, 0.67);
  --visual-bg: #84d790;
  --visual-line: rgba(16, 34, 20, 0.15);
}

.card-fonts {
  --card-bg: #7544d4;
  --card-ink: #fff;
  --card-muted: rgba(255, 255, 255, 0.76);
  --visual-bg: #5124aa;
  --visual-line: rgba(255, 255, 255, 0.15);
}

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

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.app-card {
  position: relative;
  min-width: 0;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease;
}

.app-card:hover {
  background: var(--white);
}

.app-card-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 31px;
  border-radius: 20px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease;
}

.app-card:hover .app-card-icon {
  transform: translateY(-4px);
}

.app-card-more {
  display: grid;
  place-items: center;
  background: var(--ink);
}

.app-card-more img {
  width: 78%;
  height: auto;
}

.app-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-card h3 {
  max-width: 220px;
  margin: 0;
  font-size: 20px;
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.app-card svg {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #aaa8a1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  transition: stroke 160ms ease, transform 160ms ease;
}

.app-card:hover svg {
  stroke: var(--ink);
  transform: translate(2px, -2px);
}

.about {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: end;
}

.about h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(50px, 7.4vw, 100px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.about h2 span {
  color: #777;
}

.about-copy p {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
}

.principles {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.principles li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.principles span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.contact-cta {
  border-bottom: 1px solid var(--line);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-link span:first-child {
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1;
}

.contact-link .circle-arrow {
  width: 68px;
  height: 68px;
  border-color: var(--line);
}

.contact-link .circle-arrow svg {
  width: 25px;
  height: 25px;
}

.contact-link:hover .circle-arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translate(3px, -3px);
}

.site-footer {
  background: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
  padding: 40px 0 58px;
}

.footer-brand {
  margin: 0;
  font-size: clamp(39px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 25px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns: 1fr 430px;
  }

  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-card,
  .featured-card:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .featured-card:nth-child(even) .featured-copy {
    order: initial;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-inner,
  .hero-inner,
  .trust-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 40px), var(--content));
  }

  .site-header {
    height: 82px;
  }

  .brand img {
    width: 112px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .menu-button span,
  .menu-button::before,
  .menu-button::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    margin-top: -0.5px;
    margin-left: -8px;
    background: currentColor;
    transform-origin: 50% 50%;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button::before {
    transform: translateY(-5px);
  }

  .menu-button::after {
    transform: translateY(5px);
  }

  .menu-button[aria-expanded="true"] span {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"]::before {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"]::after {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 28px 38px;
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: clamp(38px, 12vw, 62px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.05;
    text-decoration: none;
  }

  .mobile-menu p {
    margin: auto 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 130px 0 70px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(62px, 14vw, 94px);
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 570px;
    margin-inline: auto;
  }

  .hero-footnote {
    display: none;
  }

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

  .statement-note {
    justify-self: start;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 24px;
  }

  .featured-card,
  .featured-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    min-height: 440px;
  }

  .featured-visual {
    min-height: 540px;
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-copy {
    max-width: 610px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .hero-inner,
  .trust-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 74px;
  }

  .brand img {
    width: 100px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero-inner {
    padding: 116px 0 58px;
  }

  .eyebrow {
    margin-bottom: 21px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 76px);
    line-height: 0.9;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 27px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 31px;
  }

  .button {
    width: 100%;
  }

  .hero-link {
    justify-content: space-between;
  }

  .hero-visual {
    min-height: 455px;
    margin-top: 5px;
  }

  .phone-card {
    border-radius: 22px;
  }

  .phone-card-main {
    right: 4%;
    width: 54%;
  }

  .phone-card-left {
    top: 28%;
    left: 2%;
    width: 46%;
  }

  .phone-card-back {
    left: 25%;
    width: 43%;
  }

  .floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .trust-inner {
    display: block;
    padding: 10px 0;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-item strong {
    font-size: 16px;
  }

  .section {
    padding: 80px 0;
  }

  .statement h2,
  .section-heading h2 {
    font-size: 43px;
  }

  .statement-grid {
    gap: 29px;
    margin-top: 42px;
  }

  .statement-grid p,
  .about-copy p {
    font-size: 16px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .featured-list {
    gap: 16px;
  }

  .featured-card {
    border-radius: 22px;
  }

  .featured-copy {
    min-height: 405px;
    padding: 28px;
  }

  .featured-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }

  .featured-copy h3 {
    font-size: 43px;
  }

  .featured-copy p {
    font-size: 16px;
  }

  .featured-visual {
    min-height: 430px;
  }

  .featured-visual img {
    width: auto;
    height: 88%;
    max-width: 68%;
    border-radius: 22px 22px 0 0;
  }

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

  .app-card {
    min-height: 235px;
    padding: 20px;
  }

  .app-card-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 27px;
    border-radius: 16px;
  }

  .app-card h3 {
    padding-right: 6px;
    font-size: 17px;
  }

  .app-card svg {
    right: 16px;
    bottom: 16px;
  }

  .about h2 {
    font-size: 52px;
  }

  .contact-link {
    gap: 20px;
    padding: 28px 0;
  }

  .contact-link span:first-child {
    font-size: 42px;
  }

  .contact-link .circle-arrow {
    width: 50px;
    height: 50px;
  }

  .footer-inner {
    display: block;
    padding: 45px 0 52px;
  }

  .footer-meta {
    margin-top: 29px;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

}
