:root {
  --sp-bg: #f7f7f7;
  --sp-bg-soft: #fbfbfc;
  --sp-surface: #ffffff;
  --sp-surface-2: #fcfbfa;
  --sp-border: #ece7e3;

  --sp-text: #66666d;
  --sp-text-soft: #7b7b84;
  --sp-heading: #55555c;

  --sp-blue: #92b6df;
  --sp-blue-dark: #7ea7d8;
  --sp-blue-soft: #dfeaf8;

  --sp-coral: #e8a39b;
  --sp-coral-dark: #db9188;
  --sp-coral-soft: #f8e2de;

  --sp-sage: #a9c98d;
  --sp-sage-dark: #97b97a;
  --sp-sage-soft: #eaf4e1;

  --sp-peach: #edc388;
  --sp-peach-soft: #faecd5;

  --sp-shadow: 0 16px 40px rgba(120, 120, 130, 0.10);
  --sp-shadow-soft: 0 10px 24px rgba(120, 120, 130, 0.08);
  --sp-radius-xl: 28px;
  --sp-radius-lg: 22px;
  --sp-radius-md: 16px;
}

html,
body {
  background:
    radial-gradient(circle at top left, rgba(146, 182, 223, 0.13), transparent 30%),
    radial-gradient(circle at top right, rgba(232, 163, 155, 0.10), transparent 24%),
    linear-gradient(180deg, #fbfbfc 0%, var(--sp-bg) 100%);
  color: var(--sp-text);
  font-family: 'Inter', sans-serif;
}

body {
  min-width: 320px;
}

a {
  text-decoration: none;
}

.site-shell {
  padding: 28px 0 60px;
}

.page-frame {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(236, 231, 227, 0.95);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(120, 120, 130, 0.12);
  overflow: hidden;
}

.navbar-wrap {
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(236, 231, 227, 0.9);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sp-heading);
  font-weight: 700;
}

.brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f6f6f8);
  border: 1px solid var(--sp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  flex: 0 0 auto;
}

.brand-icon svg {
  width: 36px;
  height: 36px;
}

.brand-icon.brand-icon-image {
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.brand-icon.brand-icon-image img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 100%;
}

.brand-wordmark {
  line-height: 0.95;
}

.brand-script {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--sp-heading);
}

.brand-planner {
  color: var(--sp-blue);
}

.nav-link {
  color: #74747c;
  font-weight: 600;
  padding: 10px 14px !important;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--sp-blue-dark);
  background: rgba(146, 182, 223, 0.12);
}

.btn-brand,
.btn-soft,
.btn-outline-brand {
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 700;
  border: 0;
  transition: 0.2s ease;
}

.btn-brand {
  background: linear-gradient(180deg, var(--sp-coral) 0%, var(--sp-coral-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(232, 163, 155, 0.24);
}

.btn-brand:hover {
  background: linear-gradient(180deg, #e39a92 0%, #d78980 100%);
  color: #fff;
  transform: translateY(-1px);
}

.btn-soft {
  background: linear-gradient(180deg, var(--sp-sage) 0%, var(--sp-sage-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(151, 185, 122, 0.22);
}

.btn-soft:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-brand {
  background: #fff;
  color: var(--sp-blue-dark);
  border: 1px solid rgba(146, 182, 223, 0.35);
  box-shadow: var(--sp-shadow-soft);
}

.btn-outline-brand:hover {
  color: var(--sp-blue-dark);
  background: var(--sp-blue-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 253, 0.96) 36%, rgba(245, 246, 249, 0.94) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -170px;
  top: -120px;
  background: radial-gradient(circle, rgba(146, 182, 223, 0.18) 0%, rgba(146, 182, 223, 0) 70%);
}

.hero::after {
  width: 380px;
  height: 380px;
  left: -80px;
  bottom: -170px;
  background: radial-gradient(circle, rgba(232, 163, 155, 0.14) 0%, rgba(232, 163, 155, 0) 72%);
}

.hero-content {
  padding: 64px 28px 34px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--sp-border);
  font-size: 0.92rem;
  font-weight: 700;
  color: #8a8a91;
  margin-bottom: 18px;
}

.hero h1,
.section-script,
.cta-script {
  font-family: 'Dancing Script', cursive;
  color: var(--sp-heading);
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.1rem);
  margin-bottom: 16px;
}

.hero p.lead {
  font-size: 1.16rem;
  max-width: 560px;
  color: var(--sp-text-soft);
  margin-bottom: 28px;
}

.hero-visual {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 251, 0.92));
  border: 1px solid var(--sp-border);
  border-radius: 28px;
  box-shadow: var(--sp-shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -40px -75px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 201, 141, 0.12), rgba(169, 201, 141, 0));
}

