/*
Theme Name: AI Freelancer Theme
Theme URI:
Author: [Dit navn]
Author URI:
Description: Dark-themed freelance AI & Automation portfolio theme med glassmorphism, scroll-reveal og responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ai-freelancer
*/

/* =========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================= */
:root {
  --bg-color: #080808;
  --bg-color-alt: rgba(255, 255, 255, 0.02);
  --text-main: #fcfbf9;
  --text-muted: #9c9a96;
  --accent: #f5a623;
  --accent-hover: #ffbb4d;

  --font-heading: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;

  --container-max: 1200px;
  --container-padding: clamp(1.5rem, 5vw, 3rem);
  --content-narrow: 720px;
  --content-tight: 320px;
  --cta-max: 400px;

  --section-spacing-y: clamp(3.5rem, 8vw, 5.5rem);
  --section-inner: 4rem;

  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-normal: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =========================================================================
   RESET & BASICS
   ========================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overscroll-behavior-x: none;
}

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

::selection {
  background: var(--accent);
  color: #000;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

button {
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  border: none;
}

ul,
ol {
  list-style: none;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }

/* =========================================================================
   LAYOUT UTILITIES
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-narrow {
  max-width: var(--content-narrow);
}

.content-narrow {
  max-width: var(--content-narrow);
}

.footer-tagline {
  max-width: var(--content-tight);
}

.btn-block {
  width: 100%;
  max-width: var(--cta-max);
}

.section {
  padding: var(--section-spacing-y) 0;
}

.section-intro {
  margin-bottom: var(--section-inner);
}

.value-prop-grid {
  gap: var(--section-inner);
  align-items: start;
}

.paradigm-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.paradigm-boxes .paradigm-box {
  flex: 1;
  min-height: 0;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.paradigm-boxes .paradigm-box h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.paradigm-boxes .paradigm-box p {
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
}

.paradigm-box--muted {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.paradigm-box--muted h3 { color: var(--text-muted); }

.paradigm-box--accent {
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.paradigm-box--accent h3 { color: var(--accent); }

.section-heading {
  line-height: 1.1;
  margin-bottom: var(--section-inner);
}

.intro-lead {
  font-size: 1.125rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.intro-body {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.value-prop-col {
  display: flex;
  flex-direction: column;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 50%, transparent);
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

/* Services section: three cards in one row on desktop; hide stray non-card children */
.section-divider .grid-3 > *:not(.card) {
  display: none;
}

@media (min-width: 900px) {
  .section-divider .grid-3,
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================================
   COMPONENTS — BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 2rem;
  background-color: var(--accent);
  color: #080808;
  transition: var(--transition-fast);
  box-shadow: 0 8px 24px -8px rgba(245, 166, 35, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition-fast);
  z-index: -1;
  border-radius: inherit;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px -8px rgba(245, 166, 35, 0.6);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: rgba(245, 166, 35, 0.05);
  box-shadow: 0 8px 24px -8px rgba(245, 166, 35, 0.15);
}

/* =========================================================================
   COMPONENTS — HEADER & NAV
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: background-color var(--transition-normal), padding var(--transition-normal), border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
  position: relative;
}

.logo::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 4px;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%   { opacity: 0.5; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.2); box-shadow: 0 0 15px var(--accent); }
  100% { opacity: 0.5; transform: scale(1); }
}

.nav-links {
  display: flex;
  gap: 3rem;
}

/* WP menu resets */
.nav-links ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  z-index: 1001;
}

/* Nav dropdown (Ydelser submenu) */
.nav-item-has-children {
  position: relative;
  display: inline-block;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  padding: 0.75rem 0;
  margin-top: 4px;
  background: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 100;
}

.nav-item-has-children:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links .nav-item-has-children > a {
  padding-bottom: 4px;
}

/* =========================================================================
   COMPONENTS — CARDS
   ========================================================================= */
