/* IEC Portal marketing — light productivity theme (Monday / ClickUp inspired) */

body.home {
  background: #f4f6f9;
}

body.home .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

body.home .site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.lt {
  color: var(--text);
  background: #f4f6f9;
}

.lt-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.lt-pill {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 980px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 650;
}

.lt-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.lt-head--center {
  margin-inline: auto;
  text-align: center;
}

.lt-head h2,
.lt-hero h1,
.lt-manage__copy h2,
.lt-billing h2,
.lt-cta h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lt-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
}

.lt-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Hero */
.lt-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(30, 79, 214, 0.1), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f4f6f9 100%);
}

.lt-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .lt-hero__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
}

.lt-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--text);
}

.lt-lead {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 34rem;
}

.lt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lt-hero__proof {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lt-hero__proof li {
  position: relative;
  padding-left: 1.2rem;
}

.lt-hero__proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.lt-hero__visual .lt-browser {
  position: relative;
  width: 100%;
}

.lt-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.lt-hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 2940 / 1709;
  overflow: hidden;
  background: #eef1f6;
}

.lt-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.lt-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.lt-hero__slide .lt-shot-btn {
  display: block;
  width: 100%;
  height: 100%;
}

.lt-hero__slide .lt-shot-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.lt-hero__dots {
  display: flex;
  justify-content: center;
  align-self: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding-bottom: 0.15rem;
}

.lt-hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c5ccd8;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lt-hero__dot.is-active,
.lt-hero__dot[aria-selected='true'] {
  background: var(--brand);
  transform: scale(1.15);
}

.lt-hero__dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Browser / shots */
.lt-browser {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(26, 31, 46, 0.1);
}

.lt-browser__bar {
  display: flex;
  gap: 6px;
  padding: 0.7rem 0.9rem;
  background: #eef1f6;
  border-bottom: 1px solid var(--line);
}

.lt-browser__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8ced9;
}

.lt-browser img,
.lt-shot img,
.lt-shot-btn img,
.lt-film__frame img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: high-quality;
}

.lt-browser--fill .lt-shot-btn--flush,
.lt-shot--fill .lt-shot-btn {
  display: block;
  width: 100%;
}

.lt-shot {
  margin: 1rem 0 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.lt-shot--fill {
  max-height: none;
}

.lt-shot--mod {
  margin-top: 1.1rem;
}

.lt-shot--mod .lt-shot-btn {
  background: #eef1f6;
}

.lt-shot--mod .lt-shot-btn img {
  max-height: 220px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.lt-shot-btn {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
}

.lt-shot-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.lt-shot-btn__hint {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 980px;
  background: rgba(26, 31, 46, 0.72);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.lt-shot-btn:hover .lt-shot-btn__hint,
.lt-shot-btn:focus-visible .lt-shot-btn__hint {
  opacity: 1;
  transform: translateY(0);
}

.lt-shot-btn--phone {
  height: 100%;
}

.lt-shot-btn--phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.lt-shot-btn--phone .lt-shot-btn__hint {
  display: none;
}

/* Experience filmstrip */
.lt-experience {
  padding: 4rem 0 2.5rem;
  overflow: hidden;
}

.lt-film {
  margin-top: 0.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.lt-film__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.5rem 1.25rem 1.25rem;
  animation: lt-film 70s linear infinite;
}

.lt-film:hover .lt-film__track,
.lt-film:focus-within .lt-film__track {
  animation-play-state: paused;
}

@keyframes lt-film {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lt-film__card {
  flex: 0 0 auto;
  width: min(340px, 72vw);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 31, 46, 0.06);
  cursor: zoom-in;
  text-align: left;
  font: inherit;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lt-film__card:hover,
.lt-film__card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26, 31, 46, 0.12);
  outline: none;
}

.lt-film__card--phone {
  width: min(180px, 42vw);
}

.lt-film__frame {
  display: block;
  background: #eef1f6;
  border-bottom: 1px solid var(--line);
  height: 200px;
  overflow: hidden;
}

.lt-film__card--phone .lt-film__frame {
  height: 260px;
  background: #fff;
  padding: 0;
}

.lt-film__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.lt-film__card--phone .lt-film__frame img {
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  background: #fff;
}

.lt-film__card strong {
  display: block;
  margin: 0.85rem 1rem 0.15rem;
  font-size: 0.95rem;
}

.lt-film__card > span {
  display: block;
  margin: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  .lt-film__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    max-width: 1120px;
    margin-inline: auto;
    justify-content: center;
  }
}

/* Value */
.lt-value {
  padding: 4rem 0;
}

.lt-value__grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .lt-value__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lt-value__card {
  padding: 1.5rem 1.4rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(26, 31, 46, 0.04);
}

.lt-value__icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
}