.photo-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: center;
  height: 100%;
  min-height: 376px;
}

.invite-card {
  background: #fffdfc;
  border: 1px solid #ebe6e2;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 18px 30px rgba(120, 120, 130, 0.12);
  transform: rotate(-6deg);
  max-width: 280px;
  margin: 18px auto 0;
}

.invite-card h3 {
  font-family: 'Dancing Script', cursive;
  color: var(--sp-heading);
  font-size: 2rem;
  margin-bottom: 12px;
}

.invite-lines {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}

.invite-lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sp-coral-soft), #f8f8fb);
  display: block;
}

.invite-pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--sp-blue-soft);
  color: var(--sp-blue-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.party-scene {
  position: relative;
  height: 100%;
  min-height: 376px;
}

.scene-circle {
  position: absolute;
  right: 4%;
  top: 6%;
  width: 88%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.95) 34%, rgba(244, 245, 248, 0.94) 70%),
    linear-gradient(180deg, #fff 0%, #f6f7fb 100%);
  border: 1px solid #ece7e3;
  box-shadow: inset 0 18px 28px rgba(255, 255, 255, 0.75), 0 16px 28px rgba(120, 120, 130, 0.12);
  overflow: hidden;
}

.cupcake,
.flower,
.glass,
.gift,
.plate {
  position: absolute;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.flower {
  width: 146px;
  height: 146px;
  left: 50%;
  top: 23%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 18%, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 50% 36%, var(--sp-coral) 0 18%, transparent 19%),
    radial-gradient(circle at 28% 52%, #f2d0ca 0 16%, transparent 17%),
    radial-gradient(circle at 70% 56%, #e5a29a 0 18%, transparent 19%),
    radial-gradient(circle at 42% 72%, #f0c7bf 0 17%, transparent 18%),
    radial-gradient(circle at 60% 76%, #f7e0db 0 14%, transparent 15%),
    radial-gradient(circle at 50% 50%, var(--sp-sage) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 50%, rgba(146, 182, 223, 0.15) 0 56%, transparent 57%);
  box-shadow: 0 12px 24px rgba(120, 120, 130, 0.12);
}

.cupcake {
  width: 88px;
  height: 88px;
  left: 12%;
  top: 36%;
  background:
    radial-gradient(circle at 50% 30%, #fff6f5 0 26%, transparent 27%),
    radial-gradient(circle at 45% 32%, #f0c7bf 0 16%, transparent 17%),
    linear-gradient(180deg, #f7ddd8 0 42%, #efc388 43% 58%, #f8f5f1 59% 100%);
  border-radius: 24px 24px 18px 18px;
  transform: rotate(-10deg);
  box-shadow: 0 10px 16px rgba(120, 120, 130, 0.12);
}

.gift {
  width: 100px;
  height: 74px;
  right: 14%;
  bottom: 22%;
  background:
    linear-gradient(90deg, #f7ddd8 0 42%, #fff6f4 42% 58%, #f7ddd8 58% 100%),
    linear-gradient(180deg, #fbf5ef 0 36%, transparent 36% 100%);
  border-radius: 18px;
  box-shadow: 0 10px 16px rgba(120, 120, 130, 0.10);
}

.gift::before,
.gift::after {
  content: "";
  position: absolute;
  background: var(--sp-sage);
  border-radius: 999px;
}

.gift::before {
  width: 16px;
  height: 74px;
  left: 42px;
  top: 0;
}

.gift::after {
  width: 100px;
  height: 14px;
  left: 0;
  top: 24px;
}

.glass {
  width: 42px;
  height: 120px;
  right: 8%;
  top: 18%;
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0 24%, rgba(232, 163, 155, 0.28) 25% 78%, rgba(255, 255, 255, 0.60) 79% 100%);
  border: 1px solid rgba(230, 230, 234, 0.9);
  box-shadow: 0 10px 18px rgba(120, 120, 130, 0.10);
}

.glass::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 52px;
  left: 18px;
  bottom: -36px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 26px 0 8px rgba(255, 255, 255, 0.76);
}

.plate {
  width: 116px;
  height: 116px;
  left: 18%;
  bottom: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 34%, #edf1f8 35% 50%, #fffefc 51% 66%, transparent 67%);
  box-shadow: 0 10px 18px rgba(120, 120, 130, 0.10);
}

.mini-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--sp-border);
  font-weight: 700;
  color: #81818a;
  box-shadow: 0 10px 18px rgba(120, 120, 130, 0.08);
}

.mini-badge.top {
  left: 8px;
  top: 14px;
}

.mini-badge.bottom {
  right: 24px;
  bottom: 14px;
}

.hero-wave {
  height: 46px;
  background:
    radial-gradient(circle at 20px -2px, transparent 34px, var(--sp-surface) 35px),
    radial-gradient(circle at 68px -2px, transparent 34px, var(--sp-surface) 35px);
  background-size: 96px 46px;
  background-repeat: repeat-x;
  background-position: center bottom;
  margin-top: -1px;
}

.section-pad {
  padding: 30px 28px;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-script {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 730px;
  margin: 0 auto;
  color: var(--sp-text-soft);
  font-size: 1.06rem;
}

.feature-card,
.showcase-card,
.cta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 252, 253, 0.98) 100%);
  border: 1px solid rgba(236, 231, 227, 0.95);
  border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-shadow);
}

.feature-card {
  padding: 22px;
  height: 100%;
  text-align: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff, #f4f7fc);
  border: 1px solid var(--sp-border);
  color: var(--sp-blue-dark);
  font-size: 1.75rem;
}

.feature-card h3,
.showcase-copy h3 {
  font-size: 1.36rem;
  font-weight: 800;
  color: var(--sp-heading);
  margin-bottom: 10px;
}

.feature-card p,
.showcase-copy p,
.cta-panel p,
.footer-copy,
.footer-links a,
.footer-note {
  color: var(--sp-text-soft);
}

.feature-card p,
.showcase-copy p {
  margin-bottom: 18px;
}

.soft-strip {
  background: linear-gradient(180deg, rgba(247, 249, 253, 0.75), rgba(255, 255, 255, 0.35));
  border-top: 1px solid rgba(236, 231, 227, 0.85);
  border-bottom: 1px solid rgba(236, 231, 227, 0.85);
}

.showcase-card {
  overflow: hidden;
  height: 100%;
}

.showcase-visual {
  min-height: 250px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f5f7fb 100%);
  border-bottom: 1px solid rgba(236, 231, 227, 0.8);
  position: relative;
  padding: 18px;
}

.showcase-copy {
  padding: 22px;
}

.visual-paper,
.visual-notebook,
.visual-basket,
.visual-icons {
  position: absolute;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(236, 231, 227, 0.95);
  box-shadow: 0 12px 24px rgba(120, 120, 130, 0.08);
}

.evite-paper {
  width: 200px;
  height: 240px;
  border-radius: 20px;
  left: 26%;
  top: 18px;
  transform: rotate(-8deg);
  background: linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
}

.evite-paper::before {
  content: "Oh Baby!";
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--sp-heading);
}

