:root {
  --primary: #103a74;
  --secondary: #1cb8d9;
  --accent: #17a9c8;
  --bg: #f6fafd;
  --text-dark: #18314f;
  --glass: rgba(255, 255, 255, 0.54);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --line: rgba(31, 78, 138, 0.18);
  --shadow-soft: 0 18px 40px rgba(16, 58, 116, 0.18);
  --shadow-card: 0 12px 26px rgba(19, 52, 90, 0.14);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
}

body.landing-body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.page-bg,
.page-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-bg {
  background-image: var(--landing-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.04);
  z-index: -3;
}

.page-overlay {
  background:
    linear-gradient(120deg, rgba(246, 250, 253, 0.88) 0%, rgba(246, 250, 253, 0.72) 42%, rgba(246, 250, 253, 0.52) 72%, rgba(246, 250, 253, 0.66) 100%),
    radial-gradient(600px 380px at 78% 18%, rgba(28, 184, 217, 0.14), transparent 70%),
    radial-gradient(560px 320px at 10% 85%, rgba(16, 58, 116, 0.12), transparent 70%);
  backdrop-filter: blur(2px);
  z-index: -2;
}

.landing-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(6px, 0.8vw, 14px) !important;
}

.landing-panel {
  width: min(1920px, calc(100vw - (clamp(6px, 0.8vw, 14px) * 2)));
  height: min(1080px, calc(100vh - (clamp(6px, 0.8vw, 14px) * 2)));
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.landing-panel > .row.position-relative {
  display: grid;
  grid-template-columns: minmax(360px, 40%) minmax(0, 60%);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  min-height: inherit;
  height: 100%;
}

.landing-panel > .row.position-relative > .left-pane,
.landing-panel > .row.position-relative > .right-pane {
  width: 100%;
  max-width: 100%;
}

.left-pane,
.right-pane {
  align-self: stretch;
}

.bottom-ribbon {
  grid-column: 1 / -1;
}

.left-pane,
.right-pane {
  position: relative;
  z-index: 2;
}

.right-pane {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.division-building {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 10px;
  bottom: 8px;
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  background-image:
    linear-gradient(180deg, rgba(246, 250, 253, 0.96) 0%, rgba(246, 250, 253, 0.9) 24%, rgba(246, 250, 253, 0.44) 48%, rgba(246, 250, 253, 0.08) 72%),
    linear-gradient(90deg, rgba(246, 250, 253, 0.95) 0%, rgba(246, 250, 253, 0.78) 35%, rgba(246, 250, 253, 0.16) 70%, rgba(246, 250, 253, 0) 100%),
    var(--landing-bg);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 188%;
  background-position: center, center, 92% 42%;
  filter: saturate(1.1) contrast(1.04);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(16, 58, 116, 0.25);
}

.brand-title {
  font-weight: 800;
  line-height: 1;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  color: var(--primary);
}

.brand-title span {
  color: var(--secondary);
}

.brand-subtitle {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #163b65;
  font-size: 0.95rem;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f6a88;
}

.hero-description {
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.48;
  color: #2b496a;
}

.feature-stack {
  display: grid;
  gap: 7px;
  max-width: 520px;
}

.feature-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(28, 184, 217, 0.26);
  border-radius: var(--radius-md);
  background: var(--glass);
  box-shadow: var(--shadow-card);
  padding: 8px 11px;
  backdrop-filter: blur(7px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(11, 61, 105, 0.2);
  border-color: rgba(23, 169, 200, 0.55);
}

.feature-card i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #178fb1 0%, #103a74 100%);
}

.feature-card h2 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 700;
  color: #15335b;
}

.feature-card p {
  margin: 1px 0 0;
  color: #35597d;
  font-size: 0.76rem;
}

.device-stage {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 4px;
  z-index: 3;
}

.laptop-mockup {
  width: min(760px, 92%);
  margin-inline: auto;
  position: relative;
  z-index: 3;
  --tablet-tilt: -1.8deg;
  transform: rotate(var(--tablet-tilt));
  transform-origin: center bottom;
}

