:root {
  --black: #050607;
  --ink: #0a0d0f;
  --charcoal: #252b2f;
  --charcoal-2: #30363a;
  --panel: rgba(8, 11, 13, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f4f7f7;
  --muted: #b8c0c3;
  --blue: #67e0df;
  --blue-2: #32c9c8;
}

* {
  box-sizing: border-box;
}

.inquiry-hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 14%, rgba(103, 224, 223, 0.07), transparent 28rem),
    linear-gradient(110deg, #050607 0%, #111518 52%, #1f2427 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 20px 16px 36px;
  display: grid;
  gap: 28px;
  align-items: center;
}

.phone-frame,
.dashboard-phone {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.phone-frame {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  border-radius: 34px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  scrollbar-width: none;
}

.phone-frame::-webkit-scrollbar {
  display: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 116px;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 0;
  background: #030405;
}

.brand img,
.footer-bar img,
.dashboard-phone header img {
  display: block;
  width: 128px;
  height: auto;
  filter: saturate(1.05) contrast(1.05);
}

.topbar .brand {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
}

.topbar .brand img {
  width: 210px;
  filter: none;
}

.home-logo-video {
  display: block;
  width: 210px;
  height: auto;
  background: transparent;
}

.menu-button {
  width: 38px;
  height: 34px;
  display: grid;
  gap: 5px;
  place-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.site-menu {
  position: relative;
}

.site-menu summary {
  list-style: none;
}

.site-menu summary::-webkit-details-marker {
  display: none;
}

.site-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 30;
  min-width: 190px;
  padding: 8px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.site-menu-panel a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-menu-panel a:hover,
.site-menu-panel a:focus-visible {
  background: var(--blue);
  color: #050607;
}

.hero {
  position: sticky;
  top: 116px;
  z-index: 1;
  min-height: 410px;
  padding: 22px 30px 80px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94) 0 48%, rgba(5, 6, 7, 0.52) 100%),
    var(--black);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 275px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 12vw, 4.05rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue);
}

.accent-line {
  width: 72px;
  height: 4px;
  margin: 24px 0 20px;
  background: var(--blue);
  border-radius: 999px;
}

.hero p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 6px;
  border: 1px solid var(--blue-2);
  font-weight: 700;
  letter-spacing: 0;
}

.button span {
  font-size: 1.45rem;
}

.button-primary {
  background: linear-gradient(135deg, #75e6e6, #35cbca);
  color: #061011;
  box-shadow: 0 14px 30px rgba(50, 201, 200, 0.16);
}

.button-outline {
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
}

.device-art {
  position: absolute;
  right: -72px;
  top: 66px;
  width: 245px;
  height: 295px;
  opacity: 0.95;
}

.browser-card,
.mobile-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(160deg, rgba(20, 25, 28, 0.88), rgba(5, 6, 7, 0.88));
  box-shadow: inset 0 0 0 1px rgba(103, 224, 223, 0.04);
}

.browser-card {
  inset: 0 0 auto auto;
  width: 195px;
  height: 235px;
  transform: skewY(-6deg);
  border-radius: 12px;
  padding: 24px;
}

.browser-card i {
  float: left;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.browser-card span,
.mobile-card b {
  display: block;
  height: 4px;
  margin-top: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.28);
}

.browser-card span:nth-of-type(2),
.browser-card span:nth-of-type(4),
.mobile-card b:nth-of-type(2) {
  width: 54%;
  background: var(--blue-2);
}

.mobile-card {
  right: 42px;
  top: 84px;
  width: 114px;
  height: 185px;
  border-radius: 18px;
  padding: 28px 16px;
}

.image-mark {
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.16) 51%),
    radial-gradient(circle at 24% 28%, var(--blue) 0 9px, transparent 10px);
}

.curve-divider {
  position: relative;
  z-index: 4;
  height: 178px;
  margin-top: -178px;
  background:
    linear-gradient(rgba(36, 42, 46, 0.72), rgba(36, 42, 46, 0.72)),
    url("concrete.jpg") center / cover;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  clip-path: path("M 0 148 C 128 160 238 134 338 54 C 374 25 401 8 430 0 L 430 178 L 0 178 Z");
}

.content-zone {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding: 22px 28px 24px;
  background:
    linear-gradient(rgba(39, 45, 49, 0.78), rgba(39, 45, 49, 0.78)),
    url("concrete.jpg") center top / cover;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-heading h2,
.contact-card h2,
.dashboard-body h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.section-heading a {
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-list {
  display: grid;
  gap: 10px;
}

.portfolio-link-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(9, 12, 14, 0.86), rgba(16, 21, 24, 0.64));
}

.portfolio-link-card h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.portfolio-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.work-card,
.client-login,
.contact-card,
.latest-card {
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(9, 12, 14, 0.86), rgba(16, 21, 24, 0.64));
  border-radius: 8px;
}

.work-card {
  min-height: 96px;
  padding: 10px;
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
}

.work-mark {
  width: 106px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  text-align: center;
  line-height: 1.08;
  font-weight: 900;
}

.work-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-mark-cream {
  background: #f3eadc;
  color: #9a1518;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.work-mark-dark {
  background: #030506;
  color: var(--text);
  font-size: 1.6rem;
  text-transform: lowercase;
}

.work-mark-dark span::first-letter {
  color: var(--text);
}

