@import url('https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/static/pretendard.css');

:root {
  --bg: #f4f7fb;
  --bg-soft: #edf3fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-muted: #f8fafc;
  --line: #e5edf6;
  --line-strong: #d4dfeb;
  --text: #191f28;
  --text-soft: #4e5968;
  --text-muted: #8b95a1;
  --brand: #3182f6;
  --brand-strong: #1b64da;
  --brand-soft: #eaf3ff;
  --success: #12b76a;
  --warning: #f79009;
  --danger: #ef4444;
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.10);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.06);
  --radius-2xl: 28px;
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --sidebar-width: 284px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: 'Pretendard Variable', 'Pretendard', 'Segoe UI', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

body.public-body {
  background:
    radial-gradient(circle at top left, rgba(49, 130, 246, 0.18), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(115, 163, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 42%, #eef3f8 100%);
}

body.public-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(132, 150, 176, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 150, 176, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 70%);
  pointer-events: none;
}

.public-shell {
  position: relative;
  overflow: clip;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(229, 237, 246, 0.9);
}

.nav-inner,
.section-inner,
.footer-inner,
.auth-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3182f6, #7bb0ff);
  color: white;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(49, 130, 246, 0.28);
}

.brand-badge.brand-badge-image,
.sidebar-brand-badge.sidebar-brand-badge-image {
  padding: 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text strong {
  display: block;
  font-size: 17px;
  line-height: 1.15;
}

.brand-text span {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghost-link {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.ghost-link:hover {
  color: var(--text);
}

.button-primary,
.button-secondary,
.button-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  font-size: 15px;
  font-weight: 700;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 16px 32px rgba(49, 130, 246, 0.28);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(49, 130, 246, 0.34);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-quiet:hover {
  transform: translateY(-1px);
}

.button-quiet {
  min-height: 40px;
  padding: 0 16px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(229, 237, 246, 0.8);
}

.hero-section,
.section-block,
.footer-block {
  position: relative;
  padding: 28px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 460px);
  gap: 36px;
  align-items: center;
  padding: 54px 0 74px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(229, 237, 246, 0.92);
  box-shadow: var(--shadow-sm);
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(18, 183, 106, 0.12);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  color: var(--brand-strong);
}

.hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-metrics span,
.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(229, 237, 246, 0.95);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.hero-panel {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.92));
  border: 1px solid rgba(229, 237, 246, 0.9);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto -70px -110px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(49, 130, 246, 0.16), transparent 70%);
}

.panel-stack {
  display: grid;
  gap: 14px;
}

.panel-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-card,
.public-card,
.surface-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(229, 237, 246, 0.94);
  box-shadow: var(--shadow-sm);
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.metric-card span,
.surface-note,
.public-card p,
.section-lead,
.section-note,
.auth-note,
.footer-meta {
  color: var(--text-muted);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.section-block {
  padding: 28px 0 16px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.product-grid,
.feature-grid,
.flow-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.product-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.public-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.public-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.public-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 28px;
}

.public-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.public-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.public-card li {
  display: flex;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.public-card li::before {
  content: '•';
  color: var(--brand);
  font-weight: 700;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 15px;
  color: var(--text-muted);
}

.price-line strong {
  font-size: 34px;
  color: var(--text);
  letter-spacing: -0.04em;
}

.flow-card {
  position: relative;
  padding: 28px 18px 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(229, 237, 246, 0.92);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.flow-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand), #78aaff);
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(229, 237, 246, 0.92);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.cta-band {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #eef5ff);
  border: 1px solid rgba(205, 223, 245, 0.9);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.footer-block {
  padding: 26px 0 42px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(229, 237, 246, 0.92);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.auth-page {
  min-height: 100vh;
  padding: 32px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(49, 130, 246, 0.18), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(115, 163, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 55%, #eef3f8 100%);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 64px);
}

.auth-showcase {
  padding: 44px 28px 44px 12px;
}

.auth-card {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 237, 246, 0.94);
  box-shadow: var(--shadow-lg);
}

.auth-card h1,
.auth-card h2,
.auth-showcase h1 {
  margin: 0;
  letter-spacing: -0.03em;
}

.auth-showcase h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.auth-showcase p {
  margin: 18px 0 0;
  max-width: 520px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.showcase-panel {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.showcase-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(229, 237, 246, 0.9);
  box-shadow: var(--shadow-sm);
}

.showcase-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.form-stack {
  display: grid;
  gap: 16px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--surface-muted);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(49, 130, 246, 0.55);
  box-shadow: 0 0 0 5px rgba(49, 130, 246, 0.12);
  background: #ffffff;
}

.message-box {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.message-box.is-visible {
  display: block;
}

.message-box.error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
}

.message-box.success {
  color: #027a48;
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.auth-footer {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--text-muted);
  font-size: 14px;
}

body.app-body {
  background:
    radial-gradient(circle at top left, rgba(49, 130, 246, 0.10), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #f4f7fb 45%, #eef3f8 100%);
}

.app-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 35;
}

.app-topbar {
  display: none;
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  padding: 20px 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(229, 237, 246, 0.92);
  box-shadow: 16px 0 40px rgba(15, 23, 42, 0.05);
  z-index: 40;
}

#sidebar .sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(229, 237, 246, 0.9);
}

#sidebar .sidebar-brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3182f6, #75a6ff);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(49, 130, 246, 0.24);
}

#sidebar .sidebar-meta strong {
  display: block;
  font-size: 17px;
}

#sidebar .sidebar-meta span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

#sidebar nav a {
  border-radius: 16px;
  font-weight: 700;
}

