:root {
  --bg: #f3f6f5;
  --surface: #ffffff;
  --surface-soft: #f8fbfa;
  --ink: #0d1715;
  --muted: #6a7470;
  --faint: #8e9994;
  --line: #dfe7e3;
  --teal: #0c9b83;
  --teal-dark: #087261;
  --green: #1f9d61;
  --blue: #2f68c8;
  --orange: #f26422;
  --amber: #d99b1d;
  --red: #df3f3f;
  --shadow: 0 1px 2px rgba(12, 28, 23, 0.06), 0 18px 42px rgba(12, 28, 23, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(12, 155, 131, 0.08), transparent 28%),
    var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.landing {
  display: grid;
  gap: 18px;
  width: min(100%, 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px;
}

.hero-panel,
.setup-card,
.card,
.summary-card,
.status-strip,
.profile-card,
.insight-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(12, 155, 131, 0.95), rgba(8, 47, 41, 0.96)),
    var(--teal-dark);
  color: white;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand strong {
  color: var(--orange);
}

.brand span {
  color: var(--teal);
  font-weight: 800;
}

.brand.large {
  margin-bottom: 46px;
  color: white;
  font-size: 26px;
}

.brand.large span,
.brand.large strong {
  color: inherit;
}

.hero-panel h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 7vw, 68px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-panel p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.hero-stats span {
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
}

.hero-stats strong {
  display: block;
  color: white;
  font-size: 16px;
}

.setup-card {
  padding: 22px;
}

.setup-card h2,
.section-head h2,
.profile-card h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
}