.work-mark-silver {
  background: linear-gradient(145deg, #f8f8f6, #d2d6d5);
  color: #101416;
  font-family: Georgia, serif;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0 0 7px;
  font-size: 1.06rem;
  line-height: 1.2;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.card-arrow {
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.client-login,
.contact-card {
  margin-top: 16px;
  padding: 14px;
}

.action-grid {
  display: grid;
}

.lock-icon,
.lock-mini,
.user-icon,
.account-glyph {
  display: inline-block;
  border: 2px solid var(--blue);
}

.lock-icon {
  width: 18px;
  height: 15px;
  border-radius: 3px;
}

.lock-icon::before,
.lock-mini::before {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  margin: -10px auto 0;
  border: 2px solid var(--blue);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.login-row {
  min-height: 64px;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: 50px 1fr 28px 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.22);
}

.user-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, transparent 0 6px, var(--blue) 7px 8px, transparent 9px),
    radial-gradient(ellipse at 50% 76%, transparent 0 12px, var(--blue) 13px 14px, transparent 15px);
}

.lock-mini {
  width: 18px;
  height: 16px;
  border-radius: 3px;
}

.contact-card p {
  margin: 8px 0 14px;
  color: var(--muted);
}

.notice {
  color: var(--blue) !important;
}

form {
  display: grid;
  gap: 8px;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

input,
select {
  min-height: 40px;
  padding: 0 14px;
}

textarea {
  padding: 11px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(244, 247, 247, 0.92);
  opacity: 1;
}

/* Public index template */
.index-public {
  background:
    radial-gradient(circle at 86% 10%, rgba(103, 224, 223, 0.1), transparent 26rem),
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.06), transparent 18rem),
    linear-gradient(120deg, #050607 0%, #101417 48%, #1f2427 100%);
}

.public-shell {
  width: min(100%, 1220px);
}

.public-frame {
  background: #050607;
}

.public-topbar {
  z-index: 20;
}

.public-hero {
  position: relative;
  overflow: hidden;
  padding: 26px 30px 34px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.62)),
    url("hero-keyboard.png") center / cover no-repeat;
}

.public-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, #050607, rgba(5, 6, 7, 0));
  pointer-events: none;
}

.public-hero-copy,
.public-demo-panel {
  position: relative;
  z-index: 1;
}

.public-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.public-hero h1,
.public-section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.public-hero h1 {
  max-width: 10ch;
  font-size: clamp(2.55rem, 13vw, 4.25rem);
}

.public-hero-copy > p:not(.public-kicker),
.public-copy-block p,
.public-section-heading + p,
.cta-copy p,
.system-card p,
.reason-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.public-hero-copy > p:not(.public-kicker) {
  margin: 18px 0 24px;
  max-width: 310px;
  font-size: 1rem;
}

.public-actions {
  margin-bottom: 24px;
}

.public-demo-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(103, 224, 223, 0.3);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(9, 12, 14, 0.9), rgba(25, 32, 35, 0.74));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.demo-status,
.demo-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px rgba(103, 224, 223, 0.75);
}

.demo-status b {
  color: var(--text);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.demo-metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
}

.demo-metric span,
.demo-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.demo-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 2.3rem;
  line-height: 1;
}

.demo-list {
  display: grid;
  gap: 8px;
}

.demo-list p {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.demo-list b {
  font-size: 0.88rem;
}

.public-content {
  display: grid;
  gap: 18px;
  padding: 22px 28px 26px;
  background:
    linear-gradient(rgba(39, 45, 49, 0.82), rgba(39, 45, 49, 0.82)),
    url("concrete.jpg") center top / cover;
}

.public-section {
  display: grid;
  gap: 16px;
}

.public-section-heading {
  max-width: 680px;
}

.public-section h2 {
  font-size: clamp(1.65rem, 8vw, 2.5rem);
}

.need-grid,
.system-grid,
.reason-grid {
  display: grid;
  gap: 10px;
}

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

.need-grid span,
.system-card,
.reason-grid article,
.process-track li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(9, 12, 14, 0.88), rgba(16, 21, 24, 0.66));
}

.need-grid span {
  min-height: 48px;
  padding: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  font-size: clamp(0.78rem, 3.8vw, 0.92rem);
  font-weight: 800;
  line-height: 1.15;
}

.public-copy-block {
  display: grid;
  gap: 12px;
}

.public-copy-block p,
.cta-copy p {
  margin: 0;
}

.reason-grid article,
.system-card {
  padding: 16px;
}

.reason-grid h3,
.system-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.reason-grid p,
.system-card p {
  margin: 0;
  font-size: 0.9rem;
}

.process-track {
  counter-reset: public-process;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.process-track li {
  counter-increment: public-process;
  min-height: 58px;
  padding: 12px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
}

.process-track span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #050607;
}

