/* ==========================================
   BLES Beta Landing Page — Simplified
   ========================================== */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #0052CC;
  --primary-light: #1A8FE8;
  --primary-lighter: #4EAAF2;
  --primary-glow: rgba(0, 82, 204, 0.4);

  --bg-primary: #0D0F11;
  --bg-secondary: #1C1C1E;
  --bg-tertiary: #1A1D21;
  --bg-card: rgba(28, 28, 30, 0.6);

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.45);

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --border-focus: rgba(0, 82, 204, 0.6);

  --green: #00A67E;
  --error: #E03131;

  --font: 'Outfit', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 200ms;
  --duration-normal: 300ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--text-primary);
  transition: background var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
  white-space: nowrap;
}

.btn:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn:active { transform: translateY(0); }
.btn--sm { font-size: 0.875rem; padding: 0.5rem 1.25rem; }
.btn--lg { font-size: 1.0625rem; padding: 0.875rem 2rem; min-height: 48px; }
.btn--full { width: 100%; }

.btn__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn--loading .btn__text { visibility: hidden; }
.btn--loading .btn__spinner { display: block; position: absolute; }
.btn--loading { position: relative; pointer-events: none; opacity: 0.8; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--duration-normal) var(--ease),
              border-color var(--duration-normal) var(--ease),
              padding var(--duration-normal) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(13, 15, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 0.75rem 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 15, 17, 0.4) 0%,
    rgba(13, 15, 17, 0.6) 30%,
    rgba(13, 15, 17, 0.9) 50%,
    rgba(13, 15, 17, 1) 60%,
    rgba(13, 15, 17, 1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 8rem 1.5rem 4rem;
}

.hero__headline {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.hero__cta { margin-bottom: 1rem; }

.hero__arrow { animation: bounce 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.hero__note {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 166, 126, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0, 166, 126, 0); }
}

/* ---------- Phone Mockup ---------- */
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: var(--bg-secondary);
  border-radius: 36px;
  border: 2px solid var(--border-hover);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--bg-primary);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone__screen {
  width: 100%;
  height: 100%;
}

.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Feature Rows ---------- */
.features {
  position: relative;
  z-index: 2;
  padding: 6rem 0 2rem;
  background: var(--bg-primary);
}

.feature-row {
  padding: 4rem 0;
}

.feature-row__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .feature-row__grid {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }

  .feature-row--reverse .feature-row__grid {
    grid-template-columns: 1fr auto;
  }

  .feature-row--reverse .feature-row__phone {
    order: 2;
  }

  .feature-row--reverse .feature-row__text {
    order: 1;
  }
}

.feature-row__phone {
  display: flex;
  justify-content: center;
}

.feature-row__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-row__list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.feature-row__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

/* ---------- Community Banner ---------- */
.community {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}

.community__bg {
  position: absolute;
  inset: 0;
}

.community__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.community__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 15, 17, 1) 0%,
    rgba(13, 15, 17, 0.7) 20%,
    rgba(13, 15, 17, 0.6) 40%,
    rgba(13, 15, 17, 0.6) 60%,
    rgba(13, 15, 17, 0.85) 80%,
    rgba(13, 15, 17, 1) 100%
  );
}

.community__content {
  position: relative;
  z-index: 1;
}

.community__headline {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.community__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.perk__icon {
  display: flex;
  color: var(--primary-lighter);
}

/* ---------- Signup ---------- */
.signup {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  background: var(--bg-primary);
}

.signup__card {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.signup__subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ---------- Form ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  min-height: 48px;
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
}

.form__input::placeholder { color: var(--text-tertiary); }

.form__input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.15);
}

.form__input--error { border-color: var(--error); }
.form__input--error:focus { box-shadow: 0 0 0 3px rgba(224, 49, 49, 0.15); }

.form__error {
  font-size: 0.8125rem;
  color: var(--error);
}

/* ---------- Device Select ---------- */
.device-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.device-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  min-height: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color var(--duration-fast) var(--ease),
              background var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease);
}

.device-option:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
}

.device-option--selected,
.device-option--selected:hover,
.device-option--selected:active {
  border-color: var(--primary);
  background: rgba(0, 82, 204, 0.08);
  color: var(--text-primary);
}

/* ---------- Success State ---------- */
.signup__success {
  text-align: center;
  padding: 2rem 0;
}

.success-check {
  margin-bottom: 2rem;
  animation: check-in 0.5s var(--ease-bounce) forwards;
}

@keyframes check-in {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.signup__success .section-title { margin-bottom: 0.75rem; }
.signup__success .signup__subtitle { margin-bottom: 2rem; }

/* ---------- Social Links ---------- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: border-color var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease),
              background var(--duration-fast) var(--ease);
}

.social-link:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s;
}

.fade-in.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; visibility: visible; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================
   MOBILE OPTIMIZATION
   Breakpoints:
   - 360px  : Tiny phones (iPhone SE 1st gen, Galaxy S mini)
   - 480px  : Small phones (iPhone SE 2/3, iPhone 13 mini)
   - 767px  : All phones (iPhone 14/15/16 Pro Max, Galaxy S Ultra)
   - 768px+ : Tablets and up (handled by existing desktop queries)
   ========================================== */

/* ---------- Safe Areas (notched devices) ---------- */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.nav {
  padding-top: max(1rem, env(safe-area-inset-top));
}

.nav--scrolled {
  padding-top: max(0.75rem, env(safe-area-inset-top));
}

.footer {
  padding-bottom: max(3rem, calc(1.5rem + env(safe-area-inset-bottom)));
}

/* ---------- Touch & Mobile Resets ---------- */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices — use active states instead */
  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .btn:active {
    background: var(--primary-light);
    transform: scale(0.97);
  }

  .stat-highlight:hover,
  .device-option:not(.device-option--selected):hover,
  .social-link:hover {
    border-color: var(--border);
    background: transparent;
  }

  .device-option:not(.device-option--selected):active {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
  }

  .social-link:active {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
  }
}