.lt-value__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.lt-value__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* Bulk */
.lt-bulk {
  padding: 4rem 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.lt-bulk__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .lt-bulk__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lt-bulk__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem;
  border-radius: 16px;
  background: #f4f6f9;
  border: 1px solid var(--line);
}

.lt-bulk__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.lt-bulk__card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.lt-bulk__card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.lt-bulk__card .lt-shot--fill {
  margin-top: auto;
  padding-top: 1.25rem;
}

.lt-bulk__card .lt-shot--fill .lt-shot-btn img {
  aspect-ratio: 2940 / 1482;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

/* Manage */
.lt-manage {
  padding: 4.5rem 0;
}

.lt-manage__row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lt-manage__row {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.lt-manage__copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

.lt-manage__copy > p {
  color: var(--muted);
}

.lt-checks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.lt-checks li {
  position: relative;
  padding-left: 1.35rem;
}

.lt-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand);
}

/* Modules */
.lt-modules {
  padding: 4rem 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.lt-modules__grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .lt-modules__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .lt-modules__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lt-mod {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem;
  border-radius: 16px;
  background: #f4f6f9;
  border: 1px solid var(--line);
}

.lt-mod__num {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand);
}

.lt-mod h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.lt-mod > p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.lt-mod .lt-shot--mod {
  margin-top: auto;
  padding-top: 1.25rem;
}

/* iPhones */
.lt-phones {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(30, 79, 214, 0.08), transparent 60%),
    #f4f6f9;
}

.lt-phones__row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.lt-iphone {
  margin: 0;
  width: min(220px, 42vw);
  text-align: center;
}

.lt-iphone--focus {
  width: min(250px, 48vw);
  transform: translateY(-12px);
}

.lt-iphone__device {
  position: relative;
  padding: 10px;
  border-radius: 36px;
  background: #1a1f2e;
  box-shadow:
    0 0 0 2px #2a3144,
    0 22px 50px rgba(26, 31, 46, 0.28);
}

.lt-iphone__notch {
  display: none; /* screenshots include status bar + Safari chrome */
}

.lt-iphone__screen {
  border-radius: 28px;
  overflow: hidden;
  background: #1a1f2e;
  /* Native iPhone screenshot ratio (473×1024) — do not upscale assets */
  aspect-ratio: 473 / 1024;
}

.lt-iphone__screen img,
.lt-iphone__screen .lt-shot-btn {
  display: block;
  width: 100%;
  height: 100%;
}

.lt-iphone__screen .lt-shot-btn img {
  object-fit: cover;
  object-position: top center;
  image-rendering: auto;
}

.lt-iphone figcaption {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--text);
}

.lt-iphone figcaption span {
  display: inline-block;
  margin-right: 0.35rem;
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
}

/* Billing */
.lt-billing {
  padding: 4.5rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.lt-billing__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lt-billing__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.lt-billing h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

.lt-billing > div > p,
.lt-billing__grid > div > p {
  color: var(--muted);
}

.lt-pay-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.lt-pay-pills span {
  padding: 0.45rem 0.85rem;
  border-radius: 980px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 650;
}

/* Manifesto */
.lt-manifesto {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--brand-dark);
  color: #fff;
}