.process-track span::before {
  content: counter(public-process);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-track b {
  font-size: 1rem;
}

.final-cta {
  padding: 18px;
  border: 1px solid rgba(103, 224, 223, 0.32);
  border-radius: 10px;
  background: rgba(5, 6, 7, 0.46);
}

.public-contact-card {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.public-contact-card label:nth-of-type(4),
.public-contact-card button {
  grid-column: 1 / -1;
}

.footer-bar {
  min-height: 58px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #030405;
}

.footer-bar img {
  width: 84px;
}

.footer-bar nav {
  align-items: center;
  display: flex;
  gap: 12px;
  color: var(--text);
  font-size: 0.86rem;
}

.admin-eye-link {
  display: inline-flex;
  align-items: center;
}

.admin-eye-link img {
  width: 14px;
  height: 14px;
  display: block;
}

.dashboard-phone {
  display: none;
  width: min(100%, 330px);
  border-radius: 32px;
}

.dashboard-phone header {
  height: 72px;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.dashboard-phone header img {
  width: 96px;
}

.account-glyph {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.dashboard-body {
  padding: 26px 24px;
  background:
    linear-gradient(rgba(37, 43, 47, 0.8), rgba(37, 43, 47, 0.8)),
    url("concrete.jpg") center / cover;
}

.dashboard-phone .dashboard-body > h2 {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
}

.client-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(103, 224, 223, 0.11), transparent 24rem),
    #050607;
}

.client-shell {
  min-height: 100vh;
  padding: 18px 14px;
  display: grid;
  place-items: center;
}

.client-dashboard {
  position: relative;
  width: min(100%, 390px);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: var(--black);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.client-dashboard header {
  min-height: 82px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #050607;
}

.client-dashboard header img {
  width: 118px;
}

.client-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.client-header-menu {
  position: relative;
}

.client-header-menu summary {
  cursor: pointer;
  list-style: none;
}

.client-header-menu summary::-webkit-details-marker {
  display: none;
}

.client-header-menu[open] .client-chevron {
  transform: rotate(225deg);
  margin-top: 4px;
}

.client-header-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 20;
  min-width: 154px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.client-header-dropdown a,
.client-header-dropdown span {
  min-height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.client-header-dropdown a {
  border: 1px solid rgba(103, 224, 223, 0.55);
}

.client-header-dropdown a:hover,
.client-header-dropdown a:focus-visible {
  background: var(--blue);
  color: #050607;
}

.client-header-dropdown span {
  color: var(--muted);
}

.client-user-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
}

.client-user-icon::before,
.client-user-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid currentColor;
}

.client-user-icon::before {
  top: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.client-user-icon::after {
  bottom: 1px;
  width: 17px;
  height: 10px;
  border-radius: 12px 12px 4px 4px;
  border-bottom-width: 2px;
}

.client-chevron {
  width: 9px;
  height: 9px;
  display: block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

.back-link {
  color: var(--blue);
  font-weight: 800;
}

.client-dashboard .dashboard-body h1 {
  position: relative;
  padding-left: 22px;
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.client-dashboard .dashboard-body h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 2px;
  background: var(--blue);
}

.client-dashboard .dashboard-body select {
  width: auto;
  min-width: 168px;
  margin-bottom: 0;
  padding-right: 34px;
  color: var(--text);
  background-color: rgba(5, 6, 7, 0.28);
}

.client-project-name {
  width: fit-content;
  margin: 0 0 4px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--text);
  background: rgba(5, 6, 7, 0.28);
  font-size: 0.9rem;
}

.client-dashboard .timeline h2 {
  margin: 0 0 4px;
  font-size: 1.04rem;
}

.portfolio-frame .topbar {
  z-index: 10;
}

.portfolio-hero {
  padding: 34px 30px 44px;
  background: #050607;
}

.work-profile-hero {
  padding: 34px 30px 44px;
  background: #050607;
}

.portfolio-hero .kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-profile-hero .kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-profile-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 10vw, 3.5rem);
  line-height: 1.03;
}

.work-profile-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.profile-live-button {
  width: min(100%, 260px);
  margin-top: 22px;
}

.portfolio-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 10vw, 3.5rem);
  line-height: 1.03;
}

.portfolio-hero p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.portfolio-zone {
  padding-top: 28px;
}

.portfolio-card {
  grid-template-columns: 116px minmax(0, 1fr);
}

.portfolio-card h2 {
  margin: 0 0 7px;
  font-size: 1.12rem;
}

.portfolio-cta {
  margin-top: 18px;
  width: 100%;
}

.work-profile-zone {
  display: grid;
  gap: 18px;
}

.gallery-main {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  text-align: center;
  width: min(100%, 280px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
}

.gallery-open {
  width: 100%;
  height: 100%;
  padding: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-main img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
  width: min(100%, 280px);
  margin-inline: auto;
}

.gallery-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 92px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.28);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 360px);
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #050607;
  padding: 46px 56px;
}

.gallery-modal-panel img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-close,
.gallery-nav {
  position: absolute;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  cursor: pointer;
}

.gallery-close {
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
}

.gallery-nav {
  top: 50%;
  width: 38px;
  height: 52px;
  transform: translateY(-50%);
  font-size: 1.6rem;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-placeholder {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(9, 12, 14, 0.86), rgba(16, 21, 24, 0.64));
}

.gallery-placeholder .work-mark {
  width: 100%;
}

.profile-details {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(9, 12, 14, 0.86), rgba(16, 21, 24, 0.64));
}

.profile-details h2 {
  margin: 0 0 10px;
}

.profile-details p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.work-profile-contact {
  margin-top: 0;
}

.reply-dashboard .dashboard-body h1 {
  margin-bottom: 10px;
}

.reply-intro {
  color: var(--muted);
  line-height: 1.5;
}

.reply-note {
  margin: 14px 0;
  padding: 12px;
  border: 1px solid rgba(103, 224, 223, 0.35);
  border-radius: 8px;
  background: rgba(103, 224, 223, 0.08);
  color: var(--text);
  line-height: 1.45;
}

.notification-form {
  margin: 8px 0 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.14);
}

.notification-row {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.82rem;
}

.notification-row input[type="checkbox"] {
  appearance: auto;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  border-radius: 2px;
}

.notification-row span {
  flex: 1 1 auto;
  line-height: 1.25;
}