#sidebar nav a:hover {
  transform: translateX(2px);
}

.app-main {
  width: calc(100% - var(--sidebar-width));
  margin-left: var(--sidebar-width);
  padding: 34px 28px 42px;
}

.page-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.88));
  border: 1px solid rgba(229, 237, 246, 0.94);
  box-shadow: var(--shadow-sm);
}

.page-hero h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero .page-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 700;
}

.app-main .bg-white.rounded-xl,
.app-main .bg-white.rounded-2xl,
.app-main .bg-white.rounded-lg,
.app-main .bg-white.rounded-3xl {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(229, 237, 246, 0.95);
  box-shadow: var(--shadow-sm);
}

.app-main .bg-gradient-to-r.from-blue-600,
.app-main .bg-gradient-to-r.from-blue-600.to-indigo-600 {
  background: linear-gradient(135deg, #1f6feb, #4b8cff) !important;
  box-shadow: 0 18px 34px rgba(49, 130, 246, 0.22);
}

.app-main .overflow-hidden {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.app-main table {
  min-width: 720px;
}

.toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 240px;
  max-width: min(92vw, 360px);
  padding: 14px 16px;
  border-radius: 18px;
  color: white;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 700;
  animation: toast-in 0.22s ease;
}

.toast.info {
  background: linear-gradient(135deg, #3182f6, #1b64da);
}

.toast.success {
  background: linear-gradient(135deg, #12b76a, #079455);
}

.toast.error {
  background: linear-gradient(135deg, #f04438, #d92d20);
}

.toast.warn {
  background: linear-gradient(135deg, #f79009, #dc6803);
}

.fade-up {
  animation: fade-up 0.55s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .product-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 14px;
  }

  .hero-panel,
  .cta-band,
  .auth-card {
    padding: 28px;
  }

  .auth-showcase {
    padding: 18px 0 0;
  }

  .app-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 72px;
    padding: 14px 16px;
    background: rgba(248, 251, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 237, 246, 0.92);
  }

  .app-topbar .topbar-group {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .app-topbar button {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 14px;
  }

  .app-topbar strong {
    display: block;
    font-size: 15px;
  }

  .app-topbar span {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 12px;
  }

  #sidebar {
    transform: translateX(-100%);
    transition: transform 0.24s ease;
    width: min(82vw, 320px);
    box-shadow: 30px 0 48px rgba(15, 23, 42, 0.18);
  }

  body.drawer-open #sidebar {
    transform: translateX(0);
  }

  body.drawer-open .app-overlay {
    opacity: 1;
    visibility: visible;
  }

  .app-main {
    width: 100%;
    margin-left: 0;
    padding: 90px 16px 28px;
  }

  .page-hero {
    margin-bottom: 18px;
    padding: 20px 18px;
  }

  .page-hero .page-pill {
    display: none;
  }

  .app-main .w-fit {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-inner,
  .section-inner,
  .footer-inner,
  .auth-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy h1,
  .auth-showcase h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero-copy p,
  .section-head p,
  .auth-showcase p {
    font-size: 16px;
  }

  .panel-row,
  .metric-strip,
  .product-grid,
  .pricing-grid,
  .feature-grid,
  .flow-grid,
  .showcase-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .cta-band,
  .auth-card {
    border-radius: 28px;
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    gap: 8px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

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