:root {
  color-scheme: light dark;
  --bg: #f7fbf2;
  --bg-bottom: #eef7ed;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --card: #ffffff;
  --border: rgba(12, 32, 64, 0.1);
  --text: #0c1d32;
  --muted: #66758b;
  --blue: #0878f9;
  --blue-strong: #005fdc;
  --blue-soft: #e8f3ff;
  --green: #39b875;
  --green-soft: #e9f7ee;
  --coral: #f15f50;
  --coral-soft: #ffebe8;
  --purple: #875cf5;
  --shadow: 0 18px 48px rgba(20, 43, 78, 0.14);
  --soft-shadow: 0 12px 28px rgba(20, 43, 78, 0.1);
  --phone-shadow: 0 34px 72px rgba(8, 19, 34, 0.28);
  --max: 1424px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #050c13;
    --bg-bottom: #0b1119;
    --surface: rgba(17, 26, 38, 0.82);
    --surface-solid: #111b28;
    --surface-soft: rgba(24, 35, 51, 0.76);
    --card: #162033;
    --border: rgba(255, 255, 255, 0.1);
    --text: #f7f9fc;
    --muted: #a7b2c1;
    --blue: #2a91ff;
    --blue-strong: #0a72ed;
    --blue-soft: rgba(42, 145, 255, 0.16);
    --green-soft: rgba(57, 184, 117, 0.16);
    --coral-soft: rgba(241, 95, 80, 0.16);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    --soft-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    --phone-shadow: 0 38px 82px rgba(0, 0, 0, 0.48);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 70% 34%, rgba(8, 120, 249, 0.09), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-bottom));
}

@media (prefers-color-scheme: dark) {
  body {
    background:
      radial-gradient(circle at 72% 34%, rgba(42, 145, 255, 0.14), transparent 30%),
      linear-gradient(180deg, var(--bg), var(--bg-bottom));
  }
}

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

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

button {
  font: inherit;
}

.page-shell {
  width: min(100%, 1536px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 24px 56px 30px;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(100%, var(--max));
  height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

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

.brand-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(0, 106, 255, 0.18);
}

.brand-word {
  color: var(--text);
  font-size: 40px;
  font-weight: 860;
  line-height: 1;
}

.brand-word span {
  color: var(--blue);
}

.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-strong) 100%);
  box-shadow: 0 14px 30px rgba(0, 106, 255, 0.28);
  font-weight: 820;
  line-height: 1;
}

.header-cta {
  width: 176px;
  min-height: 56px;
  padding: 0 18px;
  font-size: 17px;
}

.primary-cta {
  width: 220px;
  min-height: 58px;
  padding: 0 26px;
  font-size: 20px;
}

.primary-cta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero-section {
  position: relative;
  width: min(100%, var(--max));
  height: 722px;
  margin: 34px auto 0;
}

.hero-copy {
  position: absolute;
  top: 84px;
  left: 0;
  z-index: 5;
  width: 590px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 860;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  letter-spacing: 0;
}

.title-brand {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 100px;
  font-weight: 920;
  line-height: 0.9;
}

.headline-text {
  display: block;
  max-width: 590px;
  color: var(--text);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.12;
}

.hero-subtitle {
  width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 24px;
  font-weight: 560;
  line-height: 1.42;
}

.hero-actions {
  margin-top: 28px;
}

.proof-row {
  display: grid;
  width: 560px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.proof-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-right: 1px solid var(--border);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-item strong,
.proof-item small {
  display: block;
}

.proof-item strong {
  font-size: 15px;
  line-height: 1.16;
}

.proof-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.22;
}

.proof-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 900;
}

.proof-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.5;
}

.proof-blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.proof-green {
  color: var(--green);
  background: var(--green-soft);
}

.proof-coral {
  color: var(--coral);
  background: var(--coral-soft);
}

.hero-decor {
  position: absolute;
  left: -10px;
  bottom: -156px;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 34px;
  pointer-events: none;
}

.decor-learning {
  width: 168px;
  filter: drop-shadow(0 14px 18px rgba(17, 32, 48, 0.15));
}

.decor-language {
  position: relative;
  width: 226px;
  height: 130px;
}

.decor-cards {
  position: absolute;
  inset: 3px auto auto 0;
  width: 145px;
  transform: rotate(-7deg);
  filter: drop-shadow(0 14px 18px rgba(17, 32, 48, 0.15));
}