.lt-manifesto__text {
  margin: 0 auto;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* Fit / chapter-specific */
.lt-fit {
  padding: 4.5rem 0;
  background: #f4f6f9;
  border-bottom: 1px solid var(--line);
}

.lt-fit__grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 0.25rem;
}

@media (min-width: 800px) {
  .lt-fit__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lt-fit__card {
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.lt-fit__card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.lt-fit__card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

/* Pricing */
.lt-pricing {
  padding: 4.5rem 0;
}

.lt-pricing__grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .lt-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.lt-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.lt-plan--featured {
  background: var(--brand-dark);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(22, 62, 168, 0.28);
}

.lt-plan__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  padding: 0.25rem 0.6rem;
  border-radius: 980px;
  background: var(--accent);
  color: #1a1f2e;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lt-plan h3 {
  margin: 0 0 0.65rem;
}

.lt-plan__price {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1;
}

.lt-plan__price span {
  font-family: var(--font);
  font-size: 1rem;
  opacity: 0.6;
}

.lt-plan__desc {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lt-plan--featured .lt-plan__desc {
  color: rgba(255, 255, 255, 0.65);
}

.lt-plan ul {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.lt-plan li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.92rem;
}

.lt-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
}

.lt-plan--featured li::before {
  background: var(--accent);
}

/* FAQ / CTA */
.lt-faq {
  padding: 3.5rem 0 2rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.lt-faq__wrap {
  max-width: 720px;
}

.lt-cta {
  padding: 2rem 0 5rem;
  background: #f4f6f9;
}

.lt-cta__box {
  display: grid;
  gap: 1.75rem;
  padding: 2rem;
  border-radius: 20px;
  background: var(--brand-dark);
  color: #fff;
  border: 0;
  box-shadow: 0 22px 50px rgba(22, 62, 168, 0.28);
}

@media (min-width: 860px) {
  .lt-cta__box {
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem;
  }
}

.lt-cta__box h2 {
  color: #fff;
}

.lt-cta__box > div p {
  color: rgba(255, 255, 255, 0.72);
}

.lt-kicker--on-dark {
  color: var(--accent);
}

.lt-cta__form {
  display: grid;
  gap: 0.75rem;
}

.lt-cta__form label span {
  color: rgba(255, 255, 255, 0.78);
}

.lt-cta__form input,
.lt-cta__form textarea,
.lt-cta__form select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.lt-cta__form input::placeholder,
.lt-cta__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lt-cta__form input:focus,
.lt-cta__form textarea:focus,
.lt-cta__form select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 196, 84, 0.25);
}

@media (min-width: 560px) {
  .lt-cta__form {
    grid-template-columns: 1fr 1fr;
  }

  .lt-cta__full {
    grid-column: 1 / -1;
  }
}

.lightbox:has(.lightbox-dialog--shot) {
  gap: 0.65rem;
}

.lightbox:not(.is-gallery) .lightbox-nav,
.lightbox:not(.is-gallery) .lightbox-counter {
  display: none !important;
}

.lightbox-dialog--shot {
  width: min(1280px, calc(100% - 6.5rem));
  background: #0f172a;
  color: #fff;
  flex: 1 1 auto;
}

.lightbox-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 2.5rem;
  margin-bottom: 0.75rem;
}

.lightbox-dialog--shot .lightbox-title {
  color: #fff;
  margin: 0;
  padding-right: 0;
  flex: 1 1 auto;
}

.lightbox-counter {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.lightbox-dialog--shot .lightbox-close {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lightbox-nav {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  outline: none;
}

.lightbox-nav:focus-visible {
  box-shadow: 0 0 0 2px #fff;
}

.lightbox-nav span {
  display: block;
  margin-top: -0.1em;
}

.lightbox-img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(90vh - 4.5rem);
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  image-rendering: high-quality;
  box-sizing: border-box;
}

@media (max-width: 720px) {
  .lightbox-dialog--shot {
    width: min(1280px, 100%);
  }

  .lightbox-nav {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 720px) {
  .lt-iphone--focus {
    transform: none;
    width: min(240px, 70vw);
  }
}
