/* ========== Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #262626;
  --ink-soft: rgba(38, 38, 38, 0.8);
  --ink-muted: rgba(38, 38, 38, 0.6);
  --ink-faint: rgba(38, 38, 38, 0.4);
  --purple: #3f2e69;
  --grad: linear-gradient(96deg, #854bd3 1%, #081add 90%);
  --lilac: #f5edff;
  --lilac-deep: #dfc4fe;
  --mint: #bcefe5;
  --cream: #f7f3eb;
  --blue: #3648ec;
  --bg: #ffffff;
  --grey: #f6f6f6;
  --radius: 1.5rem;
  --font: "Manrope", system-ui, sans-serif;
  --font-ui: "Afacad", system-ui, sans-serif;
  --font-script: "Kaushan Script", cursive;
  --font-mail: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 5rem);
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

em {
  font-style: normal;
  font-family: var(--font-script);
  font-weight: 400;
}

.page {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

#home,
#function,
#apps,
#contact {
  scroll-margin-top: 5.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(38, 38, 38, 0.06);
}

.nav__inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 clamp(2rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 1.125rem;
  min-height: 5rem;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem 0.75rem;
  color: rgba(38, 38, 38, 0.55);
  font-weight: 400;
  transition: color 0.15s ease, font-weight 0.15s ease;
  line-height: 1.5;
}

.nav__arrow {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.15s ease;
}

.nav__link:hover {
  color: #2a2828;
}

.nav__link:hover .nav__arrow {
  opacity: 0.85;
}

.nav__link.is-active {
  color: #2a2828 !important;
  font-weight: 700 !important;
}

.nav__link.is-active .nav__arrow {
  opacity: 1 !important;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: min(92vh, 920px);
  padding: 3rem var(--pad) 4rem;
  margin: 1.5rem clamp(0.75rem, 2vw, 2.375rem) 0;
  border-radius: var(--radius);
  background: #fbfbfb;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero__glow--a {
  width: min(60vw, 700px);
  height: min(60vw, 700px);
  top: -10%;
  left: 20%;
  background: #dfc4fe;
  opacity: 0.45;
  animation: blob 5s ease-in-out infinite;
}

.hero__glow--b {
  width: min(50vw, 600px);
  height: min(50vw, 520px);
  bottom: -15%;
  right: -5%;
  background: #ced8ff;
  opacity: 0.55;
  animation: blob 5s ease-in-out infinite 1.2s;
}

@keyframes blob {
  0%,
  100% {
    transform: scale(1);
  }
  33% {
    transform: scale(1.12);
  }
  66% {
    transform: scale(0.88);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.4rem 0.65rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 -5px 4px rgba(255, 255, 255, 0.25),
    0 10px 30px rgba(145, 145, 145, 0.08);
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero__badge img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  filter: invert(1) brightness(0.2);
}

.hero__title {
  color: var(--purple);
  font-size: clamp(2.4rem, 4.2vw, 4.375rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  position: relative;
}

.hero__script {
  display: inline-block;
  margin-left: 0.15em;
  font-size: 0.92em;
  line-height: 1;
}

.hero__desc {
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 11.5rem;
  height: 3.6rem;
  padding: 0 2.2rem;
  border: none;
  border-radius: 1.25rem;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-appearance: none;
  appearance: none;
}

.btn--primary {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 -5px 4px rgba(255, 255, 255, 0.25),
    0 8px 24px rgba(145, 145, 145, 0.1);
}

.btn--primary span {
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #854bd3;
}

.btn--primary:hover {
  box-shadow: 0 0 0 0.5rem #c7b7e5;
}

.btn--ghost {
  background: rgba(246, 246, 246, 0.28);
  color: var(--ink-soft);
  box-shadow: inset 0 -5px 4px rgba(255, 255, 255, 0.25),
    0 8px 24px rgba(145, 145, 145, 0.08);
}

.btn--ghost img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero__phones {
  position: relative;
  z-index: 1;
  height: min(68vh, 640px);
  min-height: 420px;
}

.phone {
  position: absolute;
  border-radius: 1.25rem;
  background: rgba(224, 223, 233, 0.19);
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(63, 46, 105, 0.08);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 1rem;
  opacity: 0.92;
}

.phone--left {
  width: 42%;
  height: 78%;
  left: 0;
  top: 8%;
  transform: rotate(-4deg);
  z-index: 1;
}

.phone--center {
  width: 48%;
  height: 88%;
  left: 28%;
  top: 0;
  z-index: 3;
}

.phone--right {
  width: 42%;
  height: 78%;
  right: 0;
  top: 12%;
  transform: rotate(4deg);
  z-index: 2;
}

.hero__star {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.7;
  z-index: 4;
}

.hero__star--1 {
  top: 4%;
  left: 55%;
}
.hero__star--2 {
  top: 8%;
  right: 8%;
}
.hero__star--3 {
  bottom: 18%;
  right: 4%;
}

/* ========== Stats ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 0 var(--pad);
}

.stats__item {
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f6f8ff, #ffffff);
}

.stats__num {
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1;
}

.stats__num > span:first-child {
  font-size: clamp(2.8rem, 5vw, 6.25rem);
}

.stats__plus {
  font-size: clamp(1.8rem, 3vw, 3.75rem);
  margin-left: 0.15rem;
}

.stats__label {
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.6vw, 2.25rem);
  font-weight: 400;
}

/* ========== Features ========== */
.features {
  margin: 4rem clamp(0.75rem, 2vw, 2.375rem) 0;
  padding: 4rem clamp(1.25rem, 3vw, 4.5rem) 5rem;
  border-radius: var(--radius);
  background: var(--grey);
}

