/* ============================================
   Poker Spot — shared stylesheet
   ============================================ */

:root {
  --bg: #07070b;
  --bg-elev: #0d0d14;
  --surface: rgba(28, 28, 34, 0.6);
  --surface-solid: #14141b;
  --surface-alt: #1c1c24;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-secondary: #9a9aa6;
  --text-muted: #65656e;

  --brand: #8b5cf6;
  --brand-2: #ec4899;
  --brand-3: #38bdf8;
  --brand-grad: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --brand-grad-3: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 50%, #ec4899 100%);
  --brand-dim: rgba(139, 92, 246, 0.14);

  --profit: #22c55e;
  --loss: #ef4444;
  --gold: #fbbf24;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 30px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 0 1px rgba(139,92,246,0.35), 0 20px 60px -10px rgba(139,92,246,0.4);
  --shadow-pop: 0 30px 80px -20px rgba(139,92,246,0.55), 0 10px 40px -10px rgba(236,72,153,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background — subtle aurora + grain */
body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 90vh;
  z-index: -2;
  background:
    radial-gradient(50% 50% at 20% 10%, rgba(139,92,246,0.22) 0%, transparent 60%),
    radial-gradient(40% 50% at 85% 5%, rgba(236,72,153,0.18) 0%, transparent 60%),
    radial-gradient(60% 40% at 50% 0%, rgba(56,189,248,0.10) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: rgba(139,92,246,0.4); color: #fff; }

/* ============================================
   Nav
   ============================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 11, 0.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .dot {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--brand-grad);
  display: inline-block;
  box-shadow: 0 4px 14px rgba(139,92,246,0.45);
  position: relative;
}
.nav-logo .dot::after {
  content: "♠";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); text-decoration: none; }

.nav-cta {
  background: var(--brand-grad);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 18px rgba(139,92,246,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(139,92,246,0.45); }

/* ============================================
   Page wrapper
   ============================================ */
.page { max-width: 1120px; margin: 0 auto; padding: 0 24px 80px; position: relative; }

/* ============================================
   Hero
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding: 96px 0 80px;
  position: relative;
}

.hero-copy { text-align: left; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.10);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 0 0 rgba(167,139,250,0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(167,139,250,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(167,139,250,0); }
  100% { box-shadow: 0 0 0 0 rgba(167,139,250,0); }
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 24px;
}

.hero h1 .grad {
  background: var(--brand-grad-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 4px;
}

.hero p.lead {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.65;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  color: var(--text-secondary);
  font-size: 13px;
}
.hero-trust .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .stat strong {
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ── Phone mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

.phone {
  position: relative;
  width: 290px;
  height: 580px;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1a22 0%, #0c0c12 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 4px #0a0a10,
    0 0 0 5px rgba(255,255,255,0.06),
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 20px 60px -10px rgba(139,92,246,0.35);
  padding: 14px;
  transform: rotate(-3deg);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.phone:hover { transform: rotate(-1deg) translateY(-4px); }

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(139,92,246,0.22) 0%, transparent 60%),
    linear-gradient(180deg, #0d0d14 0%, #07070b 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.screen-header {
  padding: 44px 18px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.screen-header .h-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 600; }
.screen-header .h-title { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; margin-top: 2px; }
.screen-header .h-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--brand-dim);
  display: grid; place-items: center;
  color: #c4b5fd; font-size: 16px;
}

.screen-hero-card {
  margin: 8px 14px 12px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139,92,246,0.22), rgba(236,72,153,0.18));
  border: 1px solid rgba(139,92,246,0.35);
}
.screen-hero-card .label { font-size: 10px; color: #c4b5fd; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.screen-hero-card .value { font-size: 32px; font-weight: 800; letter-spacing: -1px; color: #fff; margin-top: 2px; }
.screen-hero-card .delta { font-size: 12px; color: #4ade80; font-weight: 600; margin-top: 2px; }

.screen-chart {
  margin: 0 14px 14px;
  height: 90px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.screen-chart svg { width: 100%; height: 100%; display: block; }

.screen-row {
  display: flex; gap: 8px; margin: 0 14px 8px;
}
.screen-stat {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.screen-stat .k { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 600; }
.screen-stat .v { font-size: 14px; font-weight: 700; margin-top: 2px; }
.screen-stat .v.pos { color: #4ade80; }

.screen-tabbar {
  margin-top: auto;
  height: 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px 12px;
  background: rgba(7,7,11,0.6);
  backdrop-filter: blur(8px);
}
.screen-tabbar .tab {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--text-muted); font-size: 16px;
}
.screen-tabbar .tab.active { background: var(--brand-dim); color: #c4b5fd; }

/* Floating decorative cards */
.float-card {
  position: absolute;
  width: 110px;
  height: 150px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.05);
  font-family: "Georgia", serif;
  font-weight: 700;
  padding: 10px 12px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.float-card .corner { font-size: 22px; line-height: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.float-card .center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 54px;
}
.float-card.red { color: #dc2626; }
.float-card.spade { color: #111; }

.float-card.c1 {
  top: 30px; left: -10px;
  transform: rotate(-14deg);
  animation-delay: 0s;
}
.float-card.c2 {
  bottom: 40px; right: -20px;
  transform: rotate(12deg);
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, -14deg)); }
  50%      { transform: translateY(-10px) rotate(var(--r, -14deg)); }
}
.float-card.c1 { --r: -14deg; }
.float-card.c2 { --r: 12deg; }

/* Chip stack accent */
.chip {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, var(--brand) 0deg 20deg, #6d28d9 20deg 40deg);
  border: 4px solid #2e1065;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), inset 0 0 0 6px rgba(255,255,255,0.08);
  z-index: 1;
}
.chip::after {
  content: "";
  position: absolute; inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a78bfa, #6d28d9);
  border: 2px dashed rgba(255,255,255,0.4);
}
.chip.c1 { bottom: 10px; left: 10px; transform: rotate(-10deg); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  letter-spacing: -0.3px;
  border: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(139,92,246,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(139,92,246,0.65); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Disabled / "coming soon" state for download & get-the-app buttons */
.is-disabled,
a.is-disabled,
.btn.is-disabled,
.nav-cta.is-disabled {
  background: rgba(255,255,255,0.06) !important;
  color: var(--text-dim, #8b8b9a) !important;
  border: 1px solid var(--border-strong) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(1);
}
.is-disabled:hover { transform: none !important; box-shadow: none !important; }
.is-disabled .arrow { display: none; }

/* ============================================
   Sections
   ============================================ */
.section { padding: 96px 0; position: relative; }

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c4b5fd;
  background: var(--brand-dim);
  border: 1px solid rgba(139,92,246,0.25);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section h2 .grad {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section > p, .section-head p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 640px;
  line-height: 1.7;
}

/* ============================================
   Feature grid
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(28,28,34,0.7), rgba(20,20,27,0.5));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(139,92,246,0.0), rgba(139,92,246,0.4), rgba(236,72,153,0.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.25);
  box-shadow: 0 20px 50px -20px rgba(139,92,246,0.4);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(236,72,153,0.12));
  border: 1px solid rgba(139,92,246,0.25);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 100%;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.pricing-card {
  position: relative;
  background: linear-gradient(180deg, rgba(28,28,34,0.7), rgba(20,20,27,0.5));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: left;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), border-color 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.pricing-card.featured {
  border-color: rgba(139,92,246,0.55);
  background:
    linear-gradient(180deg, rgba(139,92,246,0.16), rgba(236,72,153,0.10) 80%, rgba(20,20,27,0.5));
  box-shadow: var(--shadow-pop);
  transform: translateY(-8px);
}

.pricing-card.featured::after {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(236,72,153,0.4);
}

.pricing-card .plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.pricing-card.featured .plan-name { color: #c4b5fd; }

.pricing-card .price {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-card .price-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.pricing-card ul {
  list-style: none;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pricing-card ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3.5 8.5l3 3 6-6.5' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   Suit decorations & dividers
   ============================================ */
.suit-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 22px;
  opacity: 0.5;
}
.suit-row .red { color: var(--brand-2); opacity: 0.7; }

/* ============================================
   Legal pages
   ============================================ */
.legal-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.legal-hero h1 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.legal-hero p {
  color: var(--text-secondary);
  font-size: 15px;
}

.legal-body { max-width: 760px; }

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 14px;
  letter-spacing: -0.4px;
  color: var(--text);
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 8px;
  color: #c4b5fd;
}

.legal-body p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-body ul {
  margin: 10px 0 14px 20px;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.9;
}

.legal-body a { color: #c4b5fd; }
.legal-body a:hover { color: #fff; }

/* ============================================
   Footer
   ============================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 24px 40px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  background:
    radial-gradient(60% 100% at 50% 100%, rgba(139,92,246,0.08) 0%, transparent 70%);
}

footer .footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

footer .footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

footer .footer-links a { color: var(--text-secondary); font-size: 13px; }
footer .footer-links a:hover { color: var(--text); text-decoration: none; }

footer .copyright {
  color: var(--text-muted);
  font-size: 12px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 0 48px;
    text-align: center;
  }
  .hero-copy { text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { min-height: 480px; }
}

@media (max-width: 600px) {
  .nav-links li:not(.nav-cta-li) { display: none; }
  .section { padding: 72px 0; }
  .hero { padding: 48px 0 32px; }
  .hero h1 { letter-spacing: -1.2px; }
  .float-card { width: 90px; height: 122px; }
  .float-card .center { font-size: 42px; }
  .phone { width: 240px; height: 480px; }
  .pricing-card.featured { transform: none; }
}