.tablet-division-label {
  position: absolute;
  left: 50%;
  top: -56px;
  transform: translateX(-50%);
  z-index: 6;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 52, 99, 0.88);
  box-shadow: 0 10px 18px rgba(10, 40, 78, 0.24);
  color: #f2f8ff;
  text-align: center;
  min-width: 0;
  max-width: calc(100% - 32px);
  backdrop-filter: blur(6px);
}

.tablet-division-label strong {
  display: inline-block;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.laptop-top {
  height: 14px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #2c2f38, #0f1114);
}

.laptop-screen {
  background: #0d1017;
  padding: 10px 10px 0;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.laptop-base {
  height: 16px;
  width: 94%;
  margin: 0 auto;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #d9dce3, #a9aeb8);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
  background: #f2f6fb;
  border-radius: 8px;
  overflow: hidden;
}

.dashboard-sidebar {
  background: linear-gradient(180deg, #113a73 0%, #0d2c57 100%);
  color: #dcecff;
  padding: 10px;
}

.sidebar-brand {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.dashboard-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.dashboard-sidebar li {
  font-size: .74rem;
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-sidebar li.active {
  background: rgba(28, 184, 217, 0.26);
}

.dashboard-main {
  padding: 10px;
}

.glass-card {
  border-radius: 10px;
  border: 1px solid rgba(16, 58, 116, 0.14);
  background: var(--glass-strong);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 14px rgba(17, 46, 82, 0.08);
  padding: 9px;
}

.profile-strip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1cb8d9, #103a74);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
}

.profile-strip h3 {
  margin: 0;
  font-size: .92rem;
  color: #102f57;
}

.profile-strip p {
  margin: 0;
  font-size: .7rem;
  color: #47688b;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8px;
}

.dashboard-grid h4 {
  margin: 0 0 6px;
  font-size: .76rem;
  color: #214b78;
  font-weight: 700;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.chip-grid span {
  font-size: .68rem;
  border: 1px solid rgba(16, 58, 116, 0.14);
  border-radius: 6px;
  padding: 4px 6px;
  color: #254f7b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.mini-list li {
  font-size: .67rem;
  color: #33567e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-mockup {
  width: 164px;
  height: 330px;
  border-radius: 28px;
  background: #0e1322;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 30px rgba(8, 27, 53, 0.35);
  position: absolute;
  right: 10px;
  bottom: 6px;
  z-index: 4;
  padding: 8px;
}

.phone-notch {
  width: 72px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #0a0e18;
  margin: 0 auto;
}

.phone-ui {
  height: calc(100% - 22px);
  border-radius: 18px;
  background: #f5f9fe;
  padding: 10px 8px;
}

.phone-ui header {
  font-size: .75rem;
  color: #173f71;
  margin-bottom: 8px;
}

.phone-card {
  border-radius: 10px;
  border: 1px solid rgba(22, 63, 113, 0.16);
  background: #fff;
  padding: 7px;
  margin-bottom: 7px;
}

.phone-card h4 {
  margin: 0 0 5px;
  font-size: .67rem;
  color: #173f71;
}

.phone-card p {
  margin: 0;
  font-size: .64rem;
  color: #3a5d84;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.phone-grid span {
  font-size: .58rem;
  color: #35597e;
  border-radius: 6px;
  border: 1px solid rgba(18, 56, 98, .12);
  padding: 4px;
  text-align: center;
}

.bottom-ribbon {
  margin: 1rem 1rem .55rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(115deg, #0f3e8f 0%, #149bc0 38%, #0c6d8e 100%);
  background-size: 180% 180%;
  animation: gradientMove 7s ease infinite;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow: hidden;
  align-self: start;
}

.ribbon-brand {
  flex: 1.5;
  min-width: 260px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4fcff;
  background: rgba(10, 48, 100, 0.62);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ribbon-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.86);
}

.ribbon-brand strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 800;
}

.ribbon-brand strong span {
  color: #33d6f1;
}

.ribbon-brand strong .brand-c {
  display: inline-block;
  font-size: 1.18em;
  font-style: italic;
  line-height: 1;
}

.ribbon-brand small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.95;
}

.ribbon-cta,
.ribbon-item {
  padding: 12px 14px;
  color: #f7fdff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ribbon-cta {
  flex: 2.2;
}

.ribbon-item {
  flex: 1;
  min-width: 145px;
}

.ribbon-login {
  text-decoration: none;
  background: rgba(9, 48, 98, 0.45);
  font-weight: 700;
}

.ribbon-login:hover {
  background: rgba(9, 48, 98, 0.62);
}

.ribbon-cta {
  background: rgba(15, 43, 89, 0.46);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ribbon-cta i,
.ribbon-item i {
  font-size: 1.15rem;
}

.ribbon-cta strong {
  display: block;
  font-size: 1rem;
}

.ribbon-cta span {
  font-size: .78rem;
  opacity: .92;
}

.ribbon-item {
  justify-content: center;
  font-weight: 600;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.fade-up {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp .75s ease forwards;
  animation-delay: var(--delay, 0s);
}

.floating-laptop {
  animation: floatLaptop 4.8s ease-in-out infinite;
}

.floating-phone {
  animation: floatPhone 4.1s ease-in-out infinite;
}

.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple .65s linear;
  background-color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.landing-login-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.landing-login-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.landing-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 46, 0.56);
  backdrop-filter: blur(4px);
}

.landing-login-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(460px, calc(100vw - 24px));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.93));
  box-shadow: 0 24px 46px rgba(7, 28, 57, 0.34);
  padding: 18px;
  transition: transform .22s ease;
}