.notification-form p {
  margin: 6px 0 8px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.button-secondary {
  min-height: 32px;
  padding: 0 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(103, 224, 223, 0.7);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font-size: 0.78rem;
}

.message-thread {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.message-alert-controls,
.message-toast {
  border: 1px solid rgba(103, 224, 223, 0.35);
  border-radius: 8px;
  background: rgba(103, 224, 223, 0.08);
}

.message-alert-controls {
  margin: 12px 0;
  padding: 10px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.message-alert-controls.is-enabled {
  color: var(--blue);
}

.message-toast {
  position: sticky;
  top: 10px;
  z-index: 20;
  margin: 10px 0;
  padding: 10px 12px;
  color: var(--blue);
  font-weight: 800;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.message-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thread-message {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.thread-message.admin {
  border-color: rgba(103, 224, 223, 0.46);
}

.thread-message.is-new-message {
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(103, 224, 223, 0.18);
  animation: newMessageGlow 1.8s ease both;
}

.thread-message.client {
  margin-left: auto;
  width: min(100%, 86%);
}

.thread-message strong,
.thread-message time {
  display: block;
}

.thread-message p {
  color: var(--text);
}

.thread-message time {
  color: var(--muted);
  font-size: 0.78rem;
}

@keyframes newMessageGlow {
  0% {
    transform: translateY(4px);
    background: rgba(103, 224, 223, 0.14);
  }

  100% {
    transform: translateY(0);
  }
}

.reply-form {
  margin-top: 14px;
}

.setup-opt-in-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 10px;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.35;
}

.setup-opt-in-row input[type="checkbox"] {
  appearance: auto;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
}

.client-portal-messages {
  margin-top: 18px;
}

.client-portal-messages summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 800;
  list-style: none;
}

.client-portal-messages summary::-webkit-details-marker {
  display: none;
}

.client-portal-messages summary::after {
  content: "+";
  float: right;
}

.client-portal-messages[open] summary::after {
  content: "-";
}

.dashboard-phone .dashboard-body > h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 2px;
  background: var(--blue);
}

.progress-ring {
  --progress: 68;
  width: 154px;
  height: 154px;
  margin: 20px auto 28px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #101416 0 54%, transparent 55%),
    conic-gradient(var(--blue) calc(var(--progress) * 1%), rgba(255, 255, 255, 0.12) 0);
}

.progress-ring strong {
  font-size: 2rem;
}

.progress-ring span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 26px;
  bottom: -25px;
  width: 2px;
  background: var(--blue);
}

.timeline li:last-child::before {
  display: none;
}

.timeline li > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text);
  background: rgba(5, 6, 7, 0.6);
  z-index: 1;
}

.timeline li.complete > span,
.timeline li.active > span {
  border-color: var(--blue);
  background: var(--blue);
}