.card {
  background: var(--bg-color-alt);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 1.5rem;
  padding: 3rem;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card:not(:has(.card-title)) {
  display: none;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, -20%), rgba(245, 166, 35, 0.06), transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.card > * {
  z-index: 1;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 166, 35, 0.2);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 40px -10px rgba(245, 166, 35, 0.05);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  color: var(--accent);
}

.card-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--text-muted);
  flex-grow: 1;
  line-height: 1.6;
}

/* =========================================================================
   COMPONENTS — FOOTER
   ========================================================================= */
.site-footer {
  padding: var(--section-spacing-y) 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 50%, transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--section-inner);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  opacity: 0.5;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateY(-2px);
}

/* =========================================================================
   ANIMATIONS & SCROLL BEHAVIOR
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.grid > .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid > .reveal:nth-child(3) { transition-delay: 0.2s; }
.grid > .reveal:nth-child(4) { transition-delay: 0.3s; }
.grid > .reveal:nth-child(5) { transition-delay: 0.4s; }
.grid > .reveal:nth-child(6) { transition-delay: 0.5s; }

@keyframes breathe {
  0%   { transform: scale(1); opacity: 0.15; }
  50%  { transform: scale(1.05); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.15; }
}

.animate-breathe {
  animation: breathe 10s ease-in-out infinite alternate;
}

/* =========================================================================
   PAGE: HOMEPAGE (front-page.php)
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 70% 30%, rgba(245, 166, 35, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(26, 26, 26, 1) 0%, rgba(13, 13, 13, 1) 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(242, 239, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 232, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
  width: 100%;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: var(--accent);
}

.hero h1 {
  margin-bottom: 2rem;
  line-height: 1.05;
}

.hero-tagline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.4;
}

.intro-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.15;
}

/* =========================================================================
   PAGE: SERVICES (page-ydelser.php)
   ========================================================================= */
.page-header {
  padding: 12rem 0 6rem;
  text-align: center;
  background: radial-gradient(circle at 50% -20%, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
}

.page-header h1 {
  margin-bottom: 1.5rem;
}

.service-block {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(242, 239, 232, 0.05);
}

.service-block:last-child {
  border-bottom: none;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-block:nth-child(even) .service-grid {
  direction: rtl;
}

.service-block:nth-child(even) .service-content {
  direction: ltr;
}

.service-visual {
  aspect-ratio: 1;
  background: var(--bg-color-alt);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 239, 232, 0.05);
  position: relative;
  overflow: hidden;
  direction: ltr;
}

.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(245, 166, 35, 0.05));
  pointer-events: none;
}

.final-cta {
  text-align: center;
  padding: 8rem 0;
  background: var(--bg-color-alt);
}