.landing-login-modal.is-open .landing-login-card {
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 58, 116, 0.1);
  color: #194271;
}

.modal-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.modal-brand-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 8px 16px rgba(14, 49, 93, 0.2);
}

.modal-brand-row h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #113764;
  font-weight: 800;
}

.modal-brand-row p {
  margin: 0;
  color: #3d607f;
  font-size: .85rem;
}

.modal-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8d2b23;
  border: 1px solid rgba(179, 63, 49, 0.28);
  background: rgba(245, 118, 102, 0.1);
  border-radius: 10px;
  padding: 9px 10px;
  margin-bottom: 12px;
  font-size: .88rem;
}

.modal-login-form {
  display: grid;
  gap: 9px;
}

.modal-login-form label {
  font-size: .82rem;
  color: #20466f;
  font-weight: 700;
}

.modal-login-form input {
  height: 44px;
  border-radius: 11px;
  border: 1px solid rgba(24, 81, 133, 0.2);
  padding: 0 12px;
  font-size: .92rem;
  color: #17395f;
  background: rgba(255, 255, 255, 0.9);
}

.modal-login-form input:focus {
  outline: none;
  border-color: rgba(20, 146, 182, 0.8);
  box-shadow: 0 0 0 3px rgba(22, 166, 201, 0.2);
}