.timeline li.complete > span::before {
  content: "";
  width: 8px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.timeline li.active > span::before {
  content: "2";
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline li.upcoming > span::before {
  content: "3";
  color: var(--text);
  font-size: 0.8rem;
}

.timeline li.active > span {
  background: var(--blue);
}

.timeline h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.client-dashboard .phase-tracker {
  counter-reset: phase;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 6px;
  margin-bottom: 24px;
}

.client-dashboard .phase-tracker li {
  counter-increment: phase;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  justify-items: start;
  text-align: left;
  padding-bottom: 22px;
}

.client-dashboard .phase-tracker li::before {
  left: 13px;
  top: 28px;
  bottom: -2px;
  width: 2px;
  height: auto;
  background: rgba(255, 255, 255, 0.72);
}

.client-dashboard .phase-tracker li:last-child::before {
  display: none;
}

.client-dashboard .phase-tracker li > span {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: #151a1d;
  font-size: 0.78rem;
  font-weight: 800;
}

.client-dashboard .phase-tracker li > span::before {
  content: counter(phase);
  color: var(--text);
  font-size: inherit;
  font-weight: inherit;
}

.client-dashboard .phase-tracker li.active > span,
.client-dashboard .phase-tracker li.current > span {
  border-color: var(--blue);
  background: var(--blue);
}

.client-dashboard .phase-tracker li.active > span::before,
.client-dashboard .phase-tracker li.current > span::before {
  content: counter(phase);
  color: #050607;
}

.client-dashboard .phase-tracker li.complete > span,
.client-dashboard .phase-tracker li.completed > span {
  border-color: var(--blue);
  background: var(--blue);
}

.client-dashboard .phase-tracker li.complete > span::before,
.client-dashboard .phase-tracker li.completed > span::before {
  content: "";
  width: 8px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.client-dashboard .phase-tracker h2 {
  margin: 0;
  font-size: 0.86rem;
}

.client-dashboard .phase-tracker p {
  max-width: none;
  font-size: 0.68rem;
  line-height: 1.25;
}

.client-dashboard .phase-tracker time {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 0.68rem;
  line-height: 1.25;
}

.client-dashboard .phase-status {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.client-dashboard .phase-status::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #151a1d;
}

.client-dashboard .phase-tracker li.complete .phase-status,
.client-dashboard .phase-tracker li.completed .phase-status {
  color: var(--blue);
}

.client-dashboard .phase-tracker li.complete .phase-status::before,
.client-dashboard .phase-tracker li.completed .phase-status::before {
  content: "";
  border-color: var(--blue);
  background:
    linear-gradient(135deg, transparent 44%, #fff 45% 55%, transparent 56%),
    linear-gradient(45deg, transparent 48%, #fff 49% 59%, transparent 60%),
    var(--blue);
}

.client-dashboard .phase-tracker li.active .phase-status,
.client-dashboard .phase-tracker li.current .phase-status {
  color: var(--blue);
}

.client-dashboard .phase-tracker li.active .phase-status::before,
.client-dashboard .phase-tracker li.current .phase-status::before {
  border-color: var(--blue);
  background: var(--blue);
}

.timeline p,
.timeline time,
.latest-card time {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.latest-card {
  margin-top: 28px;
  padding: 16px;
}

.latest-card b {
  color: var(--blue);
}

.dashboard-tabs {
  height: 82px;
  padding: 11px 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  background: rgba(5, 6, 7, 0.86);
}

.dashboard-tabs a {
  display: block;
  width: 100%;
  padding: 0;
  color: var(--text);
  font: inherit;
  line-height: 1.2;
  text-decoration: none;
}

.dashboard-tabs a::before {
  content: "";
  display: block;
  width: 21px;
  height: 17px;
  margin: 0 auto 5px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.dashboard-tabs .active {
  color: var(--blue);
}

.client-file-form {
  display: grid;
  gap: 12px;
}

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

.client-file-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.36);
}

.client-file-card summary {
  display: block;
  cursor: pointer;
  list-style: none;
}

.client-file-card summary::-webkit-details-marker {
  display: none;
}

.client-file-card summary img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.client-file-detail {
  grid-column: 1 / -1;
  padding: 12px;
}

.client-file-detail img {
  display: block;
  width: 100%;
  max-height: min(70vh, 520px);
  object-fit: contain;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
}

.client-file-card p {
  margin: 10px 0 8px;
  color: var(--text);
}

.client-file-card time {
  color: var(--muted);
  font-size: 0.78rem;
}

.client-file-delete {
  min-height: 34px;
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid rgba(255, 87, 87, 0.8);
  border-radius: 6px;
  background: rgba(120, 0, 0, 0.2);
  color: #ff6b6b;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.invoice-card,
.invoice-payments,
.invoice-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(9, 12, 14, 0.86), rgba(16, 21, 24, 0.64));
}

.invoice-card {
  margin-top: 24px;
  padding: 14px;
}

.invoice-summary-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.invoice-summary-heading > b {
  color: var(--text);
  font-size: 1rem;
}

.invoice-summary-heading span {
  color: var(--muted);
  text-align: right;
  font-size: 0.74rem;
}

.invoice-summary-heading strong {
  display: block;
  color: var(--blue);
  font-size: 1.85rem;
  line-height: 1.05;
}

.invoice-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.invoice-stat-grid div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(5, 6, 7, 0.38);
}

.invoice-stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.invoice-stat-grid b {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: clamp(0.82rem, 3vw, 0.95rem);
  line-height: 1.15;
}

.invoice-line-items {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.34);
}

.invoice-line-items h2,
.invoice-payments h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.invoice-table-head,
.invoice-line {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 74px;
  gap: 9px;
  align-items: center;
}

.invoice-table-head {
  grid-template-columns: minmax(0, 1fr) auto 74px;
  padding-bottom: 8px;
  margin-left: 43px;
  color: var(--muted);
  font-size: 0.68rem;
  border-bottom: 1px solid var(--line);
}

.invoice-line {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.invoice-line:last-child {
  border-bottom: 0;
}

.invoice-line.due {
  margin-inline: -6px;
  padding-inline: 6px;
  border-radius: 7px;
  background: rgba(103, 224, 223, 0.08);
}

.invoice-phase-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--text);
  font-size: 0.8rem;
}

.invoice-line.complete .invoice-phase-icon {
  border-color: var(--blue);
  color: var(--blue);
}

.invoice-line.complete:not(.due) .invoice-phase-icon {
  background: var(--blue);
}

.invoice-line.complete:not(.due) .invoice-phase-icon::before {
  content: "";
  width: 8px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.invoice-line strong,
.invoice-line small,
.invoice-line time,
.invoice-line b,
.invoice-line em {
  display: block;
}

.invoice-line small,
.invoice-line time {
  color: var(--muted);
  font-size: 0.68rem;
}

.invoice-line time {
  margin-top: 2px;
}

.invoice-line b {
  color: var(--text);
}

.invoice-line em {
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  text-align: center;
}

.invoice-line.due em,
.invoice-line.complete:not(.due) em {
  border-color: var(--blue);
  color: var(--blue);
}

.invoice-payments {
  margin-top: 14px;
  padding: 14px;
}

.invoice-payments article {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(5, 6, 7, 0.34);
}

.invoice-payments small,
.invoice-payments span {
  display: block;
}

.invoice-payments small {
  color: var(--muted);
  font-size: 0.72rem;
}

.invoice-payments b {
  color: var(--blue);
}

.invoice-note {
  margin: 12px 0 0;
  padding: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.invoice-note b {
  color: var(--blue);
}

@media (min-width: 920px) {
  .site-shell {
    min-height: 100vh;
    width: min(100%, 1180px);
    grid-template-columns: minmax(0, 1080px);
    justify-content: center;
    padding: 40px 28px;
  }

  .phone-frame {
    width: min(100%, 1080px);
    max-height: none;
    overflow: hidden;
    border-radius: 28px;
  }

  .topbar {
    position: relative;
    height: 112px;
    z-index: 6;
    padding: 20px 44px;
  }

  .topbar .brand img {
    width: 230px;
  }

  .home-logo-video {
    width: 230px;
  }

  .hero {
    position: relative;
    top: auto;
    min-height: 520px;
    padding: 70px 64px 120px;
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.82) 34%, rgba(5, 6, 7, 0.28) 64%, rgba(5, 6, 7, 0.06) 100%),
      linear-gradient(0deg, rgba(5, 6, 7, 0.42), rgba(5, 6, 7, 0.1)),
      url("hero-keyboard.png") center right / cover no-repeat;
  }

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

  .hero h1 {
    font-size: clamp(3.1rem, 4.8vw, 4.8rem);
    max-width: 560px;
  }

  .hero p {
    max-width: 360px;
    font-size: 1.12rem;
  }

  .hero-actions {
    max-width: 340px;
  }

  .device-art {
    display: none;
  }

  .curve-divider {
    display: none;
  }

  .content-zone {
    margin-top: 0;
    padding: 42px 64px 46px;
  }

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

  .work-card {
    min-height: 100%;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 14px;
  }

  .work-mark {
    width: 100%;
    max-width: 240px;
    justify-self: center;
  }

  .work-card h3,
  .work-card p {
    text-align: left;
  }

  .work-card .card-arrow {
    justify-self: end;
  }

  .client-login,
  .contact-card {
    margin-top: 22px;
  }

  .action-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 22px;
    align-items: stretch;
  }

  .action-grid .client-login,
  .action-grid .contact-card {
    margin-top: 22px;
  }

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

  .contact-card label:nth-of-type(3),
  .contact-card button {
    grid-column: 1 / -1;
  }

  .work-profile-hero {
    padding: 58px 64px;
  }

  .work-profile-hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
  }

  .work-profile-zone {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }

  .work-profile-contact {
    grid-column: 1 / -1;
  }

  .work-profile-contact form {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-profile-contact label:nth-of-type(3),
  .work-profile-contact button {
    grid-column: 1 / -1;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 320px);
  }

  .gallery-main {
    width: min(100%, 320px);
  }

  .public-shell {
    width: min(100%, 1320px);
    padding: 36px 28px 52px;
  }

  .public-frame {
    width: min(100%, 1240px);
    border-radius: 28px;
  }

  .public-topbar {
    justify-content: space-between;
  }

  .public-topbar .brand {
    left: 44px;
    top: 20px;
    transform: none;
  }

  .public-hero {
    min-height: 620px;
    padding: 78px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
    gap: 56px;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.78) 44%, rgba(5, 6, 7, 0.34) 100%),
      url("hero-keyboard.png") center right / cover no-repeat;
  }

  .public-hero h1 {
    max-width: 760px;
    font-size: clamp(4rem, 6vw, 6.35rem);
  }

  .public-hero-copy > p:not(.public-kicker) {
    max-width: 560px;
    font-size: 1.18rem;
  }

  .public-actions {
    grid-template-columns: repeat(2, minmax(0, 240px));
    max-width: none;
  }

  .public-demo-panel {
    min-height: 390px;
    align-self: center;
    padding: 22px;
    border-radius: 24px;
    transform: rotate(1deg);
  }

  .demo-metric {
    padding: 24px;
  }

  .demo-metric strong {
    font-size: 4rem;
  }

  .demo-list p {
    min-height: 64px;
    padding: 14px;
  }

  .public-content {
    gap: 42px;
    padding: 56px 64px 64px;
  }

  .public-section {
    gap: 22px;
  }

  .public-section h2 {
    max-width: 780px;
    font-size: clamp(2.15rem, 3.25vw, 3.45rem);
  }

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

  .need-grid span {
    min-height: 82px;
    padding: 14px;
    font-size: 0.94rem;
  }

  .public-split-section {
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
    align-items: start;
  }

  .public-copy-block {
    padding-top: 34px;
  }

  .public-copy-block p,
  .cta-copy p {
    font-size: 1.04rem;
  }

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

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

  .system-card {
    min-height: 170px;
  }

  .system-card:nth-child(7) {
    grid-column: span 2;
  }

  .process-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-track li {
    min-height: 112px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .final-cta {
    padding: 34px;
    grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.86fr);
    align-items: start;
    gap: 36px;
  }

  .public-contact-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-contact-card label:nth-of-type(3) {
    grid-column: auto;
  }

  .public-contact-card label:nth-of-type(4) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 390px) {
  .topbar,
  .hero,
  .content-zone,
  .footer-bar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .work-card {
    grid-template-columns: 82px minmax(0, 1fr) 16px;
  }

  .work-mark {
    width: 82px;
  }

  .work-card h3 {
    font-size: 0.98rem;
  }

  .topbar .brand img {
    width: 184px;
  }

  .home-logo-video {
    width: 184px;
  }
}

