:root {
  --bg: #f5f8fc;
  --surface: #fbfdff;
  --surface-strong: #ffffff;
  --surface-muted: #eef4fa;
  --text: #182734;
  --text-soft: #607282;
  --line: #dde6f0;
  --accent: #4b79c7;
  --accent-deep: #305fa9;
  --accent-soft: #dde9fb;
  --sage: #dbe7e8;
  --shadow: 0 16px 36px rgba(28, 55, 90, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 181, 197, 0.18), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(130, 177, 240, 0.16), transparent 18%),
    radial-gradient(circle at 20% 72%, rgba(196, 222, 244, 0.18), transparent 20%),
    radial-gradient(circle at 82% 78%, rgba(255, 208, 216, 0.14), transparent 18%),
    radial-gradient(circle at top left, rgba(75, 121, 199, 0.12), transparent 24%),
    radial-gradient(circle at right 18% top 10%, rgba(103, 155, 225, 0.12), transparent 18%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 42%, #eef4fa 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

body::before {
  top: 140px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 42% 58% 60% 40%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 203, 213, 0.22), transparent 52%),
    linear-gradient(145deg, rgba(255, 226, 232, 0.42), rgba(208, 227, 247, 0.18));
  transform: rotate(-16deg);
}

body::after {
  right: -100px;
  bottom: 80px;
  width: 340px;
  height: 340px;
  border-radius: 58% 42% 46% 54%;
  background:
    radial-gradient(circle at 30% 30%, rgba(124, 170, 231, 0.2), transparent 50%),
    linear-gradient(145deg, rgba(223, 236, 249, 0.42), rgba(255, 219, 228, 0.16));
  transform: rotate(12deg);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.top-atmosphere {
  position: absolute;
  top: 0;
  left: -48px;
  right: -48px;
  height: 780px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.top-atmosphere::before,
.top-atmosphere::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.85;
}

.top-atmosphere::before {
  top: 48px;
  left: 4%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 193, 206, 0.22), rgba(255, 193, 206, 0));
}

.top-atmosphere::after {
  top: 96px;
  right: 8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(111, 164, 236, 0.22), rgba(111, 164, 236, 0));
}

.particle-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 8px max(18px, calc((100vw - var(--max-width)) / 2 + 18px));
  background: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(145, 188, 242, 0.7);
  box-shadow: 0 20px 48px rgba(85, 135, 207, 0.18);
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  position: relative;
  top: 6px;
  margin-bottom: -20px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
}

.brand-mark img {
  display: block;
  width: auto;
  height: 72px;
}

.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;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-self: center;
}