.turnstile-wrap {
  margin-top: 6px;
  margin-bottom: 4px;
  min-height: 70px;
  border: 1px dashed rgba(20, 76, 129, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

#landingTurnstile {
  width: 100%;
  display: flex;
  justify-content: center;
}

.turnstile-note {
  margin: 2px 2px 0;
  font-size: .74rem;
  color: #4a6889;
  line-height: 1.35;
}

.modal-submit-btn {
  margin-top: 6px;
  height: 45px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #145cab 0%, #1895bb 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: .01em;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLaptop {
  0%,
  100% { transform: translateY(0) rotate(var(--tablet-tilt)); }
  50% { transform: translateY(-10px) rotate(var(--tablet-tilt)); }
}

@keyframes floatPhone {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1399.98px) {
  .landing-panel > .row.position-relative {
    grid-template-columns: minmax(320px, 41%) minmax(0, 59%);
  }

  .device-stage {
    min-height: 430px;
  }

  .phone-mockup {
    width: 150px;
    height: 304px;
    right: 2px;
  }

  .laptop-mockup {
    width: min(670px, 92%);
  }

  .tablet-division-label {
    top: -48px;
    padding: 7px 12px;
  }
}

@media (max-height: 920px) and (min-width: 992px) {
  .landing-shell {
    justify-content: flex-start;
    padding: 8px !important;
  }

  .landing-panel {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 16px);
    aspect-ratio: auto;
  }

  .landing-panel > .row.position-relative {
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .left-pane,
  .right-pane {
    padding-top: 1rem !important;
    padding-bottom: .75rem !important;
  }

  .hero-description {
    margin-bottom: .6rem;
  }

  .feature-stack {
    gap: 8px;
  }

  .feature-card {
    padding: 8px 12px;
  }

  .device-stage {
    min-height: 390px;
  }

  .phone-mockup {
    width: 150px;
    height: 300px;
  }

  .bottom-ribbon {
    margin-top: .25rem;
  }
}

@media (max-width: 1199.98px) {
  .landing-shell {
    padding: 8px !important;
  }

  .landing-panel {
    height: min(1080px, calc(100vh - 16px));
  }

  .brand-title {
    font-size: clamp(1.8rem, 4.4vw, 2.7rem);
  }

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

  .feature-card i {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .dashboard-shell {
    grid-template-columns: 150px 1fr;
  }

  .phone-mockup {
    position: static;
    margin-left: auto;
    margin-top: 12px;
  }

  .bottom-ribbon {
    flex-wrap: wrap;
  }

  .ribbon-brand {
    flex: 1 1 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ribbon-cta {
    flex: 1 1 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ribbon-item {
    flex: 1 1 calc(33.33% - 1px);
  }
}

@media (max-width: 991.98px) {
  .landing-panel > .row.position-relative {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .landing-panel {
    background: rgba(255, 255, 255, 0.72);
  }

  .device-stage {
    min-height: auto;
  }

  .laptop-mockup {
    width: 100%;
    --tablet-tilt: -1deg;
  }

  .tablet-division-label {
    top: -44px;
    max-width: calc(100% - 24px);
  }

  .phone-mockup {
    width: 165px;
    height: 330px;
    margin-right: 0;
  }

  .right-pane {
    display: block;
    padding-top: .25rem !important;
  }

  .division-building {
    inset: 8px;
    background-size: 100% 100%, 100% 100%, 225%;
    background-position: center, center, 88% 40%;
    opacity: 0.6;
  }
}

@media (max-width: 767.98px) {
  .landing-shell {
    justify-content: flex-start;
    padding: 6px !important;
  }

  .landing-panel {
    border-radius: 10px;
    width: calc(100vw - 12px);
    height: auto;
    min-height: 100dvh;
    aspect-ratio: auto;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-description {
    font-size: .9rem;
    line-height: 1.6;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .tablet-division-label {
    top: -34px;
    padding: 6px 10px;
  }

  .tablet-division-label strong {
    font-size: 0.76rem;
    letter-spacing: 0.05em;
  }

  .dashboard-sidebar {
    display: none;
  }

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

  .bottom-ribbon {
    margin: .75rem;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ribbon-brand {
    grid-column: 1 / -1;
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ribbon-brand strong {
    font-size: 1.2rem;
  }

  .ribbon-brand small {
    letter-spacing: 0.14em;
  }

  .ribbon-item {
    justify-content: flex-start;
    min-width: 0;
    flex: unset;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ribbon-item:nth-child(2),
  .ribbon-item:nth-child(3),
  .ribbon-item:nth-child(4) {
    border-top: 0;
  }
}

@media (max-width: 575.98px) {
  .feature-card h2 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: .84rem;
  }

  .phone-mockup {
    width: 145px;
    height: 292px;
  }
}