/* Guided homepage funnel */
.homepage-funnel {
  background:
    radial-gradient(circle at 18% 14%, rgba(103, 224, 223, 0.08), transparent 25rem),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.055), transparent 22rem),
    linear-gradient(125deg, #050607 0%, #101417 50%, #20262a 100%);
}

.funnel-shell {
  width: min(100%, 1240px);
}

.funnel-frame {
  background: #050607;
}

.status-strip {
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-bottom: 1px solid rgba(103, 224, 223, 0.24);
  background:
    linear-gradient(rgba(103, 224, 223, 0.035) 50%, transparent 50%) 0 0 / 100% 4px,
    #020303;
  color: var(--blue);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.status-strip p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: clamp(0.54rem, 2.25vw, 0.68rem);
  line-height: 1.55;
}

.status-strip span {
  color: rgba(103, 224, 223, 0.62);
}

.status-strip b {
  color: var(--blue);
}

.status-online {
  animation: statusPulse 2.6s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 0.45;
    text-shadow: none;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(103, 224, 223, 0.72);
  }
}

.funnel-topbar {
  z-index: 20;
}

.funnel-intro {
  padding: 28px 30px 22px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.68)),
    url("hero-keyboard.png") center / cover no-repeat;
}

.funnel-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.funnel-intro h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.45rem, 12vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.funnel-intro p:not(.funnel-kicker) {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.funnel-progress {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.funnel-progress i {
  height: 7px;
  overflow: hidden;
  border: 1px solid rgba(103, 224, 223, 0.38);
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.42);
}

.funnel-progress b {
  width: 16.666%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--blue);
  transition: width 0.28s ease;
}

.funnel-steps {
  padding: 18px;
  display: grid;
  gap: 14px;
  background:
    linear-gradient(rgba(39, 45, 49, 0.82), rgba(39, 45, 49, 0.82)),
    url("concrete.jpg") center top / cover;
}

.funnel-step {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0d0f;
}

.funnel-step[data-locked="true"] {
  display: none;
}

.funnel-step summary {
  min-height: 86px;
  padding: 18px;
  display: grid;
  gap: 7px;
  cursor: pointer;
  list-style: none;
  background:
    linear-gradient(115deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.7)),
    var(--funnel-bg, linear-gradient(135deg, rgba(103, 224, 223, 0.14), rgba(255, 255, 255, 0.04)));
  background-size: cover;
  background-position: center;
}

.funnel-step summary::-webkit-details-marker {
  display: none;
}

.funnel-step summary span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.funnel-step summary strong {
  max-width: 620px;
  font-size: clamp(1.35rem, 6vw, 2.25rem);
  line-height: 1.08;
}