.small-note,
.body-copy,
.empty-state {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.auth-message {
  margin: 12px 0;
  padding: 10px 12px;
  border: 1px solid #f1dfbb;
  border-radius: 8px;
  color: #73510c;
  background: #fff8e8;
  font-size: 13px;
  font-weight: 760;
}

.link-button,
.auth-switch button {
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-weight: 850;
}

.link-button {
  min-height: 36px;
  margin-top: 8px;
  padding: 0;
  text-align: left;
}

.auth-switch {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.auth-switch button {
  padding: 0 0 0 3px;
}

.app-frame {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.desktop-nav {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100vh;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 780;
  text-align: left;
}

.nav-button.active,
.nav-button:hover {
  color: var(--ink);
  background: #edf3f1;
}

.nav-button.active {
  box-shadow: inset 3px 0 0 var(--orange);
}

.sync-card {
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.sync-card svg {
  color: var(--teal);
}

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

.sync-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.phone-stage {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 18px 96px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.app-header h1 {
  margin: 3px 0 0;
  font-size: 28px;
  font-weight: 880;
  letter-spacing: 0;
}

.mini-label {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.profile-chip,
.text-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 820;
}

.profile-chip {
  width: 42px;
}

.summary-card {
  padding: 18px;
  color: white;
  background:
    linear-gradient(145deg, #113d36, #0c7463 58%, #0a9a82),
    var(--teal-dark);
}

.summary-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.summary-top .mini-label {
  color: rgba(255, 255, 255, 0.72);
}

.summary-top strong {
  display: block;
  margin-top: 8px;
  font-size: 38px;
  font-weight: 880;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.summary-grid div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.summary-grid span,
.safe-spend span,
.profile-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.summary-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 840;
}

.good {
  color: var(--teal-dark);
}

.summary-card .good {
  color: white;
}

.bad {
  color: var(--red);
}

.status-strip,
.card,
.profile-card,
.insight-stack {
  margin-top: 14px;
}

.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.status-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.status-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  font-weight: 880;
}

.status-strip p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.status-strip.stable strong,
.status-strip.strong strong {
  color: var(--teal-dark);
}

.status-strip.watch strong {
  color: var(--amber);
}

.status-strip.risk strong {
  color: var(--red);
}

.ring {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle, white 0 56%, transparent 57%),
    conic-gradient(var(--teal) 0 var(--value), #edf2f0 var(--value) 360deg);
}

.ring b {
  font-size: 18px;
}

.card,
.profile-card {
  padding: 16px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.section-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9efec;
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

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

.safe-spend div,
.profile-grid div {
  min-height: 64px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.safe-spend strong,
.profile-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 850;
}

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

.money-in-grid div {
  min-height: 64px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.money-in-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.money-in-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 850;
}

.cash-breakdown-list {
  display: grid;
  gap: 8px;
}

.cash-breakdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--surface-soft);
}

.cash-breakdown-row span {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cash-breakdown-row strong {
  font-size: 14px;
  font-weight: 900;
}

.bucket-list {
  display: grid;
  gap: 12px;
}

.bucket-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 78px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.bucket-row span {
  font-weight: 820;
}

.bucket-row div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9efec;
}

.bucket-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.bucket-row i.lifestyle {
  background: var(--orange);
}

.bucket-row i.growth {
  background: var(--green);
}

.bucket-row i.leakage,
.bucket-row i.emergency {
  background: var(--red);
}

.bucket-row i.survival {
  background: var(--blue);
}

.bucket-row strong {
  text-align: right;
}

.transaction-list,
.commitment-list,
.account-list,
.insight-stack {
  display: grid;
  gap: 10px;
}

.transaction-list .transaction-row,
.commitment-list .commitment-row,
.account-list > .account-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: inherit;
  font: inherit;
  text-align: left;
}

.transaction-list .transaction-row.selected {
  border-color: #94d8c8;
  background: #edf9f6;
}

.transaction-list i,
.commitment-list i,
.account-list > .account-row > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #e4f6f2;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 900;
}

.commitment-list i {
  width: 44px;
  padding: 0 4px;
  font-size: 11px;
}

.transaction-list i.expense {
  color: var(--red);
  background: #ffeded;
}

.transaction-list i.transfer {
  color: #076b85;
  background: #e6f7fb;
}

.transaction-list span,
.commitment-list span,
.account-list > .account-row > span {
  min-width: 0;
}

.transaction-list strong,
.commitment-list strong,
.account-list > .account-row > span strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.transaction-list small,
.commitment-list small,
.account-list > .account-row > span small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transaction-list b,
.commitment-list b,
.account-list > .account-row > b {
  font-size: 13px;
  font-weight: 880;
}

.commitment-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.commitment-summary div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.commitment-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.commitment-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.commitment-list .commitment-row {
  grid-template-columns: 52px minmax(0, 1fr) auto;
}

.commitment-list .commitment-row > .secondary-button {
  grid-column: 1 / -1;
  min-height: 38px;
}

.account-list > .account-row {
  grid-template-columns: 40px minmax(0, 1fr) auto;
}

.row-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.row-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.row-actions button.danger {
  color: var(--red);
}

.account-edit-form {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.transaction-edit-form {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #c8e9df;
  border-radius: 8px;
  background: #f4fbf9;
}

.section-head.compact h3 {
  margin: 0;
  font-size: 15px;
}

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

.field-helper {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.auth-project-form {
  display: grid;
  gap: 10px;
  margin: 14px 0 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.transaction-filter-form {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

@media (min-width: 720px) {
  .transaction-filter-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .transaction-filter-form .button-row {
    grid-column: 1 / -1;
  }
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-weight: 720;
}

input:focus,
select:focus {
  outline: 3px solid rgba(12, 155, 131, 0.14);
  border-color: var(--teal);
}

.expense-fields {
  display: grid;
  gap: 12px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
}

.checkbox-row span {
  color: var(--ink);
  font-size: 13px;
}

.primary-button,
.ghost-button,
.text-button,
.signout-button,
.danger-button,
.secondary-button {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 8px;
}

.primary-button {
  border: 0;
  color: white;
  background: var(--teal-dark);
  font-weight: 850;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.secondary-button {
  border: 1px solid #c8e9df;
  color: var(--teal-dark);
  background: #edf9f6;
  font-weight: 850;
}

.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.danger-button {
  border: 1px solid #ffd2d2;
  color: var(--red);
  background: #fff4f4;
  font-weight: 850;
}

.ghost-button {
  width: 100%;
  margin-top: 12px;
  color: var(--red);
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.button-row .ghost-button {
  margin-top: 0;
  color: var(--teal-dark);
}

.full-button {
  width: 100%;
  margin-top: 12px;
}

.cloud-auth-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.step-helper {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid #dbe4df;
  border-radius: 8px;
  background: var(--surface-soft);
}

.step-helper.ready {
  border-color: #c8e9df;
  background: #edf9f6;
}

.step-helper strong {
  color: var(--ink);
  font-size: 13px;
}

.step-helper span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.step-helper b {
  color: var(--teal-dark);
}

.sync-status {
  display: grid;
  gap: 4px;
  margin: 14px 0;
  padding: 12px;
  border: 1px solid #f1dfbb;
  border-radius: 8px;
  background: #fff8e8;
}

.sync-status.ready {
  border-color: #c8e9df;
  background: #edf9f6;
}

.sync-status span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.sync-status strong {
  color: var(--ink);
  font-size: 15px;
}

.sync-status small {
  color: var(--muted);
  font-size: 12px;
}

.setup-warning,
.setup-indicator {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.setup-warning,
.setup-indicator.error {
  border: 1px solid #f1dfbb;
  color: #73510c;
  background: #fff8e8;
}

.setup-indicator.success {
  border: 1px solid #c8e9df;
  color: var(--teal-dark);
  background: #edf9f6;
}

.setup-indicator:not(.success):not(.error) {
  border: 1px solid #dbe4df;
  color: var(--muted);
  background: var(--surface-soft);
}

.setup-warning strong,
.setup-indicator strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.conflict-summary {
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid #dbe4df;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.conflict-summary strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.conflict-summary.warning {
  border-color: #f1dfbb;
  background: #fff8e8;
  color: #73510c;
}

.conflict-summary.safe {
  border-color: #c8e9df;
  background: #edf9f6;
  color: var(--teal-dark);
}

.text-button {
  min-height: 34px;
  color: var(--teal-dark);
}

.signout-button {
  width: 100%;
  margin-top: 12px;
  border: 1px solid #f0c8c8;
  color: var(--red);
  background: #fff6f6;
  font-weight: 850;
}

.profile-card {
  text-align: center;
}

.avatar-large {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  font-size: 30px;
  font-weight: 880;
}

.profile-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  text-align: left;
}

.insight-card {
  padding: 14px;
}

.insight-card svg {
  color: var(--orange);
}

.insight-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.insight-card strong {
  color: var(--ink);
}

.bottom-nav {
  position: fixed;
  right: max(14px, calc((100vw - 760px) / 2 + 14px));
  bottom: 14px;
  left: max(14px, calc((100vw - 760px) / 2 + 14px));
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 35px rgba(12, 28, 23, 0.14);
  backdrop-filter: blur(16px);
}

.bottom-nav button {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 820;
}

.bottom-nav button.active {
  color: var(--teal-dark);
  background: #e5f5f2;
}

@media (min-width: 900px) {
  .bottom-nav {
    display: none;
  }

  .landing {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
  }
}

@media (max-width: 899px) {
  .app-frame {
    display: block;
  }

  .desktop-nav {
    display: none;
  }
}

@media (max-width: 520px) {
  .landing {
    width: min(100%, 390px);
    margin: 0;
    padding: 14px;
    overflow: hidden;
  }

  .phone-stage {
    width: min(100%, 390px);
    margin: 0;
  }

  .bottom-nav {
    right: auto;
    left: 14px;
    width: min(362px, calc(100vw - 28px));
  }

  .hero-panel {
    min-height: auto;
    padding: 24px;
  }

  .hero-panel h1 {
    font-size: 34px;
  }

  .hero-panel p {
    font-size: 15px;
  }

  .phone-stage {
    padding: 14px 14px 94px;
  }

  .app-header h1 {
    font-size: 24px;
  }

  .summary-top strong {
    font-size: 34px;
  }

  .summary-grid,
  .safe-spend,
  .profile-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .bucket-row {
    grid-template-columns: 76px minmax(0, 1fr) 72px;
    font-size: 12px;
  }

  .status-strip {
    align-items: flex-start;
  }

  .ring {
    width: 74px;
    height: 74px;
  }
}