.features__head {
  max-width: 52rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 2.5rem;
  border: 1px solid rgba(38, 38, 38, 0.1);
  border-radius: 2.375rem;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-faint);
  font-family: var(--font-ui);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.pill img {
  width: 1.35rem;
  height: 1.35rem;
}

.features__title {
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.features__title em {
  font-weight: 400;
}

.features__desc {
  color: var(--ink-faint);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  line-height: 1.55;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.fcard {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.fcard h3 {
  color: rgba(38, 38, 38, 0.8);
  font-size: clamp(1.35rem, 2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.fcard p {
  color: rgba(38, 38, 38, 0.6);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.5;
}

.fcard__media {
  margin-top: auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(129, 113, 143, 0.12);
}

.fcard__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
}

.fcard__media--wide img {
  height: 140px;
}

.fcard--edit {
  grid-column: span 5;
  min-height: 360px;
}

.fcard--qr {
  grid-column: span 3;
}

.fcard--photo {
  grid-column: span 4;
}

.fcard--secure {
  grid-column: span 3;
  justify-content: flex-end;
  min-height: 260px;
}

.fcard--pdf {
  grid-column: span 4;
}

.fcard--search {
  grid-column: span 5;
}

.fcard__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  pointer-events: none;
}

.fcard__blob--teal {
  width: 180px;
  height: 140px;
  background: var(--mint);
  top: -20px;
  left: -30px;
}

.fcard__blob--yellow {
  width: 220px;
  height: 140px;
  background: #fff7ca;
  top: 20px;
  right: -40px;
}

.fcard__pdfs {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0 0.5rem;
}

.pdf-icon {
  width: 5.5rem;
  height: 7.2rem;
  border-radius: 0.75rem 1.25rem 0.75rem 0.75rem;
  background: linear-gradient(180deg, #e8f4fc, #ffffff);
  box-shadow: 0 12px 30px rgba(71, 158, 221, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background-clip: padding-box;
  color: transparent;
  background-image: linear-gradient(180deg, #e8f4fc, #fff),
    linear-gradient(180deg, #479edd, #ffffff);
  -webkit-background-clip: padding-box, text;
  background-clip: padding-box, text;
}

.pdf-icon--a {
  transform: rotate(-5deg);
}
.pdf-icon--b {
  transform: rotate(5deg);
}

.pdf-arrow {
  color: rgba(38, 38, 38, 0.35);
  font-size: 1.5rem;
}

/* ========== Showcase ========== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem clamp(0.75rem, 2vw, 2.375rem) 0;
  padding: 3.5rem clamp(1.5rem, 3vw, 4rem);
  border-radius: var(--radius);
  background: var(--lilac);
  overflow: hidden;
  position: relative;
  min-height: 560px;
}

.showcase__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}

.showcase__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(148deg, #cf9eff 20%, #ac74e4 97%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.35);
}

.showcase__title {
  font-size: clamp(1.75rem, 2.8vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  min-height: 2.4em;
}

.showcase__desc {
  color: rgba(38, 38, 38, 0.6);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.3vw, 1.625rem);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.showcase__tab {
  min-width: 9.5rem;
  height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid #fff;
  border-radius: 1.0625rem;
  background: rgba(234, 219, 253, 0.29);
  backdrop-filter: blur(8px);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease;
}

.showcase__tab.is-active {
  background: #eadbfd;
}

.showcase__tab:hover {
  background: #eadbfd;
}

.showcase__preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__frame {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  border: 1px solid #fff;
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.showcase__frame img {
  width: 100%;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
}

.showcase__glow {
  position: absolute;
  width: 120%;
  max-width: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  filter: blur(20px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

/* ========== Apps ========== */
.apps {
  padding: 5rem var(--pad) 2rem;
}

.apps__title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto 3.5rem;
  max-width: 48rem;
}

.apps__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.apps__col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.apps__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 1.5rem auto 0;
}

.appcard {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  min-height: 280px;
  padding: 1.75rem;
  color: var(--ink);
}

.appcard--tall {
  min-height: 580px;
}

.appcard--grey {
  background: var(--grey);
  text-align: right;
}
.appcard--blue {
  background: var(--blue);
  color: #fff;
}
.appcard--mint {
  background: var(--mint);
}
.appcard--purple {
  background: var(--lilac-deep);
}
.appcard--cream {
  background: var(--cream);
}

.appcard__copy {
  position: relative;
  z-index: 2;
  max-width: 16rem;
  margin-left: auto;
  padding-top: 0.5rem;
}

.appcard--tall .appcard__copy {
  margin-left: auto;
  text-align: right;
  max-width: 18rem;
}

.appcard--blue .appcard__copy,
.appcard--mint .appcard__copy,
.appcard--purple .appcard__copy,
.appcard--cream .appcard__copy {
  margin-left: 0;
  margin-top: 0.5rem;
  text-align: left;
}

.appcard h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.appcard--tall h3 {
  font-size: clamp(2rem, 2.8vw, 3.75rem);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.appcard p {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 1.1vw, 1.5rem);
  line-height: 1.45;
  opacity: 0.9;
}

.appcard__shot {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 58%;
  z-index: 1;
  pointer-events: none;
}

.appcard--tall .appcard__shot {
  width: 70%;
  right: -5%;
  bottom: -8%;
  left: auto;
}

.appcard__shot img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.appcard__shot--side {
  width: 42%;
  right: -6%;
  bottom: -18%;
}

/* ========== Contact ========== */
.contact {
  position: relative;
  margin-top: 6rem;
  padding: 4rem var(--pad) 6rem;
  min-height: 420px;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60rem 40rem at 12% 70%, rgba(185, 177, 255, 0.42), transparent 60%),
    radial-gradient(60rem 40rem at 88% 70%, rgba(185, 177, 255, 0.42), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(223, 206, 255, 0.35) 55%, rgba(203, 178, 255, 0.45));
  filter: blur(8px);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.7) 50%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.7) 50%, transparent 90%);
  z-index: 0;
}

.contact__aside {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  margin-left: auto;
  margin-right: clamp(1rem, 8vw, 8rem);
  color: rgba(87, 85, 56, 0.3);
  font-size: clamp(1rem, 1.4vw, 2rem);
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 3rem;
}

.contact__cap {
  text-transform: uppercase;
}

.contact__main {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact__email {
  display: inline-block;
  font-family: var(--font-mail);
  font-size: clamp(1.4rem, 3vw, 3.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.contact__huge {
  font-family: var(--font-ui);
  font-size: clamp(2.8rem, 12vw, 16rem);
  font-weight: 400;
  font-style: italic;
  text-transform: capitalize;
  line-height: 1;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.08) 35%, rgba(140, 140, 140, 0) 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

.site-footer {
  padding: 1.5rem var(--pad) 2.5rem;
  text-align: center;
  color: rgba(38, 38, 38, 0.45);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.watermark {
  display: none;
}

/* ========== Responsive H5 ========== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.5rem 1.5rem 3rem;
  }

  .hero__phones {
    order: -1;
    height: 380px;
    min-height: 320px;
    margin-bottom: 0.5rem;
  }

  .hero__content {
    max-width: none;
  }

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

  .fcard--edit,
  .fcard--qr,
  .fcard--photo,
  .fcard--secure,
  .fcard--pdf,
  .fcard--search {
    grid-column: span 1;
    min-height: 280px;
  }

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

  .apps__layout,
  .apps__row {
    grid-template-columns: 1fr;
  }

  .appcard--tall {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .nav__inner {
    justify-content: space-between;
    gap: 0.15rem;
    font-size: 0.9rem;
    padding: 0 0.85rem;
    min-height: 3.75rem;
  }

  .nav__link {
    padding: 0.7rem 0.2rem;
    gap: 0.2rem;
  }

  .nav__arrow {
    width: 1rem;
    height: 1rem;
  }

  .hero {
    margin: 0.75rem 0.75rem 0;
    padding: 1.75rem 1.15rem 2.25rem;
    border-radius: 1.25rem;
  }

  .hero__phones {
    height: 280px;
    min-height: 260px;
  }

  .phone {
    padding: 0.55rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .stats__item {
    padding: 1.25rem 1rem;
  }

  .features {
    margin: 2rem 0.75rem 0;
    padding: 2.5rem 1.15rem 3rem;
  }

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

  .showcase {
    margin: 1.5rem 0.75rem 0;
    padding: 2rem 1.15rem;
    min-height: auto;
  }

  .showcase__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .showcase__tab {
    min-width: 0;
    width: 100%;
    font-size: 0.85rem;
    height: 3rem;
    padding: 0 0.5rem;
  }

  .showcase__tab:last-child {
    grid-column: 1 / -1;
  }

  .apps {
    padding: 3rem 1rem 1rem;
  }

  .contact {
    margin-top: 3rem;
    padding: 2.5rem 1rem 4rem;
  }

  .contact__aside {
    margin-right: 0;
    max-width: none;
  }

  .contact__huge {
    white-space: normal;
    font-size: clamp(2.5rem, 14vw, 4.5rem);
    line-height: 1.05;
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: 2rem;
  }

  .phone--left {
    width: 38%;
  }
  .phone--center {
    width: 46%;
  }
  .phone--right {
    width: 38%;
  }
}