.funnel-step[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.funnel-step.is-complete summary {
  border-color: rgba(103, 224, 223, 0.45);
}

.funnel-step-body {
  padding: 18px;
  display: grid;
  gap: 16px;
  background: linear-gradient(145deg, rgba(7, 10, 12, 0.96), rgba(18, 23, 26, 0.92));
}

.funnel-step-body > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-option {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.choice-option:hover,
.choice-option:focus-visible,
.choice-option.is-selected {
  border-color: var(--blue);
  background: rgba(103, 224, 223, 0.12);
  color: var(--blue);
}

.choice-option.is-selected::after {
  content: " selected";
  color: rgba(244, 247, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bg-business {
  --funnel-bg:
    linear-gradient(135deg, rgba(103, 224, 223, 0.14), rgba(255, 255, 255, 0.03)),
    url("hero-keyboard.png");
}

.bg-social {
  --funnel-bg:
    linear-gradient(135deg, rgba(103, 224, 223, 0.08), rgba(255, 255, 255, 0.06)),
    url("concrete.jpg");
}

.bg-purpose {
  --funnel-bg: linear-gradient(135deg, rgba(103, 224, 223, 0.18), rgba(37, 43, 47, 0.8));
}

.bg-workflow {
  --funnel-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(103, 224, 223, 0.09));
}

.bg-systems,
.bg-contact {
  --funnel-bg:
    linear-gradient(135deg, rgba(103, 224, 223, 0.16), rgba(255, 255, 255, 0.04)),
    url("hero-keyboard.png");
}

.funnel-contact-grid {
  gap: 18px;
}

.answer-recap {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(103, 224, 223, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
}

.answer-recap > b {
  color: var(--muted);
  font-size: 0.88rem;
}

.answer-recap p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.answer-recap span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-recap b {
  color: var(--text);
  font-size: 0.9rem;
}

.funnel-contact-card {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.funnel-form-intro {
  grid-column: 1 / -1;
}

.funnel-form-intro h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.funnel-form-intro p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.45;
}

.funnel-contact-card label:nth-of-type(5),
.funnel-contact-card label:nth-of-type(6),
.funnel-contact-card button {
  grid-column: 1 / -1;
}

.recent-work-secondary {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  padding: 13px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(103, 224, 223, 0.58);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.34);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease,
    color 250ms ease,
    transform 250ms ease,
    background 250ms ease;
}

.recent-work-secondary:hover,
.recent-work-secondary:focus-visible {
  border-color: var(--blue);
  background: rgba(103, 224, 223, 0.08);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(103, 224, 223, 0.12),
    0 0 22px rgba(103, 224, 223, 0.14);
}

@media (min-width: 920px) {
  .funnel-shell {
    width: min(100%, 1320px);
    padding: 36px 28px 52px;
  }

  .funnel-frame {
    width: min(100%, 1240px);
    border-radius: 28px;
  }

  .status-strip {
    padding: 9px 44px;
    gap: 80px;
  }

  .status-strip p {
    font-size: 0.68rem;
  }

  .funnel-topbar {
    justify-content: space-between;
  }

  .funnel-topbar .brand {
    left: 44px;
    top: 20px;
    transform: none;
  }

  .funnel-intro {
    min-height: 460px;
    padding: 70px 64px 56px;
    display: grid;
    align-content: end;
  }

  .funnel-intro h1 {
    max-width: 760px;
    font-size: clamp(4rem, 6vw, 6.15rem);
  }

  .funnel-intro p:not(.funnel-kicker) {
    max-width: 660px;
    font-size: 1.16rem;
  }

  .funnel-progress {
    width: min(100%, 520px);
  }

  .funnel-steps {
    padding: 40px 64px 58px;
    gap: 18px;
  }

  .funnel-step summary {
    min-height: 116px;
    padding: 26px 30px;
  }

  .funnel-step-body {
    padding: 30px;
    grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
    align-items: start;
    gap: 30px;
  }

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

  .step-acknowledgement,
  .step-after-note {
    grid-column: 1 / -1;
  }

  .funnel-contact-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(430px, 1fr);
  }

  .funnel-contact-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-work-secondary {
    grid-column: 2;
    justify-self: stretch;
  }
}

.homepage-funnel .status-strip {
  padding-block: 6px;
  letter-spacing: 0.04em;
}

.homepage-funnel .status-strip p {
  line-height: 1.35;
}

.funnel-intro {
  text-align: center;
  justify-items: center;
}

.funnel-intro h1 {
  max-width: 10ch;
}

.funnel-intro p:not(.funnel-kicker) {
  max-width: 560px;
}

.funnel-start-button {
  width: min(100%, 260px);
  margin-top: 24px;
}

.funnel-start-button.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.funnel-steps[hidden] {
  display: none;
}

.funnel-steps.is-started {
  animation: funnelFadeIn 0.48s ease both;
}

.funnel-step.is-revealed {
  animation: questionReveal 0.5s ease both;
}

@keyframes funnelFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes questionReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.funnel-progress {
  width: min(100%, 430px);
}

.choice-option {
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  background:
    linear-gradient(145deg, rgba(11, 15, 17, 0.92), rgba(22, 28, 31, 0.78));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.choice-option:hover,
.choice-option:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(103, 224, 223, 0.08);
}

.choice-option.is-selected {
  box-shadow:
    inset 0 0 0 1px rgba(103, 224, 223, 0.28),
    0 0 26px rgba(103, 224, 223, 0.16);
}

.choice-option.is-selected::after {
  content: "";
}

.choice-option b,
.choice-option small {
  display: block;
}

.choice-option b {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.15;
}

.choice-option small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.choice-option.is-selected b {
  color: var(--blue);
}

.choice-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: block;
  border: 1px solid rgba(103, 224, 223, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(103, 224, 223, 0.16), rgba(255, 255, 255, 0.035));
}

.choice-icon::before,
.choice-icon::after {
  content: "";
  position: absolute;
  border-color: var(--blue);
}

.choice-icon::before {
  inset: 12px;
  border: 2px solid var(--blue);
  border-radius: 4px;
}

.choice-icon-site::after,
.choice-icon-repair::after,
.choice-icon-system::after,
.choice-icon-portal::after {
  left: 11px;
  right: 11px;
  top: 13px;
  height: 2px;
  background: var(--blue);
}

.choice-icon-apps::before,
.choice-icon-automation::before {
  width: 6px;
  height: 6px;
  inset: auto;
  left: 11px;
  top: 11px;
  border-radius: 2px;
  box-shadow: 12px 0 0 var(--blue), 0 12px 0 var(--blue), 12px 12px 0 var(--blue);
  background: var(--blue);
  border: 0;
}

.choice-icon-calendar::after {
  left: 13px;
  right: 13px;
  top: 18px;
  height: 2px;
  background: var(--blue);
}

.choice-icon-invoice::before,
.choice-icon-lead::before,
.choice-icon-message::before {
  border-radius: 2px;
}

.choice-icon-store::before {
  inset: 15px 10px 10px;
}

.choice-icon-upload::after {
  left: 17px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(45deg);
}

.choice-icon-compass::before,
.choice-icon-unknown::before {
  border-radius: 50%;
}

.choice-icon-referral::after,
.choice-icon-team::after {
  left: 12px;
  top: 12px;
  width: 6px;
  height: 6px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 12px 8px 0 -1px var(--blue);
}

.choice-icon-search::after {
  right: 9px;
  bottom: 9px;
  width: 10px;
  height: 2px;
  background: var(--blue);
  transform: rotate(45deg);
}

.choice-icon-social::before {
  border-radius: 50%;
}

.step-acknowledgement,
.step-after-note,
.recommendation-card {
  border: 1px solid rgba(103, 224, 223, 0.3);
  border-radius: 8px;
  background: rgba(103, 224, 223, 0.075);
  color: var(--text);
}

.step-acknowledgement,
.step-after-note {
  padding: 12px 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.step-acknowledgement.is-visible,
.step-after-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-after-note {
  color: var(--muted);
  line-height: 1.5;
}

.answer-recap p {
  position: relative;
  padding-left: 24px;
}

.answer-recap p::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
}

.recommendation-card {
  margin-top: 14px;
  padding: 16px;
}

.recommendation-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recommendation-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

@media (min-width: 920px) {
  .funnel-intro {
    text-align: center;
    place-items: center;
    align-content: center;
  }

  .funnel-intro h1 {
    max-width: 820px;
  }

  .funnel-intro p:not(.funnel-kicker) {
    margin-inline: auto;
  }

  .funnel-start-button {
    width: 260px;
  }

  .choice-option {
    min-height: 112px;
    padding: 18px;
  }
}

.homepage-funnel .button,
.homepage-funnel .choice-option {
  position: relative;
  overflow: hidden;
}

.homepage-funnel .button {
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease,
    background 250ms ease,
    opacity 250ms ease;
}

.homepage-funnel .button:hover,
.homepage-funnel .button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(103, 224, 223, 0.16);
}