.site-nav a {
  position: relative;
  color: #7d5bd6;
  text-decoration: none;
  font-weight: 600;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #4b79c7;
  transform: translateY(-3px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0 40px;
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: #4d6b93;
}

h1,
h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 8.4vw, 6.8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

p {
  line-height: 1.65;
}

.hero-text,
.section-heading p,
.cta-copy p {
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-text {
  max-width: 34rem;
  font-size: 1.14rem;
  line-height: 1.75;
}

.hero-note {
  max-width: 33rem;
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid #d6e2ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-soft);
  line-height: 1.7;
  box-shadow: 0 18px 34px rgba(28, 55, 90, 0.05);
}

.hero-note strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fffaf8;
  padding-inline: 26px;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
  box-shadow: 0 10px 22px rgba(48, 95, 169, 0.16);
}

.button-secondary {
  color: var(--text);
  background: var(--surface-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #c9d8e8;
  background: #f8fbff;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.proof-strip > div,
.addon-card,
.form-note {
  color: var(--text-soft);
}

.hero-points li {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  padding: 30px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 199, 211, 0.18), transparent 20%),
    radial-gradient(circle at 80% 12%, rgba(75, 121, 199, 0.14), transparent 26%),
    radial-gradient(circle at 68% 78%, rgba(255, 217, 224, 0.16), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #ecf3fb 100%);
  box-shadow:
    0 28px 56px rgba(28, 55, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mockup-scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.phone-arm {
  position: absolute;
  right: -4px;
  bottom: 24px;
  width: 182px;
  height: 250px;
  border-radius: 90px 80px 40px 110px;
  background:
    linear-gradient(160deg, #f3c2a6 0%, #e8ab8d 48%, #cf8968 100%);
  box-shadow:
    inset -14px -18px 30px rgba(124, 64, 36, 0.18),
    inset 14px 18px 24px rgba(255, 233, 220, 0.28),
    0 28px 46px rgba(119, 73, 44, 0.16);
  transform: rotate(-18deg);
  transform-origin: bottom center;
}

.phone-hand {
  position: absolute;
  right: 18px;
  bottom: 62px;
  width: 192px;
  height: 240px;
  pointer-events: none;
}

.phone-hand .palm,
.phone-hand .finger {
  position: absolute;
  display: block;
  background: linear-gradient(165deg, #f6c9ad 0%, #eab092 55%, #d38b69 100%);
  box-shadow:
    inset -10px -12px 22px rgba(136, 71, 38, 0.16),
    inset 8px 8px 14px rgba(255, 236, 226, 0.22);
}

.phone-hand .palm {
  right: 0;
  bottom: 0;
  width: 122px;
  height: 150px;
  border-radius: 44px 44px 28px 54px;
  transform: rotate(-10deg);
}

.phone-hand .finger {
  width: 34px;
  border-radius: 22px;
}

.phone-hand .finger-one {
  right: 10px;
  bottom: 84px;
  height: 128px;
  transform: rotate(-7deg);
}

.phone-hand .finger-two {
  right: 42px;
  bottom: 94px;
  height: 134px;
  transform: rotate(-3deg);
}

.phone-hand .finger-three {
  right: 74px;
  bottom: 94px;
  height: 122px;
  transform: rotate(2deg);
}

.phone-hand .thumb {
  right: 102px;
  bottom: 26px;
  width: 42px;
  height: 92px;
  border-radius: 26px;
  transform: rotate(36deg);
}

.tablet-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
  padding: 12px;
  border-radius: 42px;
  background:
    linear-gradient(150deg, #263244 0%, #0f1823 46%, #05080d 100%);
  box-shadow:
    0 42px 80px rgba(15, 27, 41, 0.34),
    0 10px 18px rgba(11, 18, 27, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 10px rgba(0, 0, 0, 0.28);
  transform: rotate(8deg);
}

.tablet-frame::before,
.tablet-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tablet-frame::before {
  inset: 12px 14px auto auto;
  width: 86px;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  filter: blur(0.4px);
}

.tablet-frame::after {
  left: 22px;
  right: 22px;
  bottom: -12px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11, 20, 30, 0.24);
  filter: blur(16px);
}

.tablet-camera {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 112px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 50%, #2f4258 0 2px, transparent 3px),
    radial-gradient(circle at 72% 50%, rgba(90, 110, 132, 0.6) 0 3px, transparent 4px),
    linear-gradient(180deg, #0b121b 0%, #151f2c 100%);
  transform: translateX(-50%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -1px 2px rgba(0, 0, 0, 0.42);
}

.tablet-screen {
  position: relative;
  min-height: 568px;
  padding: 52px 12px 20px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(119, 165, 231, 0.18), transparent 22%),
    radial-gradient(circle at 22% 8%, rgba(255, 220, 228, 0.08), transparent 16%),
    linear-gradient(180deg, #111a24 0%, #0c141c 100%);
  box-shadow:
    inset 0 0 0 1px rgba(92, 111, 132, 0.65),
    inset 0 12px 36px rgba(255, 255, 255, 0.03),
    inset 0 -16px 28px rgba(3, 8, 14, 0.34);
  overflow: hidden;
}

.device {
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 8px 6px 0;
  border-radius: 24px;
  background: transparent;
}

.device-header,
.hug-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.device-header {
  color: #96acc4;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 2px 6px 0;
  letter-spacing: 0.01em;
}

.status-card,
.hug-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(22, 34, 46, 0.96), rgba(17, 27, 38, 0.96));
  border: 1px solid rgba(75, 96, 118, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.status-title,
.status-kicker,
.mini-label,
.message-name,
.message-body,
.alert-title,
.alert-body {
  margin: 0;
}

.status-title,
.mini-label {
  font-weight: 800;
  color: #f3f8fd;
}

.status-kicker {
  margin-bottom: 8px;
  color: #7f9cbb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.status-grid button {
  min-height: 70px;
  border: 1px solid rgba(95, 120, 147, 0.52);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(27, 42, 58, 0.96), rgba(20, 31, 44, 0.96));
  color: #ecf4fb;
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.status-grid button:hover,
.status-grid button:focus-visible {
  background: linear-gradient(180deg, rgba(34, 52, 72, 0.98), rgba(25, 38, 53, 0.98));
  border-color: rgba(126, 157, 191, 0.7);
}

.hug-card {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(18, 29, 40, 0.98), rgba(14, 22, 31, 0.98));
}

.family-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(78, 104, 131, 0.46);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 33, 46, 0.94), rgba(16, 25, 35, 0.94));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.alert-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: #7bb1ff;
  box-shadow: 0 0 0 6px rgba(123, 177, 255, 0.12);
  flex-shrink: 0;
}

.alert-title {
  color: #edf5fc;
  font-size: 0.92rem;
  font-weight: 800;
}

.alert-body {
  color: #8ea4bb;
  font-size: 0.9rem;
  line-height: 1.55;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(73, 122, 194, 0.22);
  color: #cbe0fb;
  font-weight: 700;
  flex-shrink: 0;
}

.message-name {
  font-weight: 800;
  color: #edf5fc;
}

.message-body {
  color: #8ea4bb;
  font-size: 0.94rem;
}

.muted {
  opacity: 0.82;
}

.tablet-home-indicator {
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 116px;
  height: 5px;
  border-radius: 999px;
  background: rgba(232, 240, 248, 0.58);
  transform: translateX(-50%);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.86));
  box-shadow: 0 20px 36px rgba(28, 55, 90, 0.05);
}

.proof-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.proof-strip strong {
  display: block;
  max-width: 16ch;
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.section {
  padding: 92px 0 0;
  position: relative;
}

.section.alt {
  position: relative;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 52rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.list-card,
.price-card,
.quote-card,
.criteria-card,
.waitlist-form,
.addon-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94));
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.feature-card h3 {
  font-size: 1.2rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.feature-card p,
.price-card p,
.quote-meta,
.criteria-card li,
.list-card li {
  color: var(--text-soft);
}

.mvp-layout,
.interview-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.list-card ul,
.price-card ul,
.criteria-card ul {
  padding-left: 20px;
  margin: 0;
}

.list-card li,
.price-card li,
.criteria-card li {
  margin-bottom: 10px;
}

.muted-card {
  background:
    linear-gradient(180deg, rgba(240, 246, 252, 0.96), rgba(234, 241, 248, 0.96));
}

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

.price-card.featured {
  border-color: #bfd5f0;
  background: linear-gradient(180deg, #f9fbff 0%, #f2f7fd 100%);
  box-shadow: 0 22px 46px rgba(45, 86, 140, 0.09);
}

.tier {
  margin: 0 0 8px;
  color: var(--accent-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.price-card h3 {
  font-size: 2.2rem;
}

.price-card h3 span {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 700;
}

.addon-card {
  margin-top: 18px;
}

.quote-card {
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(255, 206, 216, 0.16), transparent 24%),
    linear-gradient(180deg, #eff6ff 0%, #e8f1fb 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 203, 213, 0.14), transparent 68%);
  pointer-events: none;
}

.quote {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.criteria-card {
  display: grid;
  gap: 18px;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 88px;
}

.waitlist-form {
  display: grid;
  gap: 16px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  outline: 2px solid rgba(207, 130, 111, 0.18);
  border-color: var(--accent);
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto 28px;
  padding: 18px 22px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--text-soft);
  font-size: 11px;
}

@media (max-width: 980px) {
  .hero,
  .cta-section,
  .grid-three,
  .pricing-grid,
  .mvp-layout,
  .interview-layout,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  body::before,
  body::after {
    opacity: 0.6;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .top-atmosphere {
    left: -18px;
    right: -18px;
    height: 700px;
  }

  .site-header {
    top: 0;
    margin-top: 0;
    padding: 8px 18px;
  }

  .brand-mark {
    min-height: 0;
    padding: 0;
  }

  .brand-mark img {
    height: 62px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .tablet-frame {
    width: min(100%, 300px);
    padding: 10px;
    border-radius: 34px;
    transform: rotate(4deg);
  }

  .tablet-screen {
    min-height: 520px;
    padding: 48px 10px 18px;
  }

  .mockup-scene {
    min-height: 530px;
  }

  .phone-arm {
    right: -22px;
    bottom: 18px;
    width: 150px;
    height: 210px;
  }

  .phone-hand {
    right: 4px;
    bottom: 48px;
    width: 160px;
    height: 210px;
  }

  .phone-hand .palm {
    width: 102px;
    height: 128px;
  }

  .phone-hand .finger {
    width: 28px;
  }

  .phone-hand .finger-one,
  .phone-hand .finger-two,
  .phone-hand .finger-three {
    height: 104px;
  }

  .phone-hand .thumb {
    width: 36px;
    height: 78px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