.evite-paper::after {
  content: "";
  position: absolute;
  inset: 78px 26px 26px 26px;
  border-radius: 16px;
  background: repeating-linear-gradient(180deg, var(--sp-coral-soft) 0 8px, transparent 8px 22px);
  opacity: 0.82;
}

.evite-pencil {
  position: absolute;
  width: 16px;
  height: 124px;
  background: linear-gradient(180deg, var(--sp-coral) 0 18%, #fbe6e1 18% 86%, #d6c193 86% 100%);
  border-radius: 999px;
  right: 24%;
  bottom: 18px;
  transform: rotate(26deg);
  box-shadow: 0 8px 14px rgba(120, 120, 130, 0.08);
}

.registry-basket {
  width: 220px;
  height: 150px;
  border-radius: 32px 32px 26px 26px;
  left: 50%;
  top: 68px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #f1ddbf 0%, #e5c08f 100%);
  border: 1px solid #dfc09a;
}

.registry-basket::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 72px;
  border: 10px solid #d5b48d;
  border-bottom: 0;
  border-radius: 100px 100px 0 0;
  left: 45px;
  top: -48px;
}

.registry-basket::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 12px, rgba(0, 0, 0, 0) 12px 24px);
  opacity: 0.56;
}

.teddy-head,
.gift-box-small,
.bottle-shape {
  position: absolute;
  box-shadow: 0 8px 14px rgba(120, 120, 130, 0.08);
}

