/* HardSend — CSS */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --error: #dc2626;
  --error-bg: #fef2f2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --radius: 10px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 680px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  font-size: 20px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
}

nav a:hover {
  color: var(--text);
}

.btn-nav {
  background: var(--primary) !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
}
.nav-pro-link {
  background: #2563eb;
  color: white !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none;
  margin-right: 4px;
  transition: background 0.2s;
}
.nav-pro-link:hover { background: #1d4ed8 !important; }


.back-link {
  font-size: 14px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 12px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-subtle);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--border);
  border-color: var(--border-hover);
}

/* Hero */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}

.hero-badge {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-accent {
  color: var(--primary);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero-sub a {
  color: var(--primary);
  text-decoration: none;
}

.hero-sub a:hover {
  text-decoration: underline;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-proof span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero small (for examples page) */
.hero-small {
  padding: 48px 0 40px;
}

.hero-small h1 {
  font-size: clamp(28px, 4vw, 44px);
}

/* Story section */
.story-section {
  padding: 64px 0;
  background: white;
}

.story-card {
  display: flex;
  gap: 24px;
  background: #fafafa;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.story-icon {
  font-size: 36px;
  flex-shrink: 0;
  margin-top: 4px;
}

.story-content {
  flex: 1;
}

.story-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.story-deleted {
  text-decoration: line-through;
  color: var(--text-muted);
}

.story-email-sent {
  background: white;
  border: 1.5px solid #e0f2fe;
  border-left: 4px solid #0ea5e9;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 16px 0;
}

.story-kicker {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.story-cta-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0 !important;
}

/* Problem section */
.problem {
  padding: 64px 0;
  background: var(--bg-subtle);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.problem-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.problem-source {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.problem-cta {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.problem-cta strong {
  color: var(--text);
}

/* Situations */
.situations {
  padding: 72px 0;
}

.situations h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 40px;
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.situation-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.situation-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), var(--shadow-md);
  transform: translateY(-2px);
}

.sit-emoji {
  font-size: 28px;
  margin-bottom: 12px;
}

.sit-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  flex-grow: 1;
}

.sit-arrow {
  margin-top: 16px;
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
}

.situation-card:hover .sit-arrow {
  opacity: 1;
}

/* How it works */
.how-it-works {
  padding: 72px 0;
  background: var(--bg-subtle);
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA section */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-sub {
  margin-top: 16px !important;
  font-size: 14px !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

/* Examples section on homepage */
.examples-section {
  padding: 72px 0;
  background: var(--bg-subtle);
}

.examples-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.example-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.example-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.example-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.example-email {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.example-cta {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s;
}

.example-cta:hover {
  color: var(--primary-dark);
}

.examples-link-row {
  text-align: center;
}

/* For who section */
.for-who {
  padding: 72px 0;
}

.for-who h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.for-who-item {
  text-align: center;
  padding: 24px;
}

.for-who-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.for-who-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.for-who-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* FAQ section */
.faq-section {
  padding: 72px 0;
  background: var(--bg-subtle);
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.4;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.faq-item a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Form page */
.form-page {
  min-height: calc(100vh - 64px);
  padding: 48px 0 80px;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.sit-emoji-large {
  font-size: 48px;
  margin-bottom: 12px;
}

.form-header h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
}

/* Quick nav */
.quick-nav {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-nav-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding-top: 2px;
}

.quick-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-nav-link {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
}

.quick-nav-link:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* Form */
.email-generator {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.generate-form {
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.optional-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-subtle);
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: all 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 72px;
}

.btn-generate {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
  margin-top: 8px;
  border-radius: 10px;
}

/* Result section */
.result-section {
  border-top: 1px solid var(--border);
  padding: 32px;
  background: var(--bg-subtle);
}

.result-header {
  margin-bottom: 20px;
}

.result-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 4px;
}

.result-sub {
  font-size: 14px;
  color: var(--text-secondary);
}

.email-output-wrapper {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.email-output {
  padding: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  min-height: 200px;
  outline: none;
  white-space: pre-wrap;
}

.email-output:focus {
  background: #fafeff;
}

.watermark {
  padding: 8px 24px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-copy:hover {
  background: #15803d;
  transform: translateY(-1px);
}

.btn-copy.copied {
  background: #15803d;
}

.copy-success {
  margin-top: 12px;
  font-size: 14px;
  color: var(--success);
  font-weight: 600;
}

.result-tip {
  margin-top: 20px;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.result-tip strong {
  color: var(--text);
}

/* Save email prompt */
.save-email-prompt {
  margin-top: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.save-prompt-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.save-prompt-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.save-prompt-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.save-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.save-form input {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  min-width: 200px;
  transition: border-color 0.15s;
}

.save-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-save:hover {
  background: var(--primary-dark);
}

.save-success {
  font-size: 14px;
  color: var(--success);
  font-weight: 600;
  display: none;
}

.save-success.visible {
  display: block;
}

/* Error section */
.error-section {
  border-top: 1px solid var(--border);
  padding: 32px;
  background: var(--error-bg);
}

.error-message {
  color: var(--error);
  font-size: 15px;
  margin-bottom: 16px;
}

/* Examples full page */
.examples-full {
  padding: 48px 0 72px;
}

.example-full-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.example-full-card:last-child {
  margin-bottom: 0;
}

.example-full-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.example-emoji {
  font-size: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.example-full-header h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.example-full-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

.example-full-email {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}

.email-line {
  margin-bottom: 16px;
}

.email-subject {
  font-size: 14px;
  color: var(--text-secondary);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.email-body p {
  margin-bottom: 12px;
}

.email-body p:last-child {
  margin-bottom: 0;
}

.example-full-tips {
  background: var(--primary-light);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.example-full-tips h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.example-full-tips ul {
  list-style: none;
  padding: 0;
}

.example-full-tips li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.example-full-tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-content {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 6px;
}

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

/* Responsive */
@media (max-width: 640px) {
  .hero {
    padding: 48px 0 40px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-proof {
    gap: 12px;
  }

  .hero-proof span {
    font-size: 13px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .situations h2,
  .how-it-works h2,
  .cta-section h2,
  .examples-section h2,
  .for-who h2,
  .faq-section h2 {
    font-size: 28px;
  }

  .generate-form,
  .result-section {
    padding: 24px;
  }

  .result-actions {
    flex-direction: column;
  }

  .btn-copy,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  nav a:not(.btn-nav) {
    display: none;
  }

  .example-full-card {
    padding: 24px;
  }

  .example-full-header {
    flex-direction: column;
    gap: 8px;
  }

  .save-prompt-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .save-form {
    width: 100%;
  }

  .save-form input {
    min-width: auto;
    flex: 1;
  }

  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 16px;
  }

  .story-card {
    flex-direction: column;
    padding: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