.homepage-funnel .button.is-pressing,
.homepage-funnel .choice-option.is-pressing {
  transform: translateY(1px) scale(0.985);
}

.button-ripple {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: buttonRipple 620ms ease-out forwards;
}

.homepage-funnel .button > :not(.button-ripple) {
  position: relative;
  z-index: 1;
}

@keyframes buttonRipple {
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}

.start-acknowledgement {
  margin-top: 18px;
  padding: 12px 16px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(103, 224, 223, 0.28);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.52);
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.start-acknowledgement.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.start-acknowledgement b {
  color: var(--blue);
}

.start-acknowledgement span {
  color: var(--muted);
}

.funnel-progress b {
  transition: width 450ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 16px rgba(103, 224, 223, 0.44);
}

.choice-option {
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    background 250ms ease,
    color 250ms ease,
    box-shadow 250ms ease;
}

.choice-option.is-selected {
  border-color: rgba(117, 230, 230, 0.98);
  background: linear-gradient(135deg, #75e6e6, #32c9c8);
  color: #041011;
  box-shadow:
    0 0 0 1px rgba(103, 224, 223, 0.44),
    0 0 34px rgba(103, 224, 223, 0.34),
    0 18px 42px rgba(0, 0, 0, 0.28);
}

.choice-option.is-selected b,
.choice-option.is-selected small {
  color: #041011;
}

.choice-option.is-selected .choice-icon {
  border-color: rgba(4, 16, 17, 0.55);
  background: rgba(4, 16, 17, 0.16);
  transform: scale(1.04);
}

.choice-option.is-selected .choice-icon::before {
  inset: auto;
  left: 15px;
  top: 10px;
  width: 10px;
  height: 18px;
  border: 0;
  border-right: 3px solid #041011;
  border-bottom: 3px solid #041011;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(45deg);
  transition: transform 250ms ease;
}

.choice-option.is-selected .choice-icon::after {
  opacity: 0;
}

.step-acknowledgement {
  font-weight: 800;
  box-shadow: 0 0 24px rgba(103, 224, 223, 0.08);
}

.final-submit-button {
  min-height: 62px;
  border-color: rgba(117, 230, 230, 0.9);
  background:
    linear-gradient(135deg, #f4f7f7, #75e6e6);
  color: #041011;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    0 0 26px rgba(103, 224, 223, 0.18);
}

.final-submit-button.is-success {
  justify-content: center;
  display: grid;
  gap: 2px;
  text-align: center;
  background: linear-gradient(135deg, #75e6e6, #32c9c8);
  animation: submitSuccess 520ms ease both;
}

.final-submit-button.is-success b,
.final-submit-button.is-success small {
  display: block;
}

.final-submit-button.is-success small {
  font-size: 0.78rem;
  font-weight: 800;
}

@keyframes submitSuccess {
  0% {
    transform: scale(0.985);
  }

  55% {
    transform: scale(1.025);
    box-shadow:
      0 0 0 5px rgba(103, 224, 223, 0.12),
      0 0 34px rgba(103, 224, 223, 0.36);
  }

  100% {
    transform: scale(1);
  }
}
