html {
  overflow-x: hidden;
}

.home-page {
  position: relative;
  min-height: 100vh;
  color: #1e293b;
}

.home-background {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.home-blob-left {
  top: -12rem;
  left: -12rem;
  width: 24rem;
  height: 24rem;
  background: #5eead4;
  animation: home-blob-left 22s ease-in-out infinite alternate;
}

.home-blob-right {
  top: 10rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  background: #3b82f6;
  opacity: 0.2;
  animation: home-blob-right 26s ease-in-out infinite alternate;
}

.home-blob-bottom {
  bottom: 0;
  left: 25%;
  width: 20rem;
  height: 20rem;
  background: #2dd4bf;
  opacity: 0.3;
  animation: home-blob-bottom 28s ease-in-out infinite alternate;
}

.home-container {
  width: min(100%, 80rem);
  margin-inline: auto;
  padding-inline: 2rem;
}

.home-header {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 0;
  width: 100%;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.home-header.is-scrolled {
  transform: translateY(-0.25rem);
}

.home-nav-panel {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.home-header.is-scrolled .home-nav-panel {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px -12px rgba(15, 23, 42, 0.16);
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.home-brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #fff;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #2dd4bf, #3b82f6);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.28), 0 4px 6px -4px rgba(15, 23, 42, 0.18);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.home-brand-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.home-brand:hover .home-brand-mark,
.home-brand:focus-visible .home-brand-mark {
  box-shadow: 0 12px 20px -6px rgba(59, 130, 246, 0.55);
  transform: translateY(-1px) rotate(-2deg);
}

.home-brand-name {
  color: transparent;
  background: linear-gradient(90deg, #1e293b, #475569);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.home-brand-name span {
  font-weight: 300;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.home-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.home-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2dd4bf, #3b82f6);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-nav-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.home-nav-link:hover,
.home-nav-link:focus-visible {
  color: #0d9488;
  transform: translateY(-1px);
}

.home-nav-link:hover::after,
.home-nav-link:focus-visible::after {
  opacity: 0.78;
  transform: scaleX(1);
}

.home-nav-link:hover svg,
.home-nav-link:focus-visible svg {
  transform: translateY(-1px) scale(1.08);
}

.home-menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: #64748b;
  border-radius: 0.625rem;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.home-menu-button:hover,
.home-menu-button:focus-visible {
  color: #0d9488;
  background: rgba(240, 253, 250, 0.75);
}

.home-menu-button:active {
  transform: scale(0.96);
}

.home-main {
  width: 100%;
  min-height: 100vh;
  padding: 8rem 0 4rem;
}

.hero {
  width: min(100%, 80rem);
  margin-inline: auto;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  margin: 0 0 1.5rem;
  color: #1e293b;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.hero .gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #0d9488, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 12px 34px rgba(59, 130, 246, 0.1);
}

.hero-mobile-break {
  display: none;
}

.hero-intro {
  max-width: 42rem;
  margin: 1rem auto 2.5rem;
  color: #64748b;
  font-size: 1.25rem;
  line-height: 1.4;
}

.home-search-group {
  position: relative;
  z-index: 10;
  width: min(100%, 48rem);
  margin-inline: auto;
}

.home-search-glow {
  position: absolute;
  inset: -0.25rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #2dd4bf, #3b82f6);
  filter: blur(8px);
  opacity: 0.15;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-search-group:hover .home-search-glow {
  opacity: 0.25;
  transition-duration: 300ms;
}

.home-search-group:focus-within .home-search-glow {
  opacity: 0.2;
}

.hero-search {
  position: relative;
  display: flex;
  width: 100%;
  height: 5rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition:
    border-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-search:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 10px -6px rgba(15, 23, 42, 0.2);
}

.hero-search:focus-within {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-input-wrap {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
}

.hero-input-wrap svg {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.75rem 0 1.25rem;
  color: #94a3b8;
  transition: color 200ms ease, transform 200ms ease;
}

.hero-search:focus-within .hero-input-wrap svg {
  color: #0d9488;
  transform: scale(1.04);
}

.hero-input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  color: #334155;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.125rem;
  caret-color: #14b8a6;
}

.hero-input::placeholder {
  color: rgba(148, 163, 184, 0.8);
  opacity: 1;
  transition: opacity 300ms ease;
}

.home-search-actions {
  display: flex;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem 0.625rem 0;
}

.input-kind-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.input-kind-badge.is-domain {
  color: #4f46e5;
  border-color: #c7d2fe;
  background: #eef2ff;
}

.input-kind-badge.is-url {
  color: #2563eb;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.input-kind-badge.is-address {
  color: #0369a1;
  border-color: #bae6fd;
  background: #f0f9ff;
}

.input-kind-badge.is-asn {
  color: #7c3aed;
  border-color: #ddd6fe;
  background: #f5f3ff;
}

.input-kind-badge.is-error {
  color: #d97706;
  border-color: #fde68a;
  background: #fffbeb;
}

.home-search-button {
  display: inline-flex;
  width: 8.125rem;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0 1.25rem;
  color: #fff;
  border-radius: 0.75rem;
  background: #0f172a;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 300ms ease, transform 150ms ease, opacity 150ms ease;
}

.home-search-button svg {
  width: 1rem;
  height: 1rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.home-search-button:hover,
.home-search-button:focus-visible {
  background: #0d9488;
}

.home-search-button:hover svg,
.home-search-button:focus-visible svg {
  transform: translateX(0.25rem);
}

.home-search-button:active {
  transform: scale(0.98);
}

.home-search-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.hero-feedback {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  min-height: 1.25rem;
  margin: 0.65rem 0 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.25rem;
  text-align: left;
}

.hero-feedback.is-error {
  color: #b42318;
}

.home-content {
  position: relative;
}

.recent-section {
  margin: 1rem 0 3rem;
}

.recent-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0.05em;
}

.recent-title svg {
  width: 1rem;
  height: 1rem;
}

.recent-list {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.recent-list::-webkit-scrollbar {
  display: none;
}

.recent-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: nowrap;
  transition: color 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.recent-chip svg {
  width: 0.875rem;
  height: 0.875rem;
}

.recent-chip:hover,
.recent-chip:focus-visible {
  color: #0d9488;
  border-color: #5eead4;
  box-shadow: 0 5px 14px -8px rgba(13, 148, 136, 0.5);
  transform: translateY(-1px);
}

.core-section {
  margin-bottom: 4rem;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.section-heading p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.75rem;
}

.section-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #94a3b8;
}

.section-icon-star {
  color: #fbbf24;
}

.home-glass-card {
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.home-glass-card:hover,
.home-glass-card:focus-visible {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 12px 24px -8px rgba(20, 184, 166, 0.2);
  transform: translateY(-4px);
}

.home-glass-card:active {
  transform: translateY(-1px) scale(0.99);
}

.core-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.core-tool-card {
  position: relative;
  min-height: 12.2rem;
  padding: 1.5rem;
  border-radius: 1rem;
}

.core-tool-card::after,
.compact-tool-card::after {
  position: absolute;
  z-index: -1;
  top: -1.5rem;
  right: -1.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.18);
  content: "";
  filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
}

.core-tool-card:hover::after,
.core-tool-card:focus-visible::after,
.compact-tool-card:hover::after,
.compact-tool-card:focus-visible::after {
  opacity: 1;
  transform: translate(-0.25rem, 0.25rem);
}

.tool-card-soon {
  cursor: default;
}

.tool-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
}

.tool-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tool-icon-blue {
  color: #2563eb;
  background: #eff6ff;
}

.tool-icon-indigo {
  color: #4f46e5;
  background: #eef2ff;
}

.tool-icon-teal {
  color: #0d9488;
  background: #f0fdfa;
}

.core-tool-card:hover .tool-icon,
.core-tool-card:focus-visible .tool-icon {
  color: #fff;
  transform: scale(1.1);
}

.core-tool-card:hover .tool-icon-blue,
.core-tool-card:focus-visible .tool-icon-blue {
  background: #2563eb;
}

.core-tool-card:hover .tool-icon-indigo,
.core-tool-card:focus-visible .tool-icon-indigo {
  background: #4f46e5;
}

.core-tool-card:hover .tool-icon-teal,
.core-tool-card:focus-visible .tool-icon-teal {
  background: #0d9488;
}

.core-tool-card h3 {
  margin: 0 0 0.5rem;
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  transition: color 150ms ease;
}

.core-tool-card:hover h3,
.core-tool-card:focus-visible h3 {
  color: #0d9488;
}

.core-tool-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.625;
}

.card-status,
.compact-status {
  position: absolute;
  z-index: 2;
  color: #b45309;
  border: 1px solid #fde68a;
  border-radius: 9999px;
  background: rgba(255, 251, 235, 0.92);
  font-weight: 700;
  white-space: nowrap;
}

.card-status {
  top: 1rem;
  right: 1rem;
  padding: 0.18rem 0.48rem;
  font-size: 0.66rem;
}

.card-status-ready {
  color: #047857;
  border-color: #d1fae5;
  background: rgba(236, 253, 245, 0.94);
}

.more-tools-section {
  margin-bottom: 3rem;
}

.compact-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.compact-tool-card {
  position: relative;
  display: flex;
  min-height: 6rem;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
}

.compact-tool-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  color: #475569;
  border-radius: 0.5rem;
  background: #f1f5f9;
  transition: color 150ms ease, background-color 150ms ease, transform 300ms ease;
}

.compact-tool-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.compact-tool-card:hover,
.compact-tool-card:focus-visible {
  background: rgba(255, 255, 255, 0.9);
}

.compact-tool-card:hover .compact-tool-icon,
.compact-tool-card:focus-visible .compact-tool-icon {
  color: #0d9488;
  background: #f0fdfa;
  transform: scale(1.08) rotate(-1deg);
}

.compact-tool-card h3 {
  margin: 0;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  transition: color 150ms ease;
}

.compact-tool-card:hover h3,
.compact-tool-card:focus-visible h3 {
  color: #0d9488;
}

.compact-tool-card p {
  margin: 0.25rem 2.75rem 0 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1rem;
}

.compact-status {
  right: 0.75rem;
  bottom: 0.6rem;
  padding: 0.1rem 0.38rem;
  font-size: 0.6rem;
  opacity: 0.8;
}

.compact-status-ready {
  color: #047857;
  border-color: #d1fae5;
  background: rgba(236, 253, 245, 0.94);
}

.privacy-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
}

.privacy-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  color: #047857;
  border-radius: 0.75rem;
  background: #ecfdf5;
}

.privacy-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.privacy-section h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.privacy-section p {
  margin: 0;
  color: #64748b;
  font-size: 0.8rem;
}

.home-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.home-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-block: 2rem;
  color: #94a3b8;
  font-size: 0.875rem;
  text-align: center;
}

.home-footer-inner p {
  margin: 0.25rem 0 0;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #047857;
  border: 1px solid #d1fae5;
  border-radius: 9999px;
  background: #ecfdf5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.privacy-pill svg {
  width: 1rem;
  height: 1rem;
}

.home-reveal {
  opacity: 0;
  animation: home-fade-in-up 800ms ease-out forwards;
}

.home-delay-1 {
  animation-delay: 100ms;
}

.home-delay-2 {
  animation-delay: 200ms;
}

.home-delay-3 {
  animation-delay: 300ms;
}

.compact-tool-card {
  opacity: 0;
  animation: home-card-in 620ms ease-out forwards;
}

.compact-tool-card:nth-child(1) { animation-delay: 360ms; }
.compact-tool-card:nth-child(2) { animation-delay: 410ms; }
.compact-tool-card:nth-child(3) { animation-delay: 460ms; }
.compact-tool-card:nth-child(4) { animation-delay: 510ms; }
.compact-tool-card:nth-child(5) { animation-delay: 560ms; }
.compact-tool-card:nth-child(6) { animation-delay: 610ms; }
.compact-tool-card:nth-child(7) { animation-delay: 660ms; }
.compact-tool-card:nth-child(8) { animation-delay: 710ms; }
.compact-tool-card:nth-child(9) { animation-delay: 760ms; }

@keyframes home-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-card-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes home-blob-left {
  to { transform: translate3d(1.25rem, 0.75rem, 0) scale(1.03); }
}

@keyframes home-blob-right {
  to { transform: translate3d(-1.5rem, 1rem, 0) scale(0.98); }
}

@keyframes home-blob-bottom {
  to { transform: translate3d(2rem, -1rem, 0) scale(1.03); }
}

@media (max-width: 1023px) {
  .compact-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-container,
  .hero {
    width: min(100%, 80rem);
    padding-inline: 1rem;
  }

  .home-nav-panel {
    height: 4rem;
  }

  .home-menu-button {
    display: grid;
  }

  .home-nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px -16px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .home-nav-links.is-open {
    display: grid;
    animation: home-menu-in 180ms ease-out both;
  }

  .home-nav-link {
    min-height: 2.75rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.625rem;
  }

  .home-nav-link::after {
    display: none;
  }

  .home-nav-link:hover,
  .home-nav-link:focus-visible {
    background: #f0fdfa;
    transform: none;
  }

  .hero {
    padding-block: 2rem 4rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-intro {
    font-size: 1.125rem;
    line-height: 1.55;
  }

  .core-tool-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .home-main {
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .hero-mobile-break {
    display: inline;
  }

  .hero-intro {
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .hero-search {
    height: 4.5rem;
  }

  .hero-input-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    margin-left: 1rem;
  }

  .hero-input {
    font-size: 1rem;
  }

  .home-search-actions {
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 0;
  }

  .input-kind-badge {
    display: none;
  }

  .home-search-button {
    width: 6.875rem;
    padding-inline: 0.75rem;
  }

  .hero-feedback {
    margin-top: 0.7rem;
    font-size: 0.7rem;
  }

  .recent-section {
    margin-top: 0.75rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 0.25rem;
  }

  .compact-tool-grid {
    grid-template-columns: 1fr;
  }

  .privacy-section {
    align-items: flex-start;
  }
}

@keyframes home-menu-in {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-blob {
    will-change: auto;
  }
}