.language-chip {
  position: absolute;
  display: inline-grid;
  min-width: 54px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(8, 120, 249, 0.12);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(18, 38, 68, 0.12);
  font-size: 15px;
  font-weight: 850;
}

@media (prefers-color-scheme: dark) {
  .language-chip {
    color: #57a9ff;
    background: rgba(226, 237, 255, 0.9);
  }
}

.chip-en {
  left: 76px;
  top: 5px;
  transform: rotate(-5deg);
}

.chip-zh {
  left: 136px;
  top: 42px;
  color: var(--coral);
  transform: rotate(7deg);
}

.chip-ja {
  left: 38px;
  top: 74px;
  color: var(--green);
  transform: rotate(-8deg);
}

.chip-es {
  left: 150px;
  top: 88px;
  color: var(--purple);
  transform: rotate(5deg);
}

.hero-visual {
  position: absolute;
  top: 2px;
  right: 0;
  z-index: 3;
  width: 746px;
  height: 720px;
}

.phone-stage {
  position: absolute;
  inset: 0;
}

.phone-frame {
  position: absolute;
  aspect-ratio: 390 / 844;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 58px;
  background:
    linear-gradient(145deg, #4b5058 0%, #11151c 18%, #050609 58%, #333944 100%);
  box-shadow: var(--phone-shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 4;
  width: 88px;
  height: 27px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #020305;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 3px;
  pointer-events: none;
  border-radius: 55px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 18px rgba(255, 255, 255, 0.07);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 47px;
  background: #05070a;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  top: 10px;
  left: 48px;
  z-index: 4;
  width: 342px;
  transform: rotate(-3.5deg);
}

.phone-secondary {
  top: 32px;
  right: 0;
  z-index: 2;
  width: 326px;
  transform: rotate(3deg);
}

.theme-dark {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .theme-light {
    display: none;
  }

  .theme-dark {
    display: block;
  }
}

.deck-section {
  position: relative;
  z-index: 10;
  display: grid;
  width: min(100%, var(--max));
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  margin: -22px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

.deck-intro {
  display: flex;
  min-width: 0;
  align-items: center;
}

.deck-intro h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.16;
}

.deck-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.deck-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 780;
}

.deck-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.deck-card {
  display: grid;
  min-height: 146px;
  align-content: center;
  justify-items: center;
  gap: 9px;
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: 0 10px 20px rgba(12, 28, 48, 0.07);
  text-align: center;
}

.deck-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.deck-icon.blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.deck-icon.purple {
  color: var(--purple);
  background: rgba(135, 92, 245, 0.14);
}

.deck-icon.coral {
  color: var(--coral);
  background: var(--coral-soft);
}

.deck-icon.green {
  color: var(--green);
  background: var(--green-soft);
}

.deck-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 840;
  line-height: 1.2;
}

.deck-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.loop-card p {
  max-width: 132px;
  line-height: 1.35;
}

.story-section {
  position: relative;
  z-index: 6;
  width: min(100%, var(--max));
  margin: 86px auto 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  gap: 44px;
  align-items: start;
}

.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 860;
  line-height: 1;
  text-transform: uppercase;
}

.section-copy h2,
.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.04;
}

.section-copy p:not(.section-label),
.section-heading p:not(.section-label) {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 560;
  line-height: 1.5;
}

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

.feature-card,
.real-deck-card,
.trust-list article,
.faq-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 194px;
  padding: 24px;
}

.feature-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.feature-mark.blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.feature-mark.green {
  color: var(--green);
  background: var(--green-soft);
}

.feature-mark.coral {
  color: var(--coral);
  background: var(--coral-soft);
}

.feature-mark.purple {
  color: var(--purple);
  background: rgba(135, 92, 245, 0.14);
}

.feature-card h3,
.moment-panel h3,
.real-deck-card h3,
.trust-list h3,
.faq-grid h3 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.18;
}

.feature-card p,
.moment-panel p,
.real-deck-card p,
.trust-list p,
.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section-heading {
  max-width: 780px;
}

.compact-heading {
  max-width: 720px;
}