.teddy-head {
  width: 102px;
  height: 96px;
  border-radius: 44px;
  background: #efcfaa;
  left: 20%;
  top: 48px;
}

.teddy-head::before,
.teddy-head::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #efcfaa;
  top: -10px;
}

.teddy-head::before {
  left: 6px;
}

.teddy-head::after {
  right: 6px;
}

.gift-box-small {
  width: 70px;
  height: 60px;
  right: 18%;
  bottom: 42px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f7ddd8 0 42%, #fff7f4 42% 58%, #f7ddd8 58% 100%);
}

.gift-box-small::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 12px;
  left: 0;
  top: 20px;
  background: var(--sp-sage);
  border-radius: 999px;
}

.bottle-shape {
  width: 42px;
  height: 96px;
  left: 18%;
  bottom: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #cfe1f6 0%, #9ebee6 100%);
}

.games-notebook {
  width: 214px;
  height: 154px;
  left: 50%;
  top: 48px;
  transform: translateX(-50%) rotate(-5deg);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
}

.games-notebook::before {
  content: "Baby Bingo";
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--sp-heading);
  font-weight: 800;
}

.games-notebook::after {
  content: "";
  position: absolute;
  inset: 48px 16px 16px 16px;
  background-image:
    linear-gradient(var(--sp-coral-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--sp-coral-soft) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 8px;
  opacity: 0.82;
}

.guide-book {
  width: 190px;
  height: 220px;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
}

.guide-book::before {
  content: "Shower Checklist";
  position: absolute;
  top: 22px;
  left: 20px;
  color: var(--sp-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

.guide-book::after {
  content: "";
  position: absolute;
  inset: 60px 18px 18px 18px;
  border-radius: 10px;
  background: repeating-linear-gradient(180deg, var(--sp-blue-soft) 0 8px, transparent 8px 24px);
}

.guide-rings {
  position: absolute;
  left: calc(50% - 109px);
  top: 46px;
  width: 16px;
  height: 150px;
  background: repeating-linear-gradient(180deg, #d8d8de 0 8px, transparent 8px 20px);
  opacity: 0.8;
}

.check-dots {
  position: absolute;
  right: 22%;
  top: 68px;
  width: 70px;
  height: 110px;
  display: grid;
  gap: 12px;
}

.check-dots span {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sp-sage-soft) 0 18px, var(--sp-coral-soft) 18px 100%);
  height: 14px;
  box-shadow: 0 6px 12px rgba(120, 120, 130, 0.06);
}

.mini-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(232, 163, 155, 0.50) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 22%, rgba(146, 182, 223, 0.45) 0 3px, transparent 4px),
    radial-gradient(circle at 14% 74%, rgba(169, 201, 141, 0.45) 0 3px, transparent 4px),
    radial-gradient(circle at 88% 72%, rgba(237, 195, 136, 0.45) 0 3px, transparent 4px);
}

.cta-panel {
  text-align: center;
  padding: 42px 28px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.80), transparent 34%),
    linear-gradient(180deg, rgba(223, 234, 248, 0.60) 0%, rgba(255, 255, 255, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.cta-panel::before {
  left: -80px;
  top: -80px;
}

.cta-panel::after {
  right: -80px;
  bottom: -110px;
}

.cta-script {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.cta-panel p {
  max-width: 620px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.site-footer {
  padding: 34px 28px 40px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(236, 231, 227, 0.95);
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--sp-heading);
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--sp-blue-dark);
}

.footer-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(236, 231, 227, 0.95);
  font-size: 0.94rem;
}

@media (max-width: 991.98px) {
  .hero-content,
  .section-pad,
  .site-footer,
  .navbar-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .photo-stage,
  .party-scene {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .site-shell {
    padding: 12px 0 28px;
  }

  .page-frame {
    border-radius: 0;
  }

  .hero-content {
    padding-top: 34px;
  }

  .brand-script {
    font-size: 1.7rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-visual {
    min-height: 300px;
  }

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

  .invite-card {
    transform: rotate(-3deg);
  }

  .feature-card,
  .showcase-copy,
  .cta-panel {
    padding-left: 18px;
    padding-right: 18px;
  }
}