/* Clean tap highlight for iOS & Android */
a, button, input, .device-option {
  -webkit-tap-highlight-color: transparent;
}

/* Prevent iOS zoom on input focus (requires font-size >= 16px) */
.form__input {
  font-size: max(1rem, 16px);
}

/* Smooth momentum scrolling on iOS */
html {
  -webkit-overflow-scrolling: touch;
}

/* ---------- All phones (max-width: 767px) ---------- */
@media (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }

  /* Nav */
  .nav__inner {
    padding: 0 1.25rem;
  }

  .nav__logo {
    font-size: 1.375rem;
  }

  /* Hero */
  .hero__content {
    padding: 7rem 1.25rem 3rem;
  }

  .hero__subtitle {
    margin-bottom: 2rem;
  }

  /* Features */
  .features {
    padding: 3rem 0 1rem;
  }

  .feature-row {
    padding: 2.5rem 0;
  }

  .feature-row__grid {
    gap: 2rem;
  }

  .feature-row__phone {
    display: flex;
    justify-content: center;
  }

  .feature-row__text {
    text-align: left;
  }

  .feature-row__desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .feature-row__list {
    gap: 0.625rem;
  }

  .feature-row__list li {
    font-size: 0.875rem;
  }

  /* Community */
  .community {
    padding: 5rem 0;
  }

  .community__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .perks {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .perk {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.875rem;
  }

  /* Signup */
  .signup {
    padding: 4rem 0;
  }

  .signup__card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  .section-title {
    margin-bottom: 1rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0;
  }

  .footer__inner {
    gap: 1.25rem;
  }
}

/* ---------- Small phones (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav__inner {
    padding: 0 1rem;
  }

  /* Hero */
  .hero__content {
    padding: 6rem 1rem 2.5rem;
  }

  .hero__headline {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
    margin-bottom: 1.25rem;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
  }

  .hero__note {
    font-size: 0.75rem;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.3125rem 0.875rem;
    margin-bottom: 1.5rem;
  }

  /* Phone mockup */
  .phone {
    width: 240px;
    border-radius: 30px;
  }

  .phone__notch {
    width: 80px;
    height: 20px;
    top: 6px;
  }

  /* Features */
  .features {
    padding: 2rem 0 0;
  }

  .feature-row {
    padding: 2rem 0;
  }

  .feature-row__grid {
    gap: 1.75rem;
  }

  .section-label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.875rem;
  }

  .feature-row__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .feature-row__list li {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  /* Community */
  .community {
    padding: 4rem 0;
  }

  .community__headline {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .community__subtitle {
    font-size: 0.9375rem;
  }

  .perks {
    gap: 0.375rem;
  }

  .perk {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    gap: 0.375rem;
  }

  .perk__icon svg {
    width: 16px;
    height: 16px;
  }

  /* Signup */
  .signup {
    padding: 3rem 0;
  }

  .signup__card {
    padding: 1.75rem 1.25rem;
  }

  .signup__subtitle {
    font-size: 0.875rem;
  }

  .form {
    gap: 1.25rem;
  }

  .form__input {
    padding: 0.6875rem 0.875rem;
  }

  .device-option {
    padding: 0.875rem 0.5rem;
    gap: 0.375rem;
    font-size: 0.8125rem;
  }

  .device-option svg {
    width: 20px;
    height: 20px;
  }

  .btn--lg {
    font-size: 1rem;
    padding: 0.8125rem 1.75rem;
  }

  /* Footer */
  .footer__logo {
    font-size: 1.125rem;
  }

  .footer__tagline {
    font-size: 0.8125rem;
  }
}

/* ---------- Tiny phones (max-width: 359px) ---------- */
@media (max-width: 359px) {
  .container {
    padding: 0 0.75rem;
  }

  .nav__inner {
    padding: 0 0.75rem;
  }

  .nav__logo {
    font-size: 1.25rem;
  }

  .btn--sm {
    font-size: 0.8125rem;
    padding: 0.4375rem 1rem;
  }

  .hero__headline {
    font-size: 2.25rem;
  }

  .hero__content {
    padding: 5.5rem 0.75rem 2rem;
  }

  .phone {
    width: 210px;
    border-radius: 26px;
  }

  .phone__notch {
    width: 70px;
    height: 18px;
  }

  .community__headline {
    font-size: 1.625rem;
  }

  .signup__card {
    padding: 1.5rem 1rem;
  }

  .perk {
    font-size: 0.6875rem;
    padding: 0.3125rem 0.625rem;
  }
}

/* ---------- Landscape phones ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .hero__content {
    padding: 4rem 1.5rem 2rem;
  }

  .hero__headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    margin-bottom: 1.5rem;
  }

  .community {
    padding: 4rem 0;
  }
}

/* ---------- Tablet portrait (768px - 1023px) ---------- */
@media (min-width: 768px) and (max-width: 1023px) {
  .phone {
    width: 250px;
  }

  .feature-row__grid {
    gap: 2.5rem;
  }

  .hero__content {
    padding: 8rem 2rem 4rem;
  }
}