.moments-section {
  margin-top: 104px;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.moment-panel {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 380px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.mini-phone {
  width: 172px;
  aspect-ratio: 390 / 844;
  padding: 5px;
  border-radius: 32px;
  background: linear-gradient(145deg, #4b5058 0%, #10141b 25%, #050609 70%, #333944 100%);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
  transform: rotate(-3deg);
}

.moment-panel:nth-child(2) .mini-phone {
  transform: rotate(3deg);
}

.mini-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 27px;
  background: #05070a;
}

.mini-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-library-section {
  margin-top: 104px;
}

.real-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.real-deck-card {
  min-height: 152px;
  padding: 24px;
}

.real-deck-card h3 {
  margin-top: 0;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  gap: 44px;
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list article {
  padding: 22px 24px;
}

.trust-list h3 {
  margin-top: 0;
  font-size: 20px;
}

.faq-section {
  margin-top: 104px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.faq-grid article {
  min-height: 166px;
  padding: 24px;
}

.faq-grid h3 {
  margin-top: 0;
  font-size: 20px;
}

.site-footer {
  display: flex;
  width: min(100%, var(--max));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a,
.language-button {
  color: var(--muted);
}

.footer-links a:hover,
.language-button:hover {
  color: var(--text);
}

.language-switcher {
  position: relative;
  z-index: 30;
}

.language-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.language-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 60;
  display: none;
  width: 206px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 3px;
}

.language-option {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-option:hover,
.language-option[aria-current="true"] {
  color: var(--blue);
  background: var(--blue-soft);
}

.language-code {
  color: var(--muted);
  font-size: 12px;
}

.policy-main {
  width: min(100%, 920px);
  margin: 72px auto 0;
}

.policy-article {
  padding: 54px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

.policy-article h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1.04;
}

.policy-updated {
  margin: 18px 0 36px;
  color: var(--muted);
  font-size: 16px;
}

.policy-content {
  display: grid;
  gap: 26px;
}

.policy-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.policy-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.policy-section a {
  color: var(--blue);
  font-weight: 740;
}

@media (max-width: 1260px) {
  .page-shell {
    padding: 22px 30px 30px;
  }

  .hero-section {
    height: auto;
    min-height: 1140px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 640px);
    margin-top: 56px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 780px);
    height: 690px;
    margin: 16px auto 0;
  }

  .hero-decor {
    display: none;
  }

  .deck-section {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

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

  .split-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .moment-grid,
  .real-deck-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moment-panel {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .mini-phone {
    width: 138px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px 18px 26px;
  }

  .site-header {
    height: 46px;
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
  }

  .brand-word {
    font-size: 28px;
  }

  .header-cta {
    width: auto;
    min-width: 118px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-section {
    min-height: 0;
    margin-top: 0;
  }

  .hero-copy {
    margin-top: 48px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .title-brand {
    margin-bottom: 12px;
    font-size: 42px;
    line-height: 0.98;
  }

  .headline-text {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-subtitle {
    width: 100%;
    margin-top: 22px;
    font-size: 18px;
  }

  .primary-cta {
    width: 100%;
    min-height: 54px;
  }

  .proof-row {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 36px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .proof-item {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    height: 420px;
    margin-top: 32px;
  }

  .phone-frame {
    padding: 7px;
    border-radius: 40px;
  }

  .phone-frame::before {
    top: 16px;
    width: 62px;
    height: 20px;
  }

  .phone-frame::after {
    border-radius: 38px;
  }

  .phone-screen {
    border-radius: 32px;
  }

  .phone-main {
    top: 10px;
    left: 5%;
    width: 218px;
  }

  .phone-secondary {
    top: 30px;
    right: 0;
    width: 202px;
  }

  .deck-section {
    padding: 16px;
  }

  .deck-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deck-card {
    min-height: 126px;
  }

  .story-section,
  .moments-section,
  .deck-library-section,
  .faq-section {
    margin-top: 64px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section-copy p:not(.section-label),
  .section-heading p:not(.section-label) {
    font-size: 17px;
  }

  .feature-grid,
  .moment-grid,
  .real-deck-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .real-deck-card,
  .trust-list article,
  .faq-grid article {
    padding: 20px;
  }

  .moment-panel {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    min-height: 280px;
    padding: 18px;
  }

  .mini-phone {
    width: 108px;
    border-radius: 24px;
  }

  .mini-screen {
    border-radius: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 28px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .language-menu {
    right: 0;
    left: auto;
  }

  .policy-main {
    margin-top: 44px;
  }

  .policy-article {
    padding: 28px 20px;
  }

  .policy-article h1 {
    font-size: 36px;
  }
}

@media (max-width: 420px) {
  .brand-word {
    font-size: 24px;
  }

  .header-cta {
    min-width: 104px;
    font-size: 13px;
  }

  .headline-text {
    font-size: 36px;
  }

  .phone-main {
    width: 206px;
  }

  .phone-secondary {
    width: 190px;
  }
}