/* Service Landing Pages (Appudvikling, AI-løsninger, Automatisering) */
.service-hero {
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 40% 60%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

.service-hero-subtitle {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.landing-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.landing-section.alt {
  background: var(--bg-color-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title .text-muted {
  font-size: 1.125rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .process-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .usecase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.usecase-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1.25rem;
  transition: var(--transition-fast);
}

.usecase-card:hover {
  border-color: rgba(245, 166, 35, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.usecase-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.usecase-card p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.final-cta .text-muted {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .service-visual-wrap {
    order: -1;
    min-height: 220px;
  }

  .workflow-svg {
    width: 85%;
    max-width: 280px;
  }

  .neural-svg {
    width: 85%;
    max-width: 280px;
  }
}

/* Terminal (Vibe Coding visual) */
.win-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.win-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.win-dot:nth-child(1) { background: #ff5f57; opacity: 0.85; }
.win-dot:nth-child(2) { background: #febc2e; opacity: 0.85; }
.win-dot:nth-child(3) { background: #28c840; opacity: 0.85; }

.terminal {
  width: 85%;
  max-width: 400px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.6);
}

.terminal-body { padding: 20px 18px; }

.prompt-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  line-height: 1.6;
  opacity: 0;
}

.prompt-line:last-child { margin-bottom: 0; }
.prompt-marker { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.prompt-text { color: rgba(252, 251, 249, 0.7); clip-path: inset(0 100% 0 0); }

.prompt-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0;
}

.prompt-line:nth-child(1) { animation: svFadeIn 0.01s 0.5s forwards; }
.prompt-line:nth-child(1) .prompt-text { animation: svReveal 1.4s steps(20) 0.6s forwards; }
.prompt-line:nth-child(2) { animation: svFadeIn 0.01s 2.5s forwards; }
.prompt-line:nth-child(2) .prompt-text { animation: svReveal 1.2s steps(18) 2.6s forwards; }
.prompt-line:nth-child(3) { animation: svFadeIn 0.01s 4.3s forwards; }
.prompt-line:nth-child(3) .prompt-text { animation: svReveal 1s steps(14) 4.4s forwards; }
.prompt-line:nth-child(3) .prompt-cursor { animation: svCursorBlink 0.8s step-end 4.3s infinite; }

/* Code Editor (Appudvikling visual) */
.editor {
  width: 85%;
  max-width: 400px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.6);
}

.editor-tab {
  margin-left: 14px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-muted);
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.editor-body { padding: 16px 0 20px; }

.code-line {
  display: flex;
  padding: 0 18px;
  font-size: 0.75rem;
  line-height: 2;
  opacity: 0;
  transform: translateX(-8px);
  white-space: pre;
}

.code-line:nth-child(1) { animation: svCodeIn 0.4s 0.3s forwards; }
.code-line:nth-child(2) { animation: svCodeIn 0.4s 0.5s forwards; }
.code-line:nth-child(3) { animation: svCodeIn 0.4s 0.7s forwards; }
.code-line:nth-child(4) { animation: svCodeIn 0.4s 0.9s forwards; }
.code-line:nth-child(5) { animation: svCodeIn 0.4s 1.1s forwards; }
.code-line:nth-child(6) { animation: svCodeIn 0.4s 1.3s forwards; }
.code-line:nth-child(7) { animation: svCodeIn 0.4s 1.5s forwards; }
.code-line.code-line-easter { animation: svCodeIn 0.5s 2.2s forwards; }

/* Editor with prompt-first flow (Appudvikling) */
.editor-with-prompt .editor-prompt {
  padding: 14px 18px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.editor-with-prompt .editor-prompt-line {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  line-height: 2;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
  opacity: 0;
  animation: svFadeIn 0.01s 0.2s forwards;
}
.editor-with-prompt .editor-prompt-line .prompt-text {
  color: rgba(252, 251, 249, 0.7);
  clip-path: inset(0 100% 0 0);
  animation: svReveal 1.6s steps(28) 0.4s forwards;
}
.editor-with-prompt .editor-prompt-line .prompt-cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  opacity: 0;
  animation: svCursorBlink 0.8s step-end 2s infinite;
}
.editor-with-prompt .editor-body { padding-top: 12px; }
.editor-with-prompt .code-line:nth-child(1) { animation: svCodeIn 0.4s 2.4s forwards; }
.editor-with-prompt .code-line:nth-child(2) { animation: svCodeIn 0.4s 2.6s forwards; }
.editor-with-prompt .code-line:nth-child(3) { animation: svCodeIn 0.4s 2.8s forwards; }
.editor-with-prompt .code-line:nth-child(4) { animation: svCodeIn 0.4s 3s forwards; }
.editor-with-prompt .code-line:nth-child(5) { animation: svCodeIn 0.4s 3.2s forwards; }
.editor-with-prompt .code-line:nth-child(6) { animation: svCodeIn 0.4s 3.4s forwards; }
.editor-with-prompt .code-line:nth-child(7) { animation: svCodeIn 0.4s 3.6s forwards; }
.editor-with-prompt .code-line.code-line-easter { animation: svCodeIn 0.5s 4s forwards; }

.cm { color: #6a9955; font-style: italic; }

.ln { color: rgba(255, 255, 255, 0.15); width: 2ch; text-align: right; margin-right: 2ch; flex-shrink: 0; user-select: none; }
.kw  { color: #f5a623; }
.str { color: #98c379; }
.fn  { color: #61afef; }
.tg  { color: #e06c75; }
.at  { color: #d19a66; }
.tx  { color: rgba(252, 251, 249, 0.65); }

/* Neural Network (AI visual) */
.neural-svg { width: 75%; max-width: 320px; z-index: 1; }
.nn-line { stroke: rgba(245, 166, 35, 0.12); stroke-width: 1.5; }
.nn-node { fill: rgba(245, 166, 35, 0.06); stroke: rgba(245, 166, 35, 0.35); stroke-width: 1.5; }
.nn-hub { fill: rgba(245, 166, 35, 0.1); stroke: var(--accent); stroke-width: 2; animation: svNodeGlow 3s ease-in-out infinite; }
.nn-label { fill: var(--accent); font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.05em; }

/* AI Flow (AI-løsninger – konkret flow) */
.ai-flow-svg { width: 75%; max-width: 320px; z-index: 1; }
.ai-flow-line { fill: none; stroke: rgba(245, 166, 35, 0.25); stroke-width: 2; }
.ai-flow-dot { }
.ai-flow-node { }
.ai-flow-label { fill: rgba(252, 251, 249, 0.7); font-family: var(--font-body); font-size: 11px; font-weight: 500; }
.ai-easter-trigger { cursor: default; }

@keyframes svNodeGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.2)); }
  50%      { filter: drop-shadow(0 0 14px rgba(245, 166, 35, 0.5)); }
}

/* Workflow (Automatisering visual) */
.workflow-svg { width: 80%; max-width: 340px; z-index: 1; }
.wf-box { fill: rgba(245, 166, 35, 0.06); stroke: rgba(245, 166, 35, 0.25); stroke-width: 1; }
.wf-line { stroke: rgba(245, 166, 35, 0.2); stroke-width: 1.5; stroke-dasharray: none; }
.wf-arrow { fill: rgba(245, 166, 35, 0.35); }
.wf-label { fill: rgba(252, 251, 249, 0.65); font-family: var(--font-body); font-size: 11px; font-weight: 500; }

@keyframes svFadeIn   { to { opacity: 1; } }
@keyframes svReveal   { to { clip-path: inset(0 0 0 0); } }
@keyframes svCursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes svCodeIn   { to { opacity: 1; transform: translateX(0); } }

/* =========================================================================
   PAGE: CONTACT (page-kontakt.php)
   ========================================================================= */
.page-header--plain {
  padding: 12rem 0 4rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 6rem;
}

.contact-info { padding-right: 2rem; }

.contact-method { margin-bottom: 2.5rem; }

.contact-method h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-method p,
.contact-method a {
  font-size: 1.5rem;
  color: var(--text-main);
  font-weight: 500;
}

.contact-method a:hover { color: var(--accent); }

.contact-form {
  background: var(--bg-color-alt);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 3rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-4px);
}

/* =========================================================================
   PAGE: BLOG LISTING (home.php)
   ========================================================================= */
.filter-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  background: var(--bg-color-alt);
  padding: 0.5rem;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  scrollbar-width: none;
}

.filter-nav::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.filter-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
  background: var(--accent);
  color: #080808;
  box-shadow: 0 4px 16px -4px rgba(245, 166, 35, 0.4);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-color-alt);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-category {
  color: var(--accent);
  font-weight: 500;
}

.blog-title {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================================
   PAGE: SINGLE POST (single.php)
   ========================================================================= */
.post-header {
  padding: 10rem 0 4rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.post-category {
  color: var(--accent);
  font-weight: 500;
}

.post-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.post-byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.post-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  overflow: hidden;
}

.post-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-image {
  width: 100%;
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(13, 13, 13, 1) 100%);
  border-radius: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 239, 232, 0.05);
}

.post-hero-image::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  left: -10%;
  top: -25%;
}

.post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.post-content {
  font-size: 1.25rem;
  line-height: 1.7;
}

.post-content h2 { margin-top: 3rem; font-size: 2rem; }
.post-content h3 { margin-top: 2rem; font-size: 1.5rem; }

.post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: rgba(242, 239, 232, 0.9);
}

.post-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.post-content li {
  margin-bottom: 0.5rem;
  color: rgba(242, 239, 232, 0.9);
  font-size: 1.125rem;
}

.post-content blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

pre {
  background-color: var(--bg-color-alt);
  border: 1px solid rgba(242, 239, 232, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  color: #d1d5db;
}

code {
  font-family: 'Courier New', Courier, monospace;
  background: rgba(242, 239, 232, 0.05);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
  color: var(--accent);
}

pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

.related-posts {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(242, 239, 232, 0.1);
}

/* =========================================================================
   PAGE: APPS LISTING (template-apps.php)
   ========================================================================= */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.app-card {
  background-color: var(--bg-color-alt);
  border: 1px solid rgba(242, 239, 232, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.3);
}

.app-image-wrap {
  aspect-ratio: 16/10;
  background: #111;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-placeholder {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 10px, transparent 10px, transparent 20px);
}

.app-img-icon {
  color: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  z-index: 1;
}

.app-card-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 1rem;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.app-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.app-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.app-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex-grow: 1;
}

.tech-stack {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tech-pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  background: rgba(242, 239, 232, 0.05);
  border-radius: 100px;
  color: var(--text-muted);
}

.app-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.app-link:hover { gap: 0.75rem; }

/* =========================================================================
   PAGE: APP LANDING (template-app-landing.php)
   ========================================================================= */
.app-hero {
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.app-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

.app-hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: var(--content-narrow);
}

.store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.store-btn svg { width: 24px; height: 24px; }
.store-btn-text small { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 2px; }
.store-btn-text strong { display: block; font-size: 1.1rem; font-weight: 500; line-height: 1; }

.app-screenshot { position: relative; z-index: 1; }

.device-wrapper { position: relative; max-width: 340px; margin: 0 auto; z-index: 1; }

.device-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

.device-content {
  position: absolute;
  top: 2.5%;
  bottom: 2.5%;
  left: 4%;
  right: 4%;
  background: radial-gradient(circle at top, #2a2a2a, #0a0a0a);
  border-radius: 2.2rem;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.device-content-placeholder { text-align: center; padding: 2rem; }

.app-features {
  padding: 6rem 0;
  background: var(--bg-color-alt);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.feature-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 1.5rem;
  transition: all var(--transition-fast);
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--accent);
  border-radius: 12px;
  flex-shrink: 0;
}

.app-meta {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* =========================================================================
   PAGE: PRIVACY (template-privacy.php)
   ========================================================================= */
.privacy-content {
  padding: 10rem 0 6rem;
}

.privacy-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.privacy-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.privacy-content p,
.privacy-content ul {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.privacy-content ul {
  list-style-type: disc;
  padding-left: 2rem;
}

.privacy-content li { margin-bottom: 0.5rem; }

.last-updated {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: inline-block;
}

/* =========================================================================
   WORDPRESS CONTENT BASICS
   ========================================================================= */
.alignwide { max-width: var(--container-max); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.wp-block-image img { border-radius: 0.75rem; }
.wp-block-quote { border-left: 4px solid var(--accent); padding-left: 1.5rem; font-style: italic; color: var(--text-muted); }

/* =========================================================================
   MEDIA QUERIES
   ========================================================================= */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background-color: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right var(--transition-normal);
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
  }

  .mobile-menu-btn { display: block; }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-block:nth-child(even) .service-grid { direction: ltr; }

  .service-visual {
    aspect-ratio: auto;
    min-height: 200px;
    padding: 2rem 0;
  }

  .terminal, .editor { width: 92%; max-width: none; }
  .prompt-line { font-size: 0.6875rem; margin-bottom: 10px; }
  .code-line { font-size: 0.625rem; line-height: 1.8; }
  .editor-body { padding: 12px 0 16px; }
  .neural-svg, .ai-flow-svg { width: 60%; max-width: 220px; }
  .workflow-svg { width: 70%; max-width: 260px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info { padding-right: 0; }
  .contact-form { padding: 2rem; }

  .app-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-hero-desc { margin: 0 auto 2.5rem; }
  .store-buttons { justify-content: center; }
}
